【发布时间】:2020-02-29 17:31:05
【问题描述】:
使用 dask 数据框df = dask.dataframe.from_pandas(df, npartitions=5)
series = df.apply(func)
future = client.compute(series)
progress(future)
在 jupyter 笔记本中,我可以看到每个分区完成多少 apply() 调用的进度条(例如 2/5)。
dask 有没有办法报告每个分区内的进度?
类似于 tqdm progress_apply() 对于熊猫。
【问题讨论】:
标签: python pandas dask tqdm dask-dataframe