R/loadData.R
unlabel.Rd
Remove the label attribute from data
unlabel(dat)
data in the form of a list, data.frame or tibble, or a vector
list
data.frame
tibble
data with the labels removed
a <- c(1, 2) attr(a, "label") <- "b" identical(unlabel(a), c(1, 2)) #> [1] TRUE