Python Pandas - 如何通过传递行标签从 DataFrame 中选择行
要通过传递标签来选择行,请使用 loc() 函数。提及要选择哪行的索引。在本例中,这就是索引标签。我们使用 x、y 和 z 作为索引标签,并可将其用于通过 loc() 来选择行。
创建一个 DataFrame −
dataFrame = pd.DataFrame([[10, 15], [20, 25], [30, 35]],index=['x', 'y', 'z'],columns=['a', 'b'])
现在,使用 loc 来选择行。我们已传入索引标签 “z” −
dataFrame.loc['z']
示例
以下为代码 −
import pandas as pd # Create DataFrame dataFrame = pd.DataFrame([[10, 15], [20, 25], [30, 35]],index=['x', 'y', 'z'],columns=['a', 'b']) # DataFrame print"DataFrame...\n",dataFrame # select rows with loc print"\nSelect rows by passing label..." print(dataFrame.loc['z'])
输出
这会产生以下输出 −
DataFrame... a b x 10 15 y 20 25 z 30 35 Select rows by passing label... a 30 b 35 Name: z, dtype: int64
广告