gpt4 book ai didi

Pandas read_excel : only read first few lines

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

在大约 100 个 excel 文件上使用 pandas read_excel - 有些文件很大 - 我想读取每个文件的前几行(标题和前几行数据)。

这不起作用,但说明了目标(例如读取 10 个数据行):

workbook_dataframe = pd.read_excel(workbook_filename, nrows = 10)

这是我目前的解决方法:
workbook_dataframe = pd.read_excel(workbook_filename).head(10)

解决方法的问题是它必须在取头之前读取整个 excel 文件。我也尝试过使用skiprows 和skip_footer 进行试验,给它提供只会产生错误的负数。

最佳答案

尽管查看代码似乎不太难,但目前不支持此功能。您可以在 Github 项目页面上打开问题 https://github.com/pandas-dev/pandas/issues .

关于 Pandas read_excel : only read first few lines,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44449108/

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