I\'m attempting to merge multiple csv files using R. all of the CSV files have the same fields and are all a shared folder only containing these CSV files. I\'ve attempted
For a shorter, faster solution
library(dplyr) library(readr) df <- list.files(path="yourpath", full.names = TRUE) %>% lapply(read_csv) %>% bind_rows