标签: python pandas
我想将3行转换为pandas数据框中的多级列标题。
示例数据框为
df = pd.DataFrame({'a':['foo_0', 'bar_0', 1, 2, 3], 'b':['foo_0', 'bar_0', 11, 12, 13], 'c':['foo_1', 'bar_1', 21, 22, 23], 'd':['foo_1', 'bar_1', 31, 32, 33]})
预期的输出看起来像,其中黄色是列多级列标题。
谢谢, -尼罗什