在Python中,我們可以使用索引操作來訪問DataFrame中的特定行和列。以下是一些常用的索引操作技巧:
df['column_name']
df.iloc[row_number]
df.loc['row_label']
df[start_row:end_row]
df.loc[:, 'column_name']
df.loc['row_label', 'column_name']
df[df['column_name'] > value]
df[df['column_name'].isin(['value1', 'value2'])]
這些是一些常用的DataFrame索引操作技巧,可以幫助我們高效地對數據進行訪問和處理。