wide_to_long transform data.frame from wide to long format

wide_to_long(df, column_with_data = names(df), column_fixed, geometry)

Arguments

df

data.frame with three column.

column_with_data

Character column with data

column_fixed

Character, column that will remain fixed

geometry

To return a sf

Value

long data.frame.

See also

Examples

if (FALSE) {
data(net)
net <- sf::st_set_geometry(net, NULL)
df <- wide_to_long(df = net)
head(df)
}