I have a large txt file (approx 2 mil rows). First column is a Date in format 01/01/2006. Values are separated with a ;
data <- read.table("largeFile.txt", sep=";")
dataToUse <- data[data$Date >= 01/02/2007 && data$Date <= 02/02/2007,]
example row:
16/12/2006;17:36:00;5.224;0.478;232.990;22.400;0.000;1.000;16.000
Above code also doesn't work, but is there a way to subset first and then load data into the data variable ? Since the file is large, and it takes some time to load it ?