Pandas中的数据帧索引转换

2022-04-18 00:00:00 python-3.x pandas reshape reindex

问题描述

我想转换以下数据框:

 ID 1234
     type   band    category
  0    A      B       C

收件人:

ID     type   band   category
1234     A      B      C

其中ID是索引列


解决方案

尝试

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

输出:

     ID Type band category
0  1234    A    B        C

相关文章