px_values {pxmake} | R Documentation |
VALUES
Description
Inspect or change VALUES.
Usage
px_values(x, value, validate)
## S3 method for class 'px'
px_values(x, value, validate = TRUE)
Arguments
x |
A px object |
value |
Optional. A data frame with the columns 'values' and one or more of the columns: 'variable-code', 'code', and 'language'. If 'value' is missing, the current VALUES is returned. If NULL, VALUES is removed. |
validate |
Optional. If TRUE a number of validation checks are performed on the px object, and an error is thrown if the object is not valid. If FALSE, the checks are skipped, which can be usefull for large px objects where the check can be time consuming. Use |
Value
A px object or data frame.
See Also
Statistics Sweden's documentation
Examples
# 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)
[Package pxmake version 0.18.0 Index]