Pandas 申请多个文件有限制吗?

发布于 2025-01-10 12:10:24 字数 683 浏览 0 评论 0原文

我的项目有 10.000 个 CSV 数据集。我需要预处理所有这些数据集,但 Pandas 一次只能处理五个数据集?这是我打开所有文件的代码。

path = "./for_processing"
files = [file for file in os.listdir(path) if not file.startswith('.')]

index_cleaned_news = 0
for file in files:
     NEWS_DATA = pd.read_csv(path+"/kompas/clean_news"+str(index_cleaned_news)+".csv")
     #Process here
     NEWS_DATA.to_csv(path+"/process_kompas/preprocess_news"+str(index_cleaned_news)+".csv")
     index_cleaned_news = index_cleaned_news+1

这是我尝试运行代码时的屏幕截图 它限制只有 5 次迭代

有人知道如何解决这个问题还是 Pandas 的规则?谢谢

I have 10.000 CSV datasets for my project. I need to preprocess all of those datasets but Pandas can only process five at one run? Here is my code for opening all files.

path = "./for_processing"
files = [file for file in os.listdir(path) if not file.startswith('.')]

index_cleaned_news = 0
for file in files:
     NEWS_DATA = pd.read_csv(path+"/kompas/clean_news"+str(index_cleaned_news)+".csv")
     #Process here
     NEWS_DATA.to_csv(path+"/process_kompas/preprocess_news"+str(index_cleaned_news)+".csv")
     index_cleaned_news = index_cleaned_news+1

Here is a screenshot when I try to run the code
It limits only 5 iterations

Anybody know how to fix this or is it a rule from Pandas? Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文