您如何重新索引多级索引以将其转换为单级数据框,并将索引转换为列?

时间:2020-08-06 08:08:04

标签: python pandas reindex

我正在尝试为多级索引重新建立索引,以使索引显示为列。我有:

company               company 1  company 2 ...
tender_ref volume
014        3.333338        347    NaN
015        6.666665        NaN    145
016        3.333336        NaN    NaN
...

我正在寻找:

random index  tender_ref  volume      company 1    company 2 ...
01            014         3.333338    347          NaN
02            015         6.666665    NaN          145
03            016         3.333336    NaN          NaN
...

我尝试使用reindex(),但无法使其正常工作

0 个答案:

没有答案