I have daily data starting from 1980 in csv file. But I want to read data only from 1985. Because the other dataset in another file starts from 1985. How can I skip reading
A data.table method which will offer speed and memory performance:
data.table
library(data.table) fread(file, skip = 1825)