This function estimates the dichotomous Rasch model by Rasch (1960).
DRM(data, desmat, start, control)# S3 method for DRM
print(x, ...)
# S3 method for DRM
summary(object, ...)
Data matrix or data frame; rows represent observations (persons), columns represent the items.
Design matrix; if missing, the design matrix for a dichotomous Rasch model will be created automatically.
starting values for parameter estimation. If missing, a vector of 0 is used as starting values.
list with control parameters for the estimation process e.g. the convergence criterion. For details please see the help pages to the R built-in function optim
object of class DRM
…
object of class DRM
data matrix according to the input
design matrix either according to the input or according to the automatically generated matrix
conditional log-likelihood
estimated basic item parameters
estimated standard errors for basic item parameters
estimated item parameters
estimated standard errors for item parameters
Hessian matrix
convergence of solution
(see help files in optim
)
number of function
calls (see help files in optim
)
Parameters are estimated by CML.
Fischer, G. H. (1974). Einfuehrung in die Theorie psychologischer Tests [Introduction to test theory]. Bern: Huber.
Rasch, G. (1960). Probabalistic models for some intelligence and attainment tests. Danmarks paedagogiske institut.
# NOT RUN {
#estimate Rasch model parameters
data(reason)
res_drm <- DRM(reason.test[,1:11])
summary(res_drm)
# }
Run the code above in your browser using DataLab