I have a folder with several rda files, and want to load all of them. I have tried with:
file_list<-list.files("~/my_data/", full.names = TRUE)
walk(file_list, load)
and I get nothing.
I've also tried with map and lapply, and I get a list with the names of the objects in each rda file. What I'm doing wrong?
We need to load the
rdafiles to the global environment (by default, insidewalk, therdafiles are read to the parent environment):