extract | R Documentation |
Returns a data.frame
of estimated mean(s) or standard error(s)
extract(object, what)
object |
object of of the |
what |
what to extract: all estimates (mean(s), SE(s) and CI(s); |
a data.frame
with selected information
data(admin)
data(jvs)
jvs_svy <- svydesign(ids = ~ 1, weights = ~ weight,
strata = ~ size + nace + region, data = jvs)
ipw_est1 <- nonprob(selection = ~ region + private + nace + size,
target = ~ single_shift,
svydesign = jvs_svy,
data = admin, method_selection = "logit"
)
extract(ipw_est1)
extract(ipw_est1, "se")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.