I am trying to specify the colClasses options in the read.csv function in R. In my data, the first column \"time\" is basically a character vector
colClasses
read.csv
The colClasses vector must have length equal to the number of imported columns. Supposing the rest of your dataset columns are 5:
colClasses=c("character",rep("numeric",5))