gpt4 book ai didi

python - 是否可以将 Jupyter Notebook 的输出导出到 Excel?

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

我导入了一个 excel 文件,对数据框中的特定列执行了分组依据,现在我想将该输出(某种数据透视表)导出回另一个工作表中的 excel 工作簿,是否可以这样做?

最佳答案

import 意味着您可以写回 excel,当然您可以使用 ExcelWriter在 Pandas 。
你可以这样做:

import pandas as pd

# Read and manipulate you DataFrame
...Lines of Codes...
# Create a Pandas Excel writer using XlsxWriter as the engine.
writer = pd.ExcelWriter('your_file_name.xlsx', engine='xlsxwriter')

# Write dataframe to new sheet
df.to_excel(writer, sheet_name='AnotherSheet')

# Close the Pandas Excel writer and output the Excel file.
writer.save()

既然可以在python中完成,那么肯定可以在jupyter-notebook中完成

关于python - 是否可以将 Jupyter Notebook 的输出导出到 Excel?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69060694/

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