df。Iloc [i]返回df的第i行。I不是指索引标签,I是一个基于0的索引。
相反,属性index返回实际的索引标签,而不是数字行索引:
df.index[df['BoolCol'] == True].tolist()
或者说,
df.index[df['BoolCol']].tolist()
通过使用DataFrame,你可以清楚地看到其中的区别
不等于该行数值位置的非默认索引:
df = pd.DataFrame({'BoolCol': [True, False, False, True, True]},
index=[10,20,30,40,50])
In [53]: df
Out[53]:
BoolCol
10 True
20 False
30 False
40 True
50 True
[5 rows x 1 columns]
In [54]: df.index[df['BoolCol']].tolist()
Out[54]: [10, 40, 50]
如果你想使用索引,
In [56]: idx = df.index[df['BoolCol']]
In [57]: idx
Out[57]: Int64Index([10, 40, 50], dtype='int64')
然后你可以使用loc而不是iloc来选择行:
In [58]: df.loc[idx]
Out[58]:
BoolCol
10 True
40 True
50 True
[3 rows x 1 columns]
注意,loc也可以接受布尔数组:
In [55]: df.loc[df['BoolCol']]
Out[55]:
BoolCol
10 True
40 True
50 True
[3 rows x 1 columns]
如果你有一个布尔数组,掩码,并且需要序号索引值,你可以使用np.flatnonzero来计算它们:
In [110]: np.flatnonzero(df['BoolCol'])
Out[112]: array([0, 3, 4])
使用df。Iloc按序号索引选择行:
In [113]: df.iloc[np.flatnonzero(df['BoolCol'])]
Out[113]:
BoolCol
10 True
40 True
50 True