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))
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))
Copyright © 2021 Jogjafile Inc.