when i am trying to create a dask dataframe by reading a pickle file , iam getting an error
import dask.dataframe as dd
ds_df = dd.read_pickle("D:\test.pickle")
AttributeError: 'module' object has no attribute 'read_pickle'
but it works fine with read_csv
And in pandas it was successful as usual.
So please correct me if i am doing something wrong there or in dask we can't create dataframe by reading a pickle file at all.