标签: python pandas
我有以下Pandas DataFrame:
,并希望将列转换为如下形式:
如何创建列层次结构? 谢谢您的指导。
答案 0 :(得分:1)
您可以尝试:
df.columns = pd.MultiIndex.from_tuples(df.columns)