act_svyciquant_list: Listified version of act_svyciquant_tbl, allowing parallel...

View source: R/act_svyciquant_list.R

act_svyciquant_listR Documentation

Listified version of act_svyciquant_tbl, allowing parallel use with multiple svydesigns. Useful when survey conducted at multiple times and/or there are multiple subsets of interest. Variables are input as vectors; svydesigns are input as lists

Description

Listified version of act_svyciquant_tbl, allowing parallel use with multiple svydesigns. Useful when survey conducted at multiple times and/or there are multiple subsets of interest. Variables are input as vectors; svydesigns are input as lists

Usage

act_svyciquant_list(variable_vect_name, design_obj_list, ...)

Arguments

variable_vect_name

a vector of variables of interest (in quotes)

design_obj_list

list of svydesign object containing the variables/values.

...

arguments passed to svyciprop

Value

A dataframe providing the variable names, weighted mean proportions of observations taking value of interest, cluster-adjusted 95% CIs, and counts as n/N character variable (N is all non-NA values). Results from different svydesigns appear as columns in the order in which they are called.

Examples

using api data from survey package
data(api)
design <- svydesign(id=~1,strata=~stype, weights=~pw, data=apistrat, fpc=~fpc)
design1 <- subset(design, cname == "Los Angeles")
design2 <- subset(design, cname == "San Diego")
variable_vect_name <- c("api00", "snum")
act_svyciquant_list(variable_vect_name, list(design1, design2))
act_svyciquant_list(variable_vect_name, list(design1, design2), level = 0.99)

deansayre/Rtesunate documentation built on July 25, 2024, 7:22 p.m.