How to rbind a list of rda files

171 Views Asked by At

I have a list of .rda data files with names all start with say AAA, and need to rbind all of them into one dataset I tried the following codes but it does not work

files <- list.files(pattern="AAA")
df <- do.call(`rbind`,lapply(files, load))
0

There are 0 best solutions below