The ResultMixin for GenericLikelihoodModelResults has still covjac for the OPG cov_params.
OPG is available in statespace models, but not for all MLE that define score_obs.
In linear regression models, like OLS, OPG is the same as 'nonrobust'.
I'm not sure, but in GLM it is most likely the same as EIM and normalized_cov_params returned by WLS in fit_irls (at least for canonical link).
It should be easy to add this to the generic _get_robustcov_results.
The
ResultMixin
for GenericLikelihoodModelResults has stillcovjac
for the OPG cov_params.OPG is available in statespace models, but not for all MLE that define score_obs. In linear regression models, like OLS, OPG is the same as 'nonrobust'. I'm not sure, but in GLM it is most likely the same as EIM and normalized_cov_params returned by WLS in fit_irls (at least for canonical link).
It should be easy to add this to the generic
_get_robustcov_results
.