gpt4 book ai didi

python - 从系列中选择一项并保留索引

转载 作者:行者123 更新时间:2023-11-28 16:58:29 25 4
gpt4 key购买 nike

如果我使用 .loc 或直接索引从 pd.Series 中选择单个项目,将返回单个值。

Pandas 自动“挤压”结果:

>>> s = pd.Series(['A', 'B', 'C'], index=[10, 20, 30])
>>> s[10]
'A'
>>> s.loc[10]
'A'

虽然这几乎总是我们想要的,但有时我想知道单个值在更大的系列中“来自哪里”。

如何防止这种默认压缩?换句话说,我想创建一个像这样的 1 元素系列:

10   A
dtype: object

最佳答案

使用双 [] 来选择一个元素列表:

print (s.loc[[10]])
10 A
dtype: object

关于python - 从系列中选择一项并保留索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56023896/

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