Learn R Programming

prefmod (version 0.8-37)

expand.mat: Utility function to expand aggregated data

Description

The function expands aggregated data into casewise data. For instance, for a contingency table given in the form of a design matrix and corresponding counts the function sets up a matrix where each design row is repeated according to the frequencies for that row.

Usage

expand.mat(mat, freq)

Value

the expanded matrix.

Arguments

mat

a matrix (or column vector) or data frame to be expanded

freq

a vector of counts

Examples

Run this code
tdat <- expand.mat(tennis[, -1], tennis[, 1])
head(tdat)

Run the code above in your browser using DataLab