I am writing a df to a Parquet file using Dask:
df.to_parquet(file, compression='snappy', write_metadata_file=False,\
engine='pyarrow', index=None)
I need to present the contents of the file in an online parquet viewer,
and the columns getting displayed are :
Column1 Column2 Column3 __null_dask_index__
How do I remove the __null_dask_index__
column?