expected_CV {SamplingStrata} | R Documentation |
Expected coefficients of variation of target variables Y
Description
Once optimized the sampling frame, this function allows to calculate the expected coefficients of variation on the aggregated strata of the current optimized solution, and to compare them to the precision constraints.
Usage
expected_CV(strata)
Arguments
strata |
Aggregated strata in the solution obtained by the execution of the 'optimizedStrata' function |
Value
Matrix containing values of the CV's in the different domains
Examples
## Not run:
library(SamplingStrata)
data(swisserrors)
data(swissstrata)
# optimisation of sampling strata
solution <- optimizeStrata (
errors = swisserrors,
strata = swissstrata,
)
# calculate CV's on Y's
expected_CV(solution$aggr_strata)
# compare to precision constraints
swisserrors
## End(Not run)
[Package SamplingStrata version 1.5-4 Index]