You are not logged in. You can browse but not post. Login or Register by clicking 'Login or Register' at the top-right of this page. For more information on Statalist, see the FAQ.
Is there a way to get covariance matrix of coefficients from two different models? I am trying to calculate the covariance for two coefficients from two different regressions.
Any help appreciated.
sysuse auto
logit foreign c.gear_ratio, nolog
estimates store G
logit foreign c.headroom, nolog
estimates store H
suest G H
matrix list e(V) // <- Here
Comment