vcov | R Documentation |
Extracts the asymptotic variance-covariance matrix of the MLEs from either gpcm
, grm
,
ltm
, rasch
or tpm
objects.
## S3 method for class 'gpcm' vcov(object, robust = FALSE, ...) ## S3 method for class 'grm' vcov(object, ...) ## S3 method for class 'ltm' vcov(object, robust = FALSE, ...) ## S3 method for class 'rasch' vcov(object, robust = FALSE, ...) ## S3 method for class 'tpm' vcov(object, ...)
object |
an object inheriting from either class |
robust |
logical; if |
... |
additional arguments; currently none is used. |
a numeric matrix representing the estimated covariance matrix of the maximum likelihood estimates. Note that this
covariance matrix is for the parameter estimates under the additive parameterization and not under the usual IRT
parameterization; for more info check the Details section of grm
, ltm
,
rasch
, and tpm
.
Dimitris Rizopoulos d.rizopoulos@erasmusmc.nl
gpcm
,
grm
,
ltm
,
rasch
,
tpm
fit <- rasch(WIRS) vcov(fit) sqrt(diag(vcov(fit))) # standard errors under additive parameterization
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.