Performing .shape is giving me the following error.
AttributeError: \'DataFrame\' object has no attribute \'shape\'
How should
To get the shape we can try this way:
dask_dataframe.describe().compute()
"count" column of the index will give the number of rows
len(dask_dataframe.columns)
this will give the number of columns in the dataframe