To read from the second line to the bottom of the file line by line (assuming that the first line is the heading and can be omitted), what was done, as such:
myFile <- "MockData.csv" myData <- read.csv(myFile, skip=0, nrows=1)
And then:
myData <- read.csv(myFile, skip=1, nrows=1)
The following are:
myData <- read.csv(myFile, skip=2, nrows=1)
And so on...
source share