I would like to see progress in the Jupyternotebook, when I run a computational task using Dask, I count all the values of the "id" column from a large csv + 4 GB file, so any ideas?
import dask.dataframe as dd
df = dd.read_csv('data/train.csv')
df.id.count().compute()
source
share