将索引转换为其他数据框

时间:2020-07-23 12:44:47

标签: python pandas dataframe

我有这张桌子。

                             child_2_1
parent    child_1 child_2_1           
crane_rec a       vd                 1
                  xx                 1
          v       ve                 1
                  vv                 1
weather   Current f                  1
          Wave    s                  1
                  x                  1

我想要这个:

                             
parent    child_1 child_2_1           
crane_rec a       vd                 
                  xx                 
          v       ve                 
                  vv                 
weather   Current f                  
          Wave    s                  
                  x      

我尝试保存索引,然后将其放入其他数据帧中失败...我尝试使用此df = df.T位,它不起作用。

谢谢

1 个答案:

答案 0 :(得分:1)

使用MultiIndex.to_frame

df1 = df.index.to_frame(index=False)