I have a large CSV file and I want to have a fastest way to read it by keeping only few interesting columns.
I tried :
read.csv(file="Filename.csv", sep=",", colClasses=c("CLE", "Name","date 1","date 2"))
but it show error:
Error in methods::as(data[[i]], colClasses[i]) : no method or default for coercing “character” to “CLE”
what do you recommand?