list2df | R Documentation |
data.frame
from list
Create a data.frame
from a list
directly, i.e. without being required to
explicitly call rbind()
first.
list2df(x, bind = c("rows", "cols"), ...)
x |
A |
bind |
Binding direction. Available options are |
... |
Additional arguments passed to |
A data.frame
object.
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()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.