标签: python pandas numpy
这应该很容易,但是找不到正确的语法。假设我得到一个特定列的所有NA位置的numpy数组,如下所示:
index = np.where(df['Gene'].isnull())[0]
我现在想检查df中的那些行。我已经尝试过类似的事情:
df.iloc[[index]] df[[index]]
无济于事。