condensed_to_wide.Rd
Convert from condensed format to wide format based on the presence of a given value separator within a given set of columns.
condensed_to_wide(data, columns, name_sep = "_", value_sep = ";")
data | A dataframe containing rows of systematic review data in condensed format. |
---|---|
columns | A set of columns containing coded data from within a dataframe. |
name_sep | A character used to separate terms in the newly generated column names within the data. The default is set to '_' (i.e. snake_case). |
value_sep | A character used to separate values within the data. The default is set to ';'. |
A dataframe in 'wide' format.