I'm getting pandas dataframe from dask using
p_df_data=d_df_data.compute()
But this is really slow... Is there an alternative method?
I'm getting pandas dataframe from dask using
p_df_data=d_df_data.compute()
But this is really slow... Is there an alternative method?
Dask dataframes are lazy, all operations are free until you call compute, at which point they all occur.