I have a relatively large csv files (1.2gb... large to the 2gb RAM on one of my computers). To every entry in one column I would like to append "1C" so that I can join/merge with another dataframe/db table.
If the file weren't so large, it would be easy to use read.csv
to import to data
then use data$symbol <- paste(data$symbol, "1C", sep="")
. But now I get the can't allocate vector of size x
warning.
Is a manual solution, like scan()
, my only option? (I'm a bit afraid of corrupting my data) Thanks!