px_precision {pxmake} | R Documentation |
PRECISION
Description
Inspect or change PRECISION.
Usage
px_precision(x, value, validate)
## S3 method for class 'px'
px_precision(x, value, validate = TRUE)
Arguments
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 |
Value
A px object or data frame.
See Also
Statistics Sweden's documentation
Examples
# 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)
[Package pxmake version 0.18.0 Index]