Description Usage Arguments Details Value Author(s) Examples
Create a list representation of a data.frame
1 |
df |
data.frame to represent as a list |
We represent a data.frame as an hash of hashes. Factors are first coerced into characters.
The outer hash is keyed by the rownames of your data.frame The inner hash is keyed by the colnames of your data.frame
list
Brad Friedman
1 2 3 4 5 6 7 | df <- data.frame(A=1:3, B=3:1, C=factor(c("foo","bar","foo")), row.names = c("one", "two", "three"))
## Should give the following
## list(one=list(A=1, B=3, C="foo"),
## two=list(A=2, B=2, C="bar"),
## three=list(A=3, B=1, C="foo"))
data.frame.to.list(df)
data.frame.to.list(head(cars))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.