When using dask to read one csv file, showed error:
ParserError: Error tokenizing data. C error: EOF inside string starting at line 680
How to resolve this problem.
finally, I used from_pandas method.
dd.from_pandas(df, npartitions=3)
but, I should read csv file with pandas at first, which have to occupy memory.