我需要删除所有从第 3 列开始的元素都是 NaN 的行
df = DataFrame(np.random.randn(6, 5), index=['a', 'c', 'e', 'f', 'g','h'], columns=['one', 'two', 'three', 'four', 'five'])
df2 = df.reindex(['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h'])
df2.ix[1][0] = 111
df2.ix[1][1] = 222
在上面的示例中,我的最终数据框不会包含行“b”和“c”。
df.dropna()
在这种情况下如何使用?