Learn R Programming

crosstable (version 0.3.2)

remove_labels: Remove all label attributes.

Description

Use remove_labels() to remove the label from an object or to recursively remove all the labels from a collection of objects (such as a list or a data.frame). This can be useful with functions reacting badly to labelled objects.

Usage

remove_labels(x)

Arguments

x

object to unlabel

Value

An object of the same type as x, with no labels

See Also

get_label, set_label, import_labels, expss::unlab

Examples

Run this code
# NOT RUN {
mtcars2 %>% remove_labels %>% crosstable(mpg) #no label
mtcars2$hp %>% remove_labels %>% get_label() #NULL
# }

Run the code above in your browser using DataLab