R/vcov.diffIRT.r

vcov.diffIRT = function (object, ...) {
    if (is.null(object$hessian))
        stop("to obtain the covariance matrix of the parameter estimates, you should re-fit the model using 'se = TRUE'.\n")
    covmat <- solve(object$hessian)
    covmat
}

Try the diffIRT package in your browser

Any scripts or data that you put into this service are public.

diffIRT documentation built on May 2, 2019, 4:51 a.m.