I have 16 million customer records with more than 100 columns. I am interested in loading the complete data in R and want to run my R code on it.
I have used the following to load the data in R:
read.table("D:/data.txt",header = TRUE, sep = "þ",
skipNul = TRUE,strip.white = TRUE,
fill=TRUE, check.names = TRUE,na.string="NA",quote="")
However my system hung.
Is there any efficient and effective way to read in big data?