list.rbind: Bind all list elements by row

View source: R/list.do.R

list.rbindR Documentation

Bind all list elements by row

Description

The function binds all list elements by row. Each element of the list is expected to be an atomic vector, data.frame, or data.table. If list elements are also lists, the result can be a list-valued matrix. In this case, list.stack may produce a better result.

Usage

list.rbind(.data)

Arguments

.data

list

See Also

list.cbind, list.stack

Examples

x <- lapply(1:3,function(i) { c(a=i,b=i^2)})
df <- lapply(1:3,function(i) { data.frame(a=i,b=i^2,c=letters[i])})
list.rbind(x)
list.rbind(df)

renkun-ken/rlist documentation built on March 16, 2023, 8:25 p.m.