如何在Pandas数据框中按名称选择行列表?

问题描述 投票:7回答:2

我试图使用列表从Pandas数据帧中提取行,但无法完成。这是一个例子

# df
    alleles  chrom  pos strand  assembly#  center  protLSID  assayLSID  
rs#
TP3      A/C      0    3      +        NaN     NaN       NaN        NaN
TP7      A/T      0    7      +        NaN     NaN       NaN        NaN
TP12     T/A      0   12      +        NaN     NaN       NaN        NaN
TP15     C/A      0   15      +        NaN     NaN       NaN        NaN
TP18     C/T      0   18      +        NaN     NaN       NaN        NaN

test = ['TP3','TP12','TP18']

df.select(test)

这是我试图用列表的元素做的事情,我得到这个错误TypeError: 'Index' object is not callable。我究竟做错了什么?

python pandas select dataframe
2个回答
8
投票

你可以使用df.loc[['TP3','TP12','TP18']]

这是一个小例子:

In [26]: df = pd.DataFrame({"a": [1,2,3], "b": [3,4,5], "c": [5,6,7]})

In [27]: df.index = ["x", "y", "z"]

In [28]: df
Out[28]: 
   a  b  c
x  1  3  5
y  2  4  6
z  3  5  7

[3 rows x 3 columns]

In [29]: df.loc[["x", "y"]]
Out[29]: 
   a  b  c
x  1  3  5
y  2  4  6

[2 rows x 3 columns]

1
投票

您可以按位置选择行:

df.iloc[[0,2,4], :]
© www.soinside.com 2019 - 2024. All rights reserved.