gpt4 book ai didi

python Pandas : How do I get data one for each nth line with CSV files in?

转载 作者:行者123 更新时间:2023-12-01 23:38:29 25 4
gpt4 key购买 nike

数据文件太大,我想每隔一定时间接收一次,只是为了减少解释时间。我正在使用 pandas.read_csv。我怎样才能每n行只得到一行?

最佳答案

尝试按索引忽略行:

n = 5
skip_func = lambda x: x%n != 0
df = pd.read_csv("data.csv", skiprows = skip_func)

skiprows是可调用的,pandas.read_csv忽略那些索引返回 True 的行当它们在函数中被评估时。

关于 python Pandas : How do I get data one for each nth line with CSV files in?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65247807/

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