I want to read all the Excel files one by one to temp.data variable. Is there a way to do it? I tried this
for (i in 1:15) { temp.data <- read_excel(file.path("../source",files$file_path[[i]])) } Or is there an alternative way for NOT using for loop here?
Thanks in advance :)