t_df | R Documentation |
This transposes a data.frame with t()
but transforms back into a data.frame
with column and row names cleaned up. Because the data types may be mixed
and reduced to characters, this may only be useful for a visual viewing of
the data.frame.
t_df(x, id = NULL)
x |
A data.frame |
id |
No longer used |
Transposes a data.frame as a data.frame
A transposed data.frame
with columns ("colname"
, "row_1"
, ...,
for each row in x
.
x <- data.frame(col_a = Sys.Date() + 1:5, col_b = letters[1:5], col_c = 1:5)
t_df(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.