dendrify: Measurement Mapping for an IRTree Model

Description Usage Arguments Value Author(s) References See Also Examples

View source: R/dendrify.R

Description

Expands a wide-form matrix of item responses to a long-form data frame of sub-item responses

Usage

1
dendrify(mat, cmx)

Arguments

mat

An integer matrix of IRT responses (columns represent items, rows represent respondents)

cmx

A mapping matrix with as many rows as there are response options for the items.

Value

A data frame with one row per sub-item response

Author(s)

Ivailo Partchev

References

De Boeck, P. and Partchev, I. (2012). IRTrees: Tree-Based Item Response Models of the GLMM Family, Journal of Statistical Software – Code Snippets, 48(1), 1–28. https://www.jstatsoft.org/v48/c01/.

See Also

exogenize

Examples

1
2
mapping <- cbind(c(0,1,1), c(NA,0,1))
str(linrespT <- dendrify(linresp, mapping))

Example output

'data.frame':	5325 obs. of  5 variables:
 $ value : num  1 1 1 1 1 1 1 1 1 1 ...
 $ item  : Factor w/ 10 levels "i01","i02","i03",..: 1 1 1 1 1 1 1 1 1 1 ...
 $ person: Factor w/ 300 levels "p001","p002",..: 1 2 3 4 5 6 7 8 9 10 ...
 $ node  : Factor w/ 2 levels "node1","node2": 1 1 1 1 1 1 1 1 1 1 ...
 $ sub   : Factor w/ 20 levels "i01:node1","i01:node2",..: 1 1 1 1 1 1 1 1 1 1 ...

irtrees documentation built on Dec. 15, 2021, 1:08 a.m.