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).