Learn R Programming

replyr (version 0.3.01)

replyr_bind_rows: bind a list of items by rows (can't use dplyr::bind_rows or dplyr::combine on remote sources)

Description

bind a list of items by rows (can't use dplyr::bind_rows or dplyr::combine on remote sources)

Usage

replyr_bind_rows(lst, ...,
  tempNameGenerator = makeTempNameGenerator("replyr_bind_rows"))

Arguments

lst

list of items to combine, must be all in same dplyr data service

...

force other arguments to be used by name

tempNameGenerator

temp name generator produced by replyr::makeTempNameGenerator, used to record dplyr::compute() effects.

Value

single data item

Examples

Run this code

d <- data.frame(x=1:2)
replyr_bind_rows(list(d,d,d))

Run the code above in your browser using DataLab