I trying to import close to 30 xlsx files each of them having size 60mb+ using below
setwd("filepath")
filelist = list.files(pattern = ".*.xlsx")
datalist = lapply(filelist, function(x) {read_excel(x, sheet = 1)})
for (i in 1:length(datalist)){datalist[[i]]<-cbind(datalist[[i]],filelist[i])}
Data = do.call("rbind", datalist)
It takes ages for me to load these files, is there any efficient way to load these files within few minutes? FYI my system RAM is 8GB, any help would be highly appreciated.