Learn R Programming

simPop (version 0.3.0)

spTable: 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.

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.

Details

The contingency tables are computed with tableWt.

See Also

spMosaic, tableWt

Examples

Run this code

set.seed(1234)  # for reproducibility
data(eusilcS)   # load sample data
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

Run the code above in your browser using DataLab