The fread()
function in the data.table package for R offers impressive speed and ease of use when reading large CSV files or such. Unfortunately I haven't managed to find a similar function to write CSV files from R. I have of course tried write.csv()
, but I find it appallingly slow when writing really big data files.
So: does anyone know if there's anything similar to fread() for writing files?