Is it possible to create column labels while piping in R with dplyr? E.g. something like:
df <- mtcars %>%
some_lovely_function_for_labels(mpg = 'Miles per gallon')
Perhaps the solution could work for a list of variable-labels pairs.
I've explored the labelled package to no avail.