I'm trying to read 6+ GB csv file to do some aggregation. I'm using the following methods:
read.table('csv_file',sep=",", head=T, stringsAsFactors=F)
read.csv("csv_file",as.is=T,header=F,quote="")
However, regardless of the method I'm getting some errors like below:
Warning message:
In scan(file, what, nmax, sep, dec, quote, skip, nlines, na.strings, :
EOF within quoted string
Error in read.table(file = file, header = header, sep = sep, quote = quote, :
more columns than column names
I've seen many people have raised similar errors but none of the suggestions worked for me so far.
Appreciate if someone can shed some light into this. Thanks in advance.