gpt4 book ai didi

python - Pandas pd.isnull() 函数

转载 作者:太空宇宙 更新时间:2023-11-03 12:56:52 25 4
gpt4 key购买 nike

我需要用 1 替换数据框中的非空值,用 0 替换空值。

这是我的数据框:

my_list= [['a','b','c'],['test1','test2',None],[None,'101','000']]

mydf= pd.DataFrame(my_list,columns=['col1','col2','col3'])

mydf

col1 col2 col3
0 a b c
1 test1 test2 None
2 None 101 000

mydf.where((pd.isnull(mydf)),0,inplace=True)

mydf

col1 col2 col3
0 0 0 0
1 0 0 None
2 None 0 0

我不确定为什么它用零替换非空值。 pd.notnull() 做相反的事情。谁能解释一下我在这里缺少什么?

最佳答案

只是做:

mydf = mydf.notnull() * 1
mydf

enter image description here

为了完整性

mydf.isnull() * 1

enter image description here

关于python - Pandas pd.isnull() 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38383037/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com