svyregress.display {jstable} | R Documentation |
svyregress.display: table for svyglm.object
Description
table for svyglm.object (survey package).
Usage
svyregress.display(svyglm.obj, decimal = 2)
Arguments
svyglm.obj |
svyglm.object |
decimal |
digit, Default: 2 |
Details
DETAILS
Value
table
Examples
library(survey)
data(api)
apistrat$tt <- c(rep(1, 20), rep(0, nrow(apistrat) - 20))
dstrat <- svydesign(id = ~1, strata = ~stype, weights = ~pw, data = apistrat, fpc = ~fpc)
ds <- svyglm(api00 ~ ell + meals + cname + mobility, design = dstrat)
ds2 <- svyglm(tt ~ ell + meals + cname + mobility, design = dstrat, family = quasibinomial())
svyregress.display(ds)
svyregress.display(ds2)
[Package jstable version 1.3.0 Index]