gpt4 book ai didi

python Pandas : Selection of Columns by Column Names

转载 作者:太空狗 更新时间:2023-10-29 23:56:52 25 4
gpt4 key购买 nike

我可以选择 Pandas DataFrame 的列及其位置:

df = pd.DataFrame({"a": [1, 2, 3], "b": [4, 5, 6], "c": [7, 8, 9],
"d": [10, 11, 12], "e": [13, 14, 15]})
df.iloc[:, 1:4]

有了这个,我可以选择列 bd

有什么简单的方法可以使用列名来做到这一点?像这样的东西:

df.SOME_FUNCTION_OR_A_SPECIFIC_SYNTAX("b", "d")

最佳答案

仅将 loc 一起使用: 列范围:

df1 = df.loc[:, 'b':'d']
print (df1)

b c d
0 4 7 10
1 5 8 11
2 6 9 12

关于 python Pandas : Selection of Columns by Column Names,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50292760/

25 4 0