gpt4 book ai didi

python - Pandas DF NotImplementedError : Writing to Excel with MultiIndex columns and no index ('index' =False) is not yet implemented

转载 作者:行者123 更新时间:2023-12-04 14:28:12 29 4
gpt4 key购买 nike

我有以下几行代码可以读取和编写 excel:

df = pd.read_excel(file_path, sheet_name, header=[0, 1])
df.to_excel(output_path, index=False)

当它尝试编写 excel 时,出现以下错误:
NotImplementedError: Writing to Excel with MultiIndex columns and no index ('index'=False) is not yet implemented

我不知道为什么会发生这种情况,也无法在网上找到具体的答案。

请帮忙。

最佳答案

那是因为您的数据框中有多个索引。
您可以 reset_index() 或删除 level=1 索引。
如果你不想要索引,那么你可以插入一列作为索引
df.insert(0,df.index,inplace=False) #像这样

关于python - Pandas DF NotImplementedError : Writing to Excel with MultiIndex columns and no index ('index' =False) is not yet implemented,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57626096/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com