When analysing data from a complex survey, observations must be
weighted inversely to their sampling probabilities, and the effects
of stratification and of correlation induced by cluster sampling must
be incorporated in standard errors. The svydesign
object combines a data frame and all the survey
design information needed to analyse it. These objects are used by
the survey modelling and summary functions.
The finite population correction is used to reduce the variance when
a substantial fraction of the total population of interest has been
sampled. It may not be appropriate if the target of inference is the
process generating the data rather than the statistics of a
particular finite population.
The finite population correction can be specified either as the total
population size in each stratum or as the fraction of the total
population that has been sampled. In either case the relevant
population size is `primary sampling units', the largest clusters.
That is, sampling 100 units from a population stratum of size 500 can
be specified as 100 or as 100/500=0.2. The finite population
correction can be specified by a vector with one element for each
individual (in which case it is an error for it to vary within a
stratum) or as a data frame with one row per stratum. The first
column of the data frame should be a factor with the same levels as
strata
and the second column the finite population correction.
If population sizes are specified but not sampling probabilities or
weights, the sampling probabilities will be computed from the
population sizes assuming simple random sampling within strata.
The dim
, "["
, "[<-"
and na.action methods for
survey.design
objects operate on the dataframe specified by
variables
and ensure that the design information is properly
updated to correspond to the new data frame. With the "[<-"
method the new value can be a survey.design
object instead of a
data frame, but only the data frame is used. See also
subset.survey.design
for a simple way to select
subpopulations.
The value of options("survey.lonely.psu")
controls what happens
to strata containing only one cluster (PSU).See svyCprod
for details, especially if you have self-representing ("certainty") PSUs.