# Set VALUES for a value
library(tibble)
x1 <-
population_gl |>
px() |>
px_values(
tribble(~`variable-code`, ~code, ~values,
'year', '2004', 'Year 2024'))
# Print VALUES
px_values(x1)
# Set VALUES for a value in specific language
x2 <-
x1 |>
px_languages(c('en', 'kl')) |>
px_values(
tribble(~`variable-code`, ~code, ~language, ~values,
'age', '0-6', 'en', 'toddler',
'age', '0-6', 'kl', 'meeraaqqap'))
px_values(x2)
# Remove VALUES
x3 <- px_values(x2, NULL)
px_values(x3)
Run the code above in your browser using DataLab