dplyr (version 0.3.0.2)

rbind_list: 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_list(...)

rbind_all(dots)

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.

Examples

Run this code
one <- mtcars[1:10, ]
two <- mtcars[11:32, ]

rbind_list(one, two)
rbind_all(list(one, two))

Run the code above in your browser using DataCamp Workspace