0

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.

Ivan Lee
  • 3,420
  • 4
  • 30
  • 45
  • May be helpful. Check [this](https://stackoverflow.com/questions/18016037/pandas-parsererror-eof-character-when-reading-multiple-csv-files-to-hdf5). – shaik moeed Jul 04 '19 at 07:31
  • What happen when you try to read it with `pandas`? Isn't a `delimeter` problems? – rpanai Jul 04 '19 at 14:08
  • I didn't met problem. Finally, I read csv with pandas at first, then convert pandas to dask. – Ivan Lee Jul 04 '19 at 14:12

0 Answers0