strata_normal_quantile {tern} | R Documentation |
Helper function for the estimation of stratified quantiles
Description
This function wraps the estimation of stratified percentiles when we assume the approximation for large numbers. This is necessary only in the case proportions for each strata are unequal.
Usage
strata_normal_quantile(vars, weights, conf_level)
Arguments
vars |
( |
weights |
( |
conf_level |
( |
Value
Stratified quantile.
See Also
Examples
strata_data <- table(data.frame(
"f1" = sample(c(TRUE, FALSE), 100, TRUE),
"f2" = sample(c("x", "y", "z"), 100, TRUE),
stringsAsFactors = TRUE
))
ns <- colSums(strata_data)
ests <- strata_data["TRUE", ] / ns
vars <- ests * (1 - ests) / ns
weights <- rep(1 / length(ns), length(ns))
strata_normal_quantile(vars, weights, 0.95)
[Package tern version 0.9.5 Index]