transpose_wide {ugatsdb} | R Documentation |
Transpose a Wide Dataset to a Row-Based Format
Description
This function is called by wide2excel
with option transpose = TRUE
to generate a row-based tabular data format from a wide data frame in R that is suitable for exporting to Excel.
Usage
transpose_wide(data, date.format = "%d/%m/%Y")
Arguments
data |
a wide format data frame where each column is a variable and the first variable uniquely identifies the data. |
date.format |
a format for date columns which is passed to |
Value
A transposed data frame or data.table
(the class of the input is preserved).
See Also
transpose
, long2wide
, wide2excel
, ugatsdb
Examples
transpose_wide(get_data("BOU_CPI"))