df.iloc[i]
のith
行を返しますdf
。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]
ブール配列がありmask
、序数のインデックス値が必要な場合は、次のコマンドを使用して計算できます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
df.query('BoolCol')
。