Data frame index transformation in Pandas

a 夏天 提交于 2020-06-29 03:38:07

问题


I want to trasnform the following data frame:

 ID 1234
     type   band    category
  0    A      B       C

to:

ID     type   band   category
1234     A      B      C

where ID is the index column


回答1:


Try

df.stack(0).reset_index().drop('level_0', axis=1)

Output:

     ID Type band category
0  1234    A    B        C


来源:https://stackoverflow.com/questions/62580244/data-frame-index-transformation-in-pandas

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!