print.eRm | R Documentation |
Several methods for objects of class 'eRm'
.
## S3 method for class 'eRm'
print(x, ...)
## S3 method for class 'eRm'
summary(object, ...)
## S3 method for class 'eRm'
coef(object, parm="beta", ...)
## S3 method for class 'eRm'
model.matrix(object, ...)
## S3 method for class 'eRm'
vcov(object, ...)
## S3 method for class 'eRm'
logLik(object, ...)
## S3 method for class 'eRm'
confint(object, parm = "beta", level = 0.95, ...)
x |
Object of class |
object |
Object of class |
parm |
Either |
level |
Alpha-level. |
... |
Further arguments to be passed to or from other methods. They are ignored in this function. |
The print
method displays the value of
the log-likelihood, parameter estimates (basic parameters eta) and their standard errors.
For RM, RSM, and PCM models, the etas are difficulty parameters, for the LLTM, LRSM,
LPCM the sign of the parameters depend on the design matrix and are easiness effects by default.
The summary
method additionally gives the full set of item parameters beta as
easiness parameters for all models.
Print methods are also available for the functions logLik
and confint
(see below).
The methods below are extractor functions and return various quantities:
vcov
returns the variance-covariance matrix of the parameter estimates,
coef
a vector of estimates of the eta or beta basic parameters,
model.matrix
the design matrix,
logLik
an object with elements loglik
and df
containing
the log-likelihood value and df.
confint
a matrix of confidence interval values for eta or beta.
Patrick Mair, Reinhold Hatzinger
res <- RM(raschdat1)
res
summary(res)
coef(res)
vcov(res)
model.matrix(res)
logLik(res)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.