I really like the labelled package.
I have an analysis that has tons of labels that I need to make. Instead of adding them one by one, is there a way to have it loop through all columns and to modify them in the same way. For example, if I wanted to make them all Title Case. Please note, I'm hoping to change the label, not the actual column name.
library(labelled)
library(ggplot2)
mpg_new <- ggplot2::mpg %>%
set_variable_labels(manufacturer = "Manufacturer")
labelled::var_label(mpg_new$manufacturer)
If we need to convert to title case on all of them, can pass a named
vector
as well inset_variable_labels
-checking