Note that the basic solution
do.call("rbind", my.df.list)
will be slow if we have many dataframes. A scalable solution is:
library(data.table)
rbindlist(my.df.list)
which, from the docs, is the same as do.call("rbind", l) on data.frames, but much faster.