names_prefixed_by_values | R Documentation |
Turn a named vector into a vector of names prefixed by values
names_prefixed_by_values(x)
x |
vector to be prefixed |
df <- dplyr::tibble(
c1 = labelled(c("M", "M", "F"), c(Male = "M", Female = "F")),
c2 = labelled(c(1, 1, 2), c(Yes = 1, No = 2))
)
val_labels(df$c1)
val_labels(df$c1) %>% names_prefixed_by_values()
val_labels(df)
val_labels(df) %>% names_prefixed_by_values()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.