gpt4 book ai didi

python - 如何将行索引更改回 pandas 数据框中的列?

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

我有一个数据框,分组后,现在是这样的:

enter image description here

现在我想将行索引(名称)移动到第一列,该怎么做?我尝试这样做:

gr.reset_index(drop=True)

但是效果是这样的:

enter image description here

名称字段现在有计数信息,

最佳答案

不要指定 drop 参数,因为它意味着它会删除索引,并且最好重命名索引,因为您有一个 name已经列:

gr.index.name = "company"
gr = gr.reset_index()

关于python - 如何将行索引更改回 pandas 数据框中的列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41274270/

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