to_long | R Documentation |
Reshape a data.frame or matrix to a long data.frame
Reshape a data.frame or matrix to a wide data.frame
to_long(
wide,
rowname = NULL,
colname = NULL,
responseName = deparse(substitute(wide)),
varNames = c("Row", "Col")
)
to_wide(long, row = 1, col = 2, response = 3)
wide |
A data.frame or matrix in wide form |
rowname |
Name for the row variable |
colname |
Name for the column variable |
responseName |
Name for the response variable. If |
varNames |
Default names for the row and column variables if not passed as |
long |
A data.frame in long form |
row |
Column index or quoted name of the row variable |
col |
Column index or quoted name of the column variable |
response |
Column index or quoted name of the response variable |
A data.frame in long format
Michael Friendly and Richard M. Heiberger
Michael Friendly and Richard M. Heiberger
Arizona.long <- to_long(Arizona, varNames=c("Month", "City"))
Arizona.long
Arizona.long <- to_long(Arizona, varNames=c("Month", "City"))
# back the other way
to_wide(Arizona.long)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.