vcovOPG function

Outer-Product-of-Gradients Covariance Matrix Estimation

Outer-Product-of-Gradients Covariance Matrix Estimation

Outer product of gradients estimation for the covariance matrix of the coefficient estimates in regression models.

vcovOPG(x, adjust = FALSE, ...)

Arguments

  • x: a fitted model object.
  • adjust: logical. Should a finite sample adjustment be made? This amounts to multiplication with n/(nk)n/(n-k) where nn is the number of observations and kk the number of estimated parameters.
  • ...: arguments passed to the estfun function.

Details

In correctly specified models, the meat matrix (cross product of estimating functions, see meat) and the inverse of the bread matrix (inverse of the derivative of the estimating functions, see bread) are equal and correspond to the Fisher information matrix. Typically, an empirical version of the bread is used for estimation of the information but alternatively it is also possible to use the meat. This method is also known as the outer product of gradients (OPG) estimator (Cameron & Trivedi 2005).

Using the sandwich infrastructure, the OPG estimator could easily be computed via solve(meat(obj)) (modulo scaling). To employ numerically more stable implementation of the inversion, this simple convenience function can be used: vcovOPG(obj).

Note that this only works if the estfun() method computes the maximum likelihood scores (and not a scaled version such as least squares scores for "lm" objects).

Returns

A matrix containing the covariance matrix estimate.

References

Cameron AC and Trivedi PK (2005). Microeconometrics: Methods and Applications. Cambridge University Press, Cambridge.

Zeileis A (2006). Object-Oriented Computation of Sandwich Estimators.

Journal of Statistical Software, 16 (9), 1--16. tools:::Rd_expr_doi("10.18637/jss.v016.i09")

See Also

meat, bread, sandwich

Examples

## generate poisson regression relationship x <- sin(1:100) y <- rpois(100, exp(1 + x)) ## compute usual covariance matrix of coefficient estimates fm <- glm(y ~ x, family = poisson) vcov(fm) vcovOPG(fm)
  • Maintainer: Achim Zeileis
  • License: GPL-2 | GPL-3
  • Last published: 2024-09-15