Skip to contents

List variables in a survey.

Usage

var_list(sw = "", all = FALSE, csv = getOption("surveytable.csv"))

Arguments

sw

starting characters in variable name (case insensitive)

all

print all variables?

csv

name of a CSV file

Value

A table

Examples

set_survey(namcs2019sv)
#>                         Survey info {NAMCS 2019 PUF}                         
#> ┌───────────┬──────────────┬────────────────────────────────────────────────┐
#> │ Variables │ Observations │ Design                                         │
#> ├───────────┼──────────────┼────────────────────────────────────────────────┤
#> │        33 │        8,250 │ Stratified 1 - level Cluster Sampling design   │
#> │           │              │ (with replacement)                             │
#> │           │              │ With (398) clusters.                           │
#> │           │              │ namcs2019sv = survey::svydesign(ids = ~CPSUM,  │
#> │           │              │ strata = ~CSTRATM, weights = ~PATWT            │
#> │           │              │ , data = namcs2019sv_df)                       │
#> └───────────┴──────────────┴────────────────────────────────────────────────┘
#> 
var_list("age")
#>          Variables beginning with 'age' {NAMCS 2019 PUF}         
#> ┌──────────┬─────────┬──────────────────────────────────────────┐
#> │ Variable │ Class   │ Long name                                │
#> ├──────────┼─────────┼──────────────────────────────────────────┤
#> │ AGE      │ numeric │ Patient age in years (raw - use caution) │
#> ├──────────┼─────────┼──────────────────────────────────────────┤
#> │ AGER     │ factor  │ Patient age recode                       │
#> └──────────┴─────────┴──────────────────────────────────────────┘
#>