gpt4 book ai didi

python - to_excel() 没有索引布局

转载 作者:行者123 更新时间:2023-12-04 15:38:31 31 4
gpt4 key购买 nike

我正在使用 to_excel 将多个 DataFrame 写入多个 Excel 文档。这工作正常,除了数据框的索引以粗体附加在每个单元格周围并带有边框(见图)。

enter image description here

以下代码是我使用的代码的简化,但有同样的问题:

import pandas as pd
from openpyxl import load_workbook

df = pd.DataFrame(np.random.randint(50,60, size=(20, 3)))

xls_loc = r'test_doc.xlsx'
wb = load_workbook(xls_loc)

writer = pd.ExcelWriter(xls_loc, engine='openpyxl')
writer.book = wb

df.to_excel(writer, sheet_name='test sheet',index=True,startrow=1,startcol=1, header=False)

writer.save()
writer.close()

有没有办法在不使索引加粗并添加边框的情况下附加索引?

最佳答案

将索引设为新列,然后设置 index=Falseto_excel()

df.insert(0, 'index', df.index)

关于python - to_excel() 没有索引布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58916464/

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