Writing Dask partitions into single file
问题 New to dask ,I have a 1GB CSV file when I read it in dask dataframe it creates around 50 partitions after my changes in the file when I write, it creates as many files as partitions. Is there a way to write all partitions to single CSV file and is there a way access partitions? Thank you. 回答1: Short answer No, Dask.dataframe.to_csv only writes CSV files to different files, one file per partition. However, there are ways around this. Concatenate Afterwards Perhaps just concatenate the files