rsmodel
returns an S3 object of class "rsmodel"
,
i.e., a list with the following components:
coefficientsa named vector of estimated item-specific
parameters (without the first item parameter which is constrained
to 0) and estimated cumulative relative treshold parameters
(again without first threshold parameter which is also constrained to 0),
vcovcovariance matrix of the parameters in the model,
datamodified data, used for model-fitting, i.e., cleaned for items without
variance, centralized so that the first category is zero for all items
and without observations with zero weight. Be careful, this is different than for
objects of class "raschmodel"
or "btmodel"
, where
data
contains the original data,
itemslogical vector of length ncol(y)
, which
indicates which items have variance (TRUE
), i.e., are identified and have been
used for the estimation or not (FALSE
),
categoriesinteger vector of length ncol(y)
, which
contains the number of categories minus one per item,
nnumber of observations (with non-zero weights),
n_orgoriginal number of observations in y
,
weightsthe weights used (if any),
nalogical indicating whether the data contains NAs,
esflist of elementary symmetric functions and their
derivatives for estimated parameters,
logliklog-likelihood of the fitted model,
dfnumber of estimated parameters,
codeconvergence code from optim
,
iterationsnumber of iterations used by optim
,
reltoltolerance passed to optim
.