print_labels | R Documentation |
This is a convenience function, useful to explore the variables of a newly imported dataset.
print_labels(x, name = NULL)
x |
A labelled vector |
name |
The name of the vector (optional) |
s1 <- labelled(c("M", "M", "F"), c(Male = "M", Female = "F"))
s2 <- labelled(c(1, 1, 2), c(Male = 1, Female = 2))
labelled_df <- tibble::tibble(s1, s2)
for (var in names(labelled_df)) {
print_labels(labelled_df[[var]], var)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.