vcov.maxLik {maxLik} | R Documentation |
Extract variance-covariance matrices of objects of class maxLik
.
## S3 method for class 'maxLik': vcov( object, ... )
object |
an object of class probit or maxLik . |
... |
further arguments (currently ignored). |
the estimated variance covariance matrix of the coefficients.
Arne Henningsen ahenningsen@agric-econ.uni-kiel.de, Ott Toomet otoomet@ut.ee
## ML estimation of exponential duration model: t <- rexp(100, 2) loglik <- function(theta) log(theta) - theta*t gradlik <- function(theta) 1/theta - t hesslik <- function(theta) -100/theta^2 ## Estimate with numeric gradient and hessian a <- maxLik(loglik, start=1, print.level=2) vcov(a) ## Estimate with analytic gradient and hessian a <- maxLik(loglik, gradlik, hesslik, start=1) vcov(a)