list.rbind {rlist} | R 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 |
|
See Also
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)
[Package rlist version 0.4.6.2 Index]