Working with a large tab delimited file (110 columns 2 million rows). The file contains text, dates, and numbers. I want to load all of it into R to do analysis, but can't successfully load all of it.
I've used the below code and it successfully loads all of my columns, but only ~400 observations. Can't seem to figure out why only this small portion of the entire file is being loaded. I'm not receiving any errors. Any insight into why this would be happening or an alternative method to load this data would be appreciated.
> audfeed <- read.table("Audience_Feed_Validation.txt", header =
> TRUE,fileEncoding="UTF-16LE",fill=T,na.strings="NA", sep =
> '\t',stringsAsFactors=FALSE)