Skip to contents

Subset a survey, while preserving variable labels

Usage

survey_subset(design, subset, label)

Arguments

design

a survey object

subset

an expression specifying the sub-population

label

survey label of the newly created survey object

Value

a new survey object

Examples

children = survey_subset(namcs2019sv, AGE < 18, "Children < 18")
set_survey(children)
#>                          Survey info {Children < 18}                         
#> ┌───────────┬──────────────┬────────────────────────────────────────────────┐
#> │ Variables │ Observations │ Design                                         │
#> ├───────────┼──────────────┼────────────────────────────────────────────────┤
#> │        33 │        1,066 │ Stratified 1 - level Cluster Sampling design   │
#> │           │              │ (with replacement)                             │
#> │           │              │ With (139) clusters.                           │
#> │           │              │ survey_subset(namcs2019sv, AGE < 18, "Children │
#> │           │              │ < 18")                                         │
#> └───────────┴──────────────┴────────────────────────────────────────────────┘
#> 
tab("AGER")
#>                                    Patient age recode {Children < 18}                                    
#> ┌─────────────┬─────┬─────────────┬────────────┬────────────┬─────────────┬─────────┬─────┬──────┬──────┐
#> │ Level       │   n │      Number │         SE │         LL │          UL │ Percent │  SE │   LL │   UL │
#> ├─────────────┼─────┼─────────────┼────────────┼────────────┼─────────────┼─────────┼─────┼──────┼──────┤
#> │ Under 15    │ 887 │ 117,916,772 │ 14,097,315 │ 93,228,928 │ 149,142,177 │    86.1 │ 1.6 │ 82.5 │ 89.2 │
#> │ years       │     │             │            │            │             │         │     │      │      │
#> ├─────────────┼─────┼─────────────┼────────────┼────────────┼─────────────┼─────────┼─────┼──────┼──────┤
#> │ 15-24 years │ 179 │  19,003,548 │  2,871,580 │ 14,050,905 │  25,701,891 │    13.9 │ 1.6 │ 10.8 │ 17.5 │
#> └─────────────┴─────┴─────────────┴────────────┴────────────┴─────────────┴─────────┴─────┴──────┴──────┘
#>   N = 1066.                                                                                              
#>