df.iloc[i]
ส่งกลับแถวith
ไม่ได้อ้างถึงป้ายกำกับดัชนีเป็นดัชนีที่ใช้ 0df
i
i
ในทางกลับกันแอตทริบิวต์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')
แต่อีกทางหนึ่งคือการทำ