View source: R/e_data_var_labels_clear.R
e_data_var_labels_clear | R Documentation |
Clear labels from variables in data frames
e_data_var_labels_clear(dat)
dat |
a data.frame or list of data.frames with attributes "label" to remove |
dat the same object with attribute "label" removed (set to NULL
)
# a single data.frame
dat <- dat_mtcars_e
dat |> str()
dat |> e_data_var_labels_clear() |> str()
# a list of data.frames
dat <- list(dat_mtcars_e, dat_mtcars_e)
dat |> str()
dat |> e_data_var_labels_clear() |> str()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.