gpt4 book ai didi

python - 删除行索引并将它们恢复为列

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

我有一个如下所示的 Pandas 数据框。
enter image description here
我想创建一个条形图;但是,我不能,因为 LotType不被视为列变量名称,而是行标题。我该如何制作 LotType就像其他列一样?我确信这是一个简单的解决方法,但我一直无法找到答案。

bigdf.plot.bar(x='LotType', y='Ratio2015', figsize=(20, 3), color='maroon')
作为引用,这是我在上面解释的错误:
KeyError                                  Traceback (most recent call last)
...
KeyError: 'LotType'

最佳答案

看看 reset_index 方法:
https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.reset_index.html
df.reset_index() 将创建一个只有数字的新索引列,您的 LotType 列将被保存为普通列。

关于python - 删除行索引并将它们恢复为列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64473929/

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