rbind_all: Efficiently rbind multiple data frames.
Description
This is an efficient version of the common pattern of
do.call(rbind, dfs) for row-binding many data frames
together. It works in the same way as
rbind.fill but is implemented in C++ so
avoids many copies and is much much faster.
Usage
rbind_all(dots)
rbind_list(...)
Arguments
dots,...
list of data frames to combine. With
rbind_all, they should already be in a list, with
rbind_list you supply them individually.