powered by
Rename one or more columns in the data.frame.
rename_dt(.data, ...)rename_with_dt(.data, .fn, ...)
rename_with_dt(.data, .fn, ...)
data.table
data.frame
statements of rename, e.g. `sl = Sepal.Length` means the column named as "Sepal.Length" would be renamed to "sl"
A function used to transform the selected columns. Should return a character vector the same length as the input.
rename
iris %>% rename_dt(sl = Sepal.Length,sw = Sepal.Width) %>% head() iris %>% rename_with_dt(toupper) iris %>% rename_with_dt(toupper,"^Pe")
Run the code above in your browser using DataLab