# Set VALUENOTEX for a value
library(tibble)
x1 <-
population_gl |>
px() |>
px_valuenotex(
tribble(~`variable-code`, ~code, ~valuenotex,
'year', '2004', 'Counts are approximated'))
# Print VALUENOTEX
px_valuenotex(x1)
# Set VALUENOTEX for a value in specific language
x2 <-
x1 |>
px_languages(c('en', 'kl')) |>
px_valuenotex(
tribble(~`variable-code`, ~code, ~language, ~valuenotex,
'age', '0-6', 'en', 'Some of the figures are from 2003',
'age', '0-6', 'kl', 'Kisitsisit ilaat 2003-imeersuupput'))
px_valuenotex(x2)
# Remove VALUENOTEX
x3 <- px_valuenotex(x2, NULL)
px_valuenotex(x3)
Run the code above in your browser using DataLab