long_to_wide | R Documentation |
long_to_wide
transform data.frame from long to
wide format
long_to_wide(
df,
column_with_new_names = names(df)[1],
column_with_data = "emission",
column_fixed,
net
)
df |
data.frame with three column. |
column_with_new_names |
Character, column that has new column names |
column_with_data |
Character column with data |
column_fixed |
Character, column that will remain fixed |
net |
To return a sf |
wide data.frame.
emis_hot_td
emis_cold_td
wide_to_long
## Not run:
df <- data.frame(pollutant = rep(c("CO", "propadiene", "NO2"), 10),
emission = vein::Emissions(1:30),
region = rep(letters[1:2], 15))
df
long_to_wide(df)
long_to_wide(df, column_fixed = "region")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.