I have code that at one place ends up with a list of data frames which I really want to convert to a single big data frame.
I got some pointers from an earlier ques
There is also bind_rows(x, ...) in dplyr.
bind_rows(x, ...)
dplyr
> system.time({ df.Base <- do.call("rbind", listOfDataFrames) }) user system elapsed 0.08 0.00 0.07 > > system.time({ df.dplyr <- as.data.frame(bind_rows(listOfDataFrames)) }) user system elapsed 0.01 0.00 0.02 > > identical(df.Base, df.dplyr) [1] TRUE