gpt4 book ai didi

python - 将另一列设置为索引后,保留数据帧的先前索引作为一列

转载 作者:行者123 更新时间:2023-12-01 01:14:45 25 4
gpt4 key购买 nike

我有一个以下类型的数据框(test4),其中 Yrs 作为索引列-

                  Prs_90      Prs_80      Prs_70
Yrs
2012 499.934588 521.512345 425.189729
2013 579.063531 477.782099 256.382494
2014 458.415624 456.480642 363.309507
2015 422.547029 320.282754 578.728535

现在,我想将 Prs_90 设置为我正在使用的索引test4.set_index("Prs_90", inplace = True)

但它完全删除了我想保留的 Yrs 索引。

                       Prs_80      Prs_70
Prs_90
854.819691 514.883611 338.596315
780.394013 488.100756 417.143175
752.188841 326.476833 644.588971
703.369157 542.508996 361.643381

预期输出-

                   Prs_80      Prs_70   Yrs
Prs_90
854.819691 514.883611 338.596315 2012
780.394013 488.100756 417.143175 2013
752.188841 326.476833 644.588971 2014
703.369157 542.508996 361.643381 2015

怎么做?

最佳答案

您可以尝试以下方法:

test4.reset_index(drop=False).set_index("Prs_90")

关于python - 将另一列设置为索引后,保留数据帧的先前索引作为一列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54457003/

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