Nothing
knitr::opts_chunk$set( collapse = TRUE, comment = "#>" )
library(ilabelled)
Meta information that is part of i_labeled objects:
Meta information can be applied via the class constructor i_labelled (as seen above) or by dedicated functions. Adding meta information by base R's attr()
function is also possible.
myVariable <- i_labelled(c(1, 2, 3, -9, NA)) myVariable <- myVariable |> i_label("my variable label") |> i_labels( "A" = 1, "B" = 2, "C" = 3, "X" = -9 ) |> i_na_range(c(-9,-1)) |> i_scale("nominal") |> i_subject("dummy data") myVariable
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.