Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

pcm.conversion

Conversion of the Parameterization of the Partial Credit Model


Description

Converts a parameterization of the partial credit model (see Details).

Usage

pcm.conversion(b)

Arguments

b

Matrix of item-category-wise intercepts b_{ik} (see Details).

Details

Assume that the input matrix b containing parameters b_{ik} is defined according to the following parametrization of the partial credit model

P( X_{pi}=k | θ_p ) \propto exp ( k θ_p - b_{ik} )

if item i possesses K_i categories. The transformed parameterization is defined as

b_{ik}=k δ_i + ∑_{v=1}^{k} τ_{iv} \quad \mbox{with} \quad ∑_{k=1}^{K_i} τ_{ik}=0

The function pcm.conversion has the δ and τ parameters as values. The δ parameter is simply δ_i=b_{iK_i} / K_i.

Value

List with the following entries

delta

Vector of δ parameters

tau

Matrix of τ parameters

Examples

## Not run: 
#############################################################################
# EXAMPLE 1: Transformation PCM for data.mg
#############################################################################

library(CDM)
data(data.mg,package="CDM")
dat <- data.mg[ 1:1000, paste0("I",1:11) ]

#*** Model 1: estimate partial credit model in parameterization "PCM"
mod1a <- TAM::tam.mml( dat, irtmodel="PCM")
# use parameterization "PCM2"
mod1b <- TAM::tam.mml( dat, irtmodel="PCM2")
summary(mod1a)
summary(mod1b)

# convert parameterization of Model 1a into parameterization of Model 1b
b <- mod1a$item[, c("AXsi_.Cat1","AXsi_.Cat2","AXsi_.Cat3") ]
# compare results
pcm.conversion(b)
mod1b$xsi

## End(Not run)

sirt

Supplementary Item Response Theory Models

v3.10-118
GPL (>= 2)
Authors
Alexander Robitzsch [aut,cre] (<https://orcid.org/0000-0002-8226-3132>)
Initial release
2021-09-22 17:45:34

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.