英文:
remove a column as index in dataframe
问题
我已使用 .pivot 创建了一个数据框(df)。现在我的数据框与这个类似:
[![我有的数据框][1]][1]
我想要移除 'time_hour' 列并创建另一个数据框。我正在使用 reset_index,以下是结果。但是,我不想要一个名为 'time_hour' 的列。能帮我处理一下吗?谢谢!
[![这是我想要的不包含 'time_hour' 列的数据框][2]][2]
英文:
I have a df and I already used .pivot to creat the df. And now my df is same as this:
[![df that I have][1]][1]
I want to remove the 'time_hour' and create another df. I am using the reset_index and this is the results. However, I dont want a column with name time_hour. Could you please help me with that? Thanks
[![this is the df I want without the column time-hour][2]][2]
答案1
得分: 1
尝试 df.rename_axis
,
df = df.rename_axis(None, axis=1)
'time_hour' 是列标题轴名称。
英文:
Try df.rename_axis
,
df = df.rename_axis(None, axis=1)
'time_hour' is the column header axis name.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论