spTable: Cross tabulations of expected and realized population sizes.

View source: R/spTable.R

spTableR Documentation

Cross tabulations of expected and realized population sizes.

Description

Compute contingency tables of expected (i.e., estimated) and realized (i.e., simulated) population sizes. The expected values are obtained with the Horvitz-Thompson estimator.

Usage

spTable(inp, select)

Arguments

inp

an object of class simPopObj containing household survey and simulated population data.

select

character; vector defining the columns in slots 'pop' and 'sample' of argument 'input' that should be used for tabulation.

Details

The contingency tables are computed with tableWt.

Value

A list of class "spTable" with the following components:

expected

the contingency table estimated from the survey data.

realized

the contingency table computed from the simulated population data.

Note

Sampling weights are automatically used from the input object 'inp'!

Author(s)

Andreas Alfons and Bernhard Meindl

See Also

spMosaic, tableWt

Examples


set.seed(1234)  # for reproducibility
data(eusilcS)   # load sample data
## Not run: 
samp <- specifyInput(data=eusilcS, hhid="db030", hhsize="hsize",
  strata="db040", weight="db090")
eusilcP <- simStructure(data=samp, method="direct", basicHHvars=c("age", "rb090"))
res <- spTable(eusilcP, select = c("age", "rb090"))
class(res)
res

## End(Not run)

statistikat/simPop documentation built on March 24, 2024, 5:05 a.m.