View source: R/act_svyciprop_list.R
act_svyciprop_list | R Documentation |
Listified version of act_svyciprop_tbl, allowing parallel use with multiple svydesigns. Useful when survey conducted at multiple times and/or there are multiple subsets of interest. Variables and responses are input as vectors; svydesigns are input as lists
act_svyciprop_list(variable_vect_name, response, design_obj_list, ...)
variable_vect_name |
a vector of variables of interest (in quotes) |
response |
a vector of response of intersest for each entry in varibale_vect_name. Note that these are paired by order and that the number of entries in variable_vect_name and response must be equal |
design_obj_list |
list of svydesign object containing the variables/values. |
... |
arguments passed to svyciprop |
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.
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("comp.imp", "sch.wide", "awards")
response <- c("Yes", "Yes", "Yes")
act_svyciprop_list(variable_vect_name, response, list(design1, design2))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.