remove_labels function

Remove all label attributes.

Remove all label attributes.

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.

remove_labels(x)

Arguments

  • x: object to unlabel

Returns

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

Examples

mtcars2 %>% remove_labels %>% crosstable(mpg) #no label mtcars2$hp %>% remove_labels %>% get_label() #NULL

See Also

get_label , set_label , import_labels , expss::unlab

Author(s)

Dan Chaltiel