View source: R/modify_variable2.R
px_domain | R Documentation |
Inspect or change DOMAIN.
px_domain(x, value, validate)
## S3 method for class 'px'
px_domain(x, value, validate = TRUE)
x |
A px object |
value |
Optional. A character string or data frame.
|
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 |
A px object, a character string, or a data frame.
Statistics Sweden's documentation
# Set DOMAIN for all languages
x1 <-
px(population_gl) |>
px_domain('aggregation1')
# Print DOMAIN
px_domain(x1)
# Set DOMAIN for individual variables
library(tibble)
x2 <-
x1 |>
px_domain(tribble(~`variable-code`, ~domain,
'gender', 'aggregation2',
'age', 'aggregation3'))
px_domain(x2)
# Set DOMAIN for individual languages
x3 <-
x2 %>%
px_languages(c('en', 'kl')) |>
px_domain(tribble(~`variable-code`, ~language, ~domain,
'gender', 'en', 'aggregation2_en',
'gender', 'kl', 'aggregation2_kl',
'age', 'en', 'aggregation3_en'))
px_domain(x3)
# Remove DOMAIN
x4 <- px_domain(x3, NULL)
px_domain(x4)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.