ExtractRaschMirt: Extract item difficulties and item difficulty variance...

Description Usage Arguments Value Examples

Description

Extract item difficulties and item difficulty variance estimates for Rasch items from a fitted mirt object for one or two groups

Usage

1
ExtractRaschMirt(mod, focal = NULL, reference = NULL)

Arguments

mod

A mirt object containing the fit of unidimensional model.

focal

Character. Required if mod is MultipleGroupClass, focal should coincide with the label for the focal group. If mod is SingleGroupClass, it is ignored.

reference

Character. Required if mod is MultipleGroupClass, reference should coincide with the label for the focal group. If mod is SingleGroupClass, it is ignored.

Value

If mod contains any itemtype == "Rasch", a list with the item parameters and the estimate covariances (if available). If mod is SingleGroupClass, the list contains the item parameters as a matrix and the covariances as a list. If mod is MultipleGroupClass, the list contains the item parameters and covariances for the focal and reference groups only.

Examples

1
2
3
4
library(mirt)
data <- expand.table(LSAT7)
(mod1 <- mirt(data, model = 1, itemtype = "Rasch", SE = TRUE))
(DFIT:::ExtractRaschMirt(mod1))

DFIT documentation built on Aug. 17, 2021, 9:07 a.m.

Related to ExtractRaschMirt in DFIT...