在熊猫数据框中随机插入NA的值
发布于 2021-01-29 16:01:52
如何np.nan
在DataFrame中随机插入?假设我要在DataFrame中使用10%的空值。
我的数据如下所示:
df = pd.DataFrame(np.random.randn(5, 3),
index=['a', 'b', 'c', 'd', 'e'],
columns=['one', 'two', 'three'])
one two three
a 0.695132 1.044791 -1.059536
b -1.075105 0.825776 1.899795
c -0.678980 0.051959 -0.691405
d -0.182928 1.455268 -1.032353
e 0.205094 0.714192 -0.938242
有没有简单的方法可以插入空值?
关注者
0
被浏览
52
1 个回答