simPop (version 1.2.0)

tableWt: Weighted cross tabulation

Description

Compute contingency tables taking into account sample weights.

Usage

tableWt(x, weights = NULL, useNA = c("no", "ifany", "always"))

Arguments

x

a vector that can be interpreted as a factor, or a matrix or data.frame whose columns can be interpreted as factors.

weights

an optional numeric vector containing sample weights.

useNA

a logical indicating whether to include extra NA levels in the table.

Value

The (weighted) contingency table as an object of class table, an array of integer values.

Details

For each combination of the variables in x, the weighted number of occurence is computed as the sum of the corresponding sample weights. If weights are not specified, the function table is applied.

See Also

table, contingencyWt

Examples

Run this code
# NOT RUN {
data(eusilcS)
tableWt(eusilcS[, c("hsize", "db040")], weights = eusilcS$rb050)
tableWt(eusilcS[, c("rb090", "pb220a")], weights = eusilcS$rb050, 
    useNA = "ifany")

# }

Run the code above in your browser using DataLab