svysummary | R Documentation |
Weighted five-number summary used for survey.design
and
survey.design2
objects (similar to base::summary
for [numeric vectors]
).
svysummary(object, design, na.rm = FALSE, ...)
object |
one-sided |
design |
an object of class |
na.rm |
|
... |
additional arguments. |
A weighted five-number summary (numeric variable) or a frequency table (factor variable).
head(workplace)
library(survey)
# Survey design for stratified simple random sampling without replacement
dn <- if (packageVersion("survey") >= "4.2") {
# survey design with pre-calibrated weights
svydesign(ids = ~ID, strata = ~strat, fpc = ~fpc, weights = ~weight,
data = workplace, calibrate.formula = ~-1 + strat)
} else {
# legacy mode
svydesign(ids = ~ID, strata = ~strat, fpc = ~fpc, weights = ~weight,
data = workplace)
}
svysummary(~payroll, dn)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.