用适当的值替换数据框列中的值

时间:2019-04-02 08:10:14

标签: python pandas if-statement

我要将F1 [id1]中的Value Nan替换为0。其他F1[id1] = 1

代码: 它不起作用。我该如何解决 F1.id1 = [0 if pd.isna(e) else 1 for e in F1.id1] Here the output ofF1

1 个答案:

答案 0 :(得分:0)

使用fillna():

F1.fillna(0, inplace=True)