gpt4 book ai didi

python - 在 Pandas 中使用 TQDM 进度条

转载 作者:太空狗 更新时间:2023-10-29 17:22:10 28 4
gpt4 key购买 nike

在使用 Pandas 导入和索引大型数据集时是否可以使用 TQDM 进度条?

这是我导入、索引和使用 to_datetime 的一些 5 分钟数据的示例。这需要一段时间,如果能看到进度条就好了。

#Import csv files into a Pandas dataframes and convert to Pandas datetime and set to index

eurusd_ask = pd.read_csv('EURUSD_Candlestick_5_m_ASK_01.01.2012-05.08.2017.csv')
eurusd_ask.index = pd.to_datetime(eurusd_ask.pop('Gmt time'))

最佳答案

通过形状求长度

for index, row in tqdm(df.iterrows(), total=df.shape[0]):
print("index",index)
print("row",row)

关于python - 在 Pandas 中使用 TQDM 进度条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47087741/

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