View source: R/modify_cells2.R
px_valuenote | R Documentation |
Inspect or change VALUENOTE.
px_valuenote(x, value, validate)
## S3 method for class 'px'
px_valuenote(x, value, validate = TRUE)
x |
A px object |
value |
Optional. A data frame with the columns 'valuenote' and one or more of the columns: 'variable-code', 'code', and 'language'. If 'value' is missing, the current VALUENOTE is returned. If NULL, VALUENOTE 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 |
A px object or data frame.
Statistics Sweden's documentation
# Set VALUENOTE for a value
library(tibble)
x1 <-
population_gl |>
px() |>
px_valuenote(
tribble(~`variable-code`, ~code, ~valuenote,
'year', '2004', 'Counts are approximated'))
# Print VALUENOTE
px_valuenote(x1)
# Set VALUENOTE for a value in specific language
x2 <-
x1 |>
px_languages(c('en', 'kl')) |>
px_valuenote(
tribble(~`variable-code`, ~code, ~language, ~valuenote,
'age', '0-6', 'en', 'Some of the figures are from 2003',
'age', '0-6', 'kl', 'Kisitsisit ilaat 2003-imeersuupput'))
px_valuenote(x2)
# Remove VALUENOTE
x3 <- px_valuenote(x2, NULL)
px_valuenote(x3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.