如何在某些选定的列中选择至少具有值的行?

时间:2019-08-12 18:02:45

标签: python python-3.x pandas dataframe

我的数据框的格式为:


ID Address1 Address2 Address3
0  a        b        c
1  NaN      d        e
2  f        NaN      g
2  NaN      h        Nan

我如何选择所有(至少其中之一)具有“地址1”列或“地址3”中的值的行?

在此特定示例中,它将选择行0,1和2,而不是3,因为Address1和Address3均为Nan。

谢谢!

0 个答案:

没有答案