add_stage() opens a new stage context in multi-stage sampling designs.
It acts as a delimiter between stages, not a wrapper. Each stage's
specification follows add_stage() using the same verbs.
Details
Multi-stage design structure
In multi-stage designs, sampling proceeds hierarchically:
Stage 1: Select primary sampling units (PSUs), e.g., schools
Stage 2: Within selected PSUs, select secondary units, e.g., classrooms
Stage 3+: Continue nesting as needed
Each stage can have its own:
Stratification (
stratify_by())Clustering (
cluster_by())Selection method and sample size (
draw())
Design patterns
Pattern 1: Single-stage (no explicit add_stage()):
sampling_design() |>
stratify_by(...) |>
draw(...)Pattern 2: Multi-stage (explicit stages):
sampling_design() |>
add_stage(label = "Stage 1") |>
cluster_by(...) |>
draw(...) |>
add_stage(label = "Stage 2") |>
cluster_by(...) |>
draw(...) |>
add_stage(label = "Stage 3") |>
draw(...)Validation rules
Each stage must end with
draw()before the nextadd_stage()orexecute()An untouched, unlabeled initial stage is reused by
add_stage(). Repeated unlabeled calls there do not create empty stages. Once a stage has a label or specification, it needsdraw()before another is added.The final stage doesn't need
cluster_by()(samples individuals)
Execution
Multi-stage designs can be executed:
All at once with a single frame (hierarchical data)
All at once with multiple frames (one per stage)
Stage by stage using
stages =parameter inexecute()
See execute() for details on execution patterns.
See also
sampling_design() for creating designs,
draw() for completing stages,
execute() for running multi-stage designs
Other design specification:
cluster_by(),
draw(),
sampling_design(),
selection-methods,
stratify_by()
Examples
# Two-stage design: districts then EAs
zwe_frame <- zwe_eas |>
dplyr::mutate(district_hh = sum(households), .by = district)
sampling_design() |>
add_stage(label = "Districts") |>
cluster_by(district) |>
draw(n = 20, method = "pps_brewer", mos = district_hh) |>
add_stage(label = "EAs") |>
draw(n = 10) |>
execute(zwe_frame, seed = 123)
#> # A tbl_sample: 200 × 21
#> # Sampling: 2 stages | 200/107,250 units
#> # Weights: 571.03 [135.84, 1003.03]
#> ea_id province district ward_pcode urban_rural population households
#> * <int> <fct> <fct> <chr> <fct> <int> <int>
#> 1 24938 Bulawayo Bulawayo ZW102119 Urban 597 158
#> 2 22852 Bulawayo Bulawayo ZW102109 Urban 409 110
#> 3 1389 Bulawayo Bulawayo ZW102105 Urban 141 42
#> 4 23753 Bulawayo Bulawayo ZW102118 Urban 444 124
#> 5 48254 Bulawayo Bulawayo ZW102106 Urban 93 26
#> 6 46344 Bulawayo Bulawayo ZW102128 Urban 281 74
#> 7 48495 Bulawayo Bulawayo ZW102126 Urban 363 94
#> 8 47192 Bulawayo Bulawayo ZW102127 Urban 290 76
#> 9 47415 Bulawayo Bulawayo ZW102121 Urban 706 181
#> 10 47532 Bulawayo Bulawayo ZW102124 Urban 679 180
#> # ℹ 190 more rows
#> # ℹ 14 more variables: buildings <int>, women_15_49 <int>, men_15_49 <int>,
#> # children_under5 <int>, area_km2 <dbl>, district_hh <int>, .weight <dbl>,
#> # .sample_id <int>, .stage <int>, .weight_2 <dbl>, .fpc_2 <dbl>,
#> # .weight_1 <dbl>, .fpc_1 <int>, .certainty_1 <lgl>
# Two-stage with stratification at stage 1
sampling_design() |>
add_stage(label = "Districts") |>
stratify_by(province) |>
cluster_by(district) |>
draw(n = 2, method = "pps_brewer", mos = district_hh) |>
add_stage(label = "EAs") |>
draw(n = 5) |>
execute(zwe_frame, seed = 1234)
#> Warning: Stage 1: sample size exceeded the pool population in 1 of 10 pools.
#> ✖ Requested 20 units, selected 19.
#> ℹ Capped pools: "Bulawayo".
#> ℹ Inspect with `frame_summary(sample, detail = "pool")` and the capped column.
#> # A tbl_sample: 95 × 21
#> # Sampling: 2 stages | 95/107,250 units
#> # Weights: 1350.78 [372.1, 2351.62]
#> ea_id province district ward_pcode urban_rural population households
#> * <int> <fct> <fct> <chr> <fct> <int> <int>
#> 1 24926 Bulawayo Bulawayo ZW102119 Urban 253 67
#> 2 1311 Bulawayo Bulawayo ZW102105 Urban 109 32
#> 3 48293 Bulawayo Bulawayo ZW102115 Urban 380 97
#> 4 47427 Bulawayo Bulawayo ZW102121 Urban 696 179
#> 5 46195 Bulawayo Bulawayo ZW102128 Urban 691 181
#> 6 34539 Harare Chitungwiza ZW192223 Urban 437 112
#> 7 89666 Harare Chitungwiza ZW192210 Urban 1797 456
#> 8 89634 Harare Chitungwiza ZW192202 Urban 456 120
#> 9 89760 Harare Chitungwiza ZW192215 Urban 585 158
#> 10 89789 Harare Chitungwiza ZW192216 Urban 398 102
#> # ℹ 85 more rows
#> # ℹ 14 more variables: buildings <int>, women_15_49 <int>, men_15_49 <int>,
#> # children_under5 <int>, area_km2 <dbl>, district_hh <int>, .weight <dbl>,
#> # .sample_id <int>, .stage <int>, .weight_2 <dbl>, .fpc_2 <dbl>,
#> # .weight_1 <dbl>, .fpc_1 <int>, .certainty_1 <lgl>
# Two-stage stratified cluster sample, with a synthetic household listing
household_design <- sampling_design(title = "Household Survey") |>
add_stage(label = "Enumeration Areas") |>
stratify_by(region, urban_rural) |>
cluster_by(ea_id) |>
draw(n = 3, method = "pps_brewer", mos = households) |>
add_stage(label = "Households") |>
draw(n = 20)
ea_sample <- execute(household_design, bfa_eas, stages = 1, seed = 2026)
listing <- data.frame(ea_id = rep(ea_sample$ea_id, ea_sample$households))
listing$hh_id <- ave(listing$ea_id, listing$ea_id, FUN = seq_along)
household_sample <- execute(ea_sample, listing, seed = 2027)
#> Warning: Stage 2: sample size exceeded the pool population in 2 of 69 pools.
#> ✖ Requested 1380 units, selected 1371.
#> ℹ Capped pools: "31251" and "7311".
#> ℹ Inspect with `frame_summary(sample, detail = "pool")` and the capped column.
head(as.data.frame(household_sample)[c("ea_id", "hh_id", ".weight")])
#> ea_id hh_id .weight
#> 1 9029 72 60.21667
#> 2 9029 71 60.21667
#> 3 9029 91 60.21667
#> 4 9029 56 60.21667
#> 5 9029 15 60.21667
#> 6 9029 59 60.21667
# Partial execution: select only stage 1
design <- sampling_design() |>
add_stage(label = "EAs") |>
stratify_by(region) |>
cluster_by(ea_id) |>
draw(n = 10, method = "pps_brewer", mos = households) |>
add_stage(label = "Households") |>
draw(n = 12)
# Execute stage 1 only
selected_eas <- execute(design, bfa_eas, stages = 1, seed = 1)
nrow(selected_eas)
#> [1] 130