我发现isnull()
,np.isnan()
无法区分零NaN
。有什么好工具吗?
我需要在数据框中过滤NaN
值,但不要过零(实际上,我想在热图中屏蔽NaN
,其颜色与包括零的所有数值不同。
你有什么建议吗?
答案 0 :(得分:2)
我发现isnull(),np.isnan()不能从中区分零 为NaN
你能再来一次吗?因为上次检查它有效。
>>> import numpy as np
>>> np.isnan(0)
False
>>> np.isnan(np.nan)
True