使用numpy数组切片熊猫df

时间:2018-10-30 18:49:24

标签: python pandas numpy

这应该很容易,但是找不到正确的语法。假设我得到一个特定列的所有NA位置的numpy数组,如下所示:

index = np.where(df['Gene'].isnull())[0]

我现在想检查df中的那些行。我已经尝试过类似的事情:

df.iloc[[index]]
df[[index]]

无济于事。

0 个答案:

没有答案