gpt4 book ai didi

Python Pandas 导出数据

转载 作者:行者123 更新时间:2023-12-02 10:36:14 25 4
gpt4 key购买 nike

我正在使用 python pandas 来处理一些数据。我已使用以下代码将数据导出到 Excel 文件。

writer = pd.ExcelWriter('Data.xlsx');
wrong_data.to_excel(writer,"Names which are wrong", index = False);
writer.save();

但是,当我打开Excel工作簿时,它一直显示Excel文件中有公式。问题是我总是覆盖工作簿,因此不清楚这个错误来自哪里。有谁知道如何解决这个问题吗?

<?xml version="1.0" encoding="UTF-8" standalone="true"?>

-<recoveryLog xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main">

<logFileName>error058920_06.xml</logFileName>

<summary>Errors were detected in file 'C:\Users\adrlee\Desktop\Python files\Data.xlsx'</summary>


-<removedRecords summary="Following is a list of removed records:">

<removedRecord>Removed Records: Formula from /xl/worksheets/sheet1.xml part</removedRecord>

</removedRecords>

</recoveryLog>

最佳答案

如果您只想在 MS Excel 中处理输出数据,则使用 CSV 文件会更容易。

Pandas.to_csv能够将数据帧导出到 CSV 文件。在 MS Excel 中打开 CSV 文件后,您可以执行任何您想要的操作。保存数据时,您可以选择将其保存到 xlsx 文件或保留在 CSV 文件中。

关于Python Pandas 导出数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43024700/

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