gpt4 book ai didi

python - 如何更改 Pandas 系列的索引值

转载 作者:行者123 更新时间:2023-12-04 13:16:49 25 4
gpt4 key购买 nike

(对不起,如果这个问题很愚蠢或不清楚,我是编程新手)

我想知道如何将 Pandas 系列的索引值从它们默认的常规整数值更改为我拥有的列表中的值。
例如

x = pd.Series([421, 122, 275, 847, 175])

index_values = ['2014-01-01', '2014-01-02', '2014-01-03', '2014-01-04',
'2014-01-05']

我如何获取 index_values 中的日期列表是我创建的系列中的索引 x

最佳答案

您可以通过 list 分配索引值:

x.index = index_values
print(x)
2014-01-01 421
2014-01-02 122
2014-01-03 275
2014-01-04 847
2014-01-05 175
dtype: int64

关于python - 如何更改 Pandas 系列的索引值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59589494/

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