list2df {Orcs} | R Documentation |
Create data.frame
from list
Description
Create a data.frame
from a list
directly, i.e. without being required to
explicitly call rbind()
first.
Usage
list2df(x, bind = c("rows", "cols"), ...)
Arguments
x |
A |
bind |
Binding direction. Available options are |
... |
Additional arguments passed to |
Value
A data.frame
object.
Examples
lst <- list(letters[1:3], letters[4:6], letters[7:9])
do.call("rbind", lst) # results in matrix
list2df(lst) # results in data.frame created using rbind()
list2df(lst, bind = "cols") # same for cbind()
[Package Orcs version 1.2.3 Index]