标签: python pandas if-statement
我要将F1 [id1]中的Value Nan替换为0。其他F1[id1] = 1
F1[id1] = 1
代码: 它不起作用。我该如何解决 F1.id1 = [0 if pd.isna(e) else 1 for e in F1.id1] Here the output ofF1
F1.id1 = [0 if pd.isna(e) else 1 for e in F1.id1]
答案 0 :(得分:0)
使用fillna():
F1.fillna(0, inplace=True)