rbind multiple data sets [duplicate]

You can use do.call, like so:

do.call("rbind", list(DF1, DF2, DF3))

Note that second argument of do.call is a list.


The tidyverse approach is to use bind_rows() from the dplyr package:

bind_rows(DF1, DF2, DF3)