Hi,
I would like to read multiple files (RDS dataframes) from my shiny app and append them into one dataframe. Hard for me to reprex here since files are on my HD, but looking for an elegant solution, guidance. Is it possible to use an apply function or should i use loops?
I have the file paths in a vector:
filepaths <- c(f1, f2, f2...)
but not sure how to readRDS then rbind as one line of code to get a dataframe of all file data.
Thanks