remove_label | R Documentation |
Remove variable labels from variables.
remove_label(x, ...)
x |
A vector or data frame. |
... |
Optional, unquoted names of variables that should be selected for
further processing. Required, if |
x
with removed variable labels
set_label
to manually set variable labels or
get_label
to get variable labels; set_labels
to
add value labels, replacing the existing ones (and removing non-specified
value labels).
data(efc) x <- efc[, 1:5] get_label(x) str(x) x <- remove_label(x) get_label(x) str(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.