gpt4 book ai didi

Python Reindex 生成 Nan

转载 作者:太空狗 更新时间:2023-10-29 17:32:20 26 4
gpt4 key购买 nike

这是我正在使用的代码:

将 pandas 导入为 pd

test3 = pd.Series([1,2,3], index = ['a','b','c'])
test3 = test3.reindex(index = ['f','g','z'])

所以最初一切都很好,test3 的索引为 'a' 'b' 'c',值为 1,2,3。但是当我重新索引 test3 时,我发现我的值 1 2 3 丢失了。这是为什么?所需的输出将是:

f 1
g 2
z 3

最佳答案

docs很清楚这种行为:

Conform Series to new index with optional filling logic, placing NA/NaN in locations having no value in the previous index

如果你只想覆盖索引值,那么做:

In [32]:
test3.index = ['f','g','z']

test3
Out[32]:
f 1
g 2
z 3
dtype: int64

关于Python Reindex 生成 Nan,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35108046/

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