View source: R/modify_cells1.R
px_precision | R Documentation |
Inspect or change PRECISION.
px_precision(x, value, validate)
## S3 method for class 'px'
px_precision(x, value, validate = TRUE)
x |
A px object |
value |
Optional. A data frame with the columns 'precision' and one or more of the columns: 'variable-code', and 'code'. If 'value' is missing, the current PRECISION is returned. If NULL, PRECISION 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 PRECISION for a variable
library(tibble)
x1 <-
population_gl |>
px() |>
px_precision(tribble(~`variable-code`, ~precision,
'gender', 2))
# Print PRECISION
px_precision(x1)
# Set PRECISION for a value
x2 <-
x1 |>
px_precision(tribble(~`variable-code`, ~code, ~precision,
'age', '2004', 3))
px_precision(x2)
# Remove PRECISION
x3 <- px_precision(x2, NULL)
px_precision(x3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.