I have to import an entire folder containing csv files and this takes up to 30min sometimes. At the moment I am using this code:
data <- do.call(rbind, lapply
(files, read.csv, as.is=T, sep = "{", skip = 4, header = TRUE, fileEncoding="utf-16", quote = "", fill = FALSE))
Do you know a faster option?