zap_label | R Documentation |
Removes variable label, leaving unlabelled vectors as is.
zap_label(x)
x |
A vector or data frame |
zap_labels()
to remove value labels.
Other zappers:
zap_empty()
,
zap_formats()
,
zap_labels()
,
zap_widths()
x1 <- labelled(1:5, c(good = 1, bad = 5), label = "rating")
x1
zap_label(x1)
x2 <- labelled_spss(c(1:4, 9), label = "score", na_values = 9)
x2
zap_label(x2)
# zap_label also works with data frames
df <- tibble::tibble(x1, x2)
str(df)
str(zap_label(df))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.