I am attempting to row bind many data frames together into a single massive data frame. The data frames are named sequentially with the first named df1, the se
df1
We can use bind_rows from dplyr
bind_rows
dplyr
library(dplyr) res <- bind_rows(mget(paste0("df", 1:100)))