I\'m aggregating a bunch of CSV files in R, which I have done successfully using the following code (found here):
Tbl <- list.files(path = \"./Data/CSVs
Here's my solution. Let me know if this helps.
Tbl <- list.files(path = "./Data/CSVs/", pattern="*.csv", full.names = T) %>% map_df(function(x) read_csv(x, col_types = cols(.default = "c")) %>% mutate(filename=gsub(".csv","",basename(x))))