row_to_colnames {datawizard} | R Documentation |
Tools for working with column names
row_to_colnames(x, row = 1, na_prefix = "x", verbose = TRUE) colnames_to_row(x, prefix = "x")
x |
A data frame. |
row |
Row to use as column names. |
na_prefix |
Prefix to give to the column name if the row has an |
verbose |
Toggle warnings. |
prefix |
Prefix to give to the column name. Default is 'x', and it will
be incremented at each column ( |
row_to_colnames()
and colnames_to_row()
both return a data frame.
# Convert a row to column names -------------------------------- test <- data.frame( a = c("iso", 2, 5), b = c("year", 3, 6), c = c("value", 5, 7) ) test row_to_colnames(test) # Convert column names to row -------------------------------- test <- data.frame( ARG = c("BRA", "FRA"), `1960` = c(1960, 1960), `2000` = c(2000, 2000) ) test colnames_to_row(test)