This function estimates the Rasch model using the PROX algorithm (cited in Wright & Stone, 1999).
rasch.prox(dat, dat.resp=1 - is.na(dat), freq=rep(1,nrow(dat)),
conv=0.001, maxiter=30, progress=FALSE)
A list with following entries
Estimated item difficulties
Estimated person abilities
Number of iterations
Item standard deviations
Person standard deviations
An NA
s
are not allowed and must be indicated by zero entries in the
response indicator matrix dat.resp
.
An
A vector of frequencies (or weights) of all rows in data frame dat
.
Convergence criterion for item parameters
Maximum number of iterations
Display progress?
Wright, B., & Stone, W. (1999). Measurement Essentials. Wilmington: Wide Range.
#############################################################################
# EXAMPLE 1: PROX data.read
#############################################################################
data(data.read)
mod <- sirt::rasch.prox( data.read )
mod$b # item difficulties
Run the code above in your browser using DataLab