My computer can't handle the importation of a particularly large text file (I get error - cannot allocate vector of size...).
I'm using the following code :
data<-read.table("file.txt",header = TRUE,sep = ";",
dec = ",", quote = "", strip.white = TRUE,)
As I only need to use the data corresponding to females within the file, is there any way to directly import just the females (data$sex==2).
...I'm using windows 8, the file has 88 variables (integers, factors and characters) of which I'm interested in abut 5 of them.