将多索引转换为Pandas
我想知道如何在熊猫数据框架中执行以下转换。我不知道如何解决这个问题。这个想法是将索引级别0设置为级别0列,其余列将其放入适当的主列
I would like to know how to perform the below transformation in a pandas dataframe. I have no idea how to tackle this. The idea is to take the index level 0 and set it as level 0 column with the rest of the columns place into the appropiated main column
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用
set_index
,unstack
和swaplevel
:输出:
Try this reshaping the dataframe using
set_index
,unstack
andswaplevel
:Output: