gpt4 book ai didi

kedro - 如何将数据框列表写入多张 ExcelLocalDataSet?

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

输入是一个数据框列表。如何将其保存到 ExcelLocalDataSet 中,其中每个数据框都是单独的工作表?

最佳答案

目前 ExcelLocalDataset 实现目前面向写一张纸,这为您提供了两种可能的操作:

  • ExcelLocalDataset 用途 XlsxWriter .您可以扩展或转换 ExcelLocalDataset 遍历数据帧列表并编写工作表,从下面的示例中获得灵感:
  • # Create some Pandas dataframes from some data.
    df1 = pd.DataFrame({'Data': [11, 12, 13, 14]})
    df2 = pd.DataFrame({'Data': [21, 22, 23, 24]})
    df3 = pd.DataFrame({'Data': [31, 32, 33, 34]})

    # Create a Pandas Excel writer using XlsxWriter as the engine.
    writer = pd.ExcelWriter('pandas_multiple.xlsx', engine='xlsxwriter')

    # Write each dataframe to a different worksheet.
    df1.to_excel(writer, sheet_name='Sheet1')
    df2.to_excel(writer, sheet_name='Sheet2')
    df3.to_excel(writer, sheet_name='Sheet3')

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

    来自 here
  • 如果您的用例使用相同的数据但只是拆分到不同的工作表中,那么您可能需要使用 native 支持的 ​​PartitionedDataSet 进行检查。结合 ExcelLocalDataSet . PartitionedDataSet 可以从给定位置递归加载所有或特定文件。
  • 关于kedro - 如何将数据框列表写入多张 ExcelLocalDataSet?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61314271/

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