gpt4 book ai didi

python - 按列索引而不是列名调用数据框中的列 - pandas

转载 作者:太空狗 更新时间:2023-10-30 01:06:34 24 4
gpt4 key购买 nike

如何使用数据框中的索引而不是名称来调用我的代码中的列。

例如,我有数据框df,列abc

除了调用 df['a'],我可以像 df[1] 一样使用它的列索引来调用它吗?

最佳答案

您可以使用 iloc :

df.iloc[:, 0]

例子:

>>> df
a b c
0 1 4 7
1 2 5 8
2 3 6 9

>>> df['a']
0 1
1 2
2 3
Name: a, dtype: int64

>>> df.iloc[:, 0]
0 1
1 2
2 3
Name: a, dtype: int64

关于python - 按列索引而不是列名调用数据框中的列 - pandas,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36316154/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com