Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does the covariance type mean in Statsmodels.api?

In Python's statsmodels.api package, one of OLS regression's outputs is the following:

Covariance type: nonrobust

What would that mean?

like image 985
Incognito Avatar asked Nov 16 '22 10:11

Incognito


1 Answers

By default, OLS results does not use covariance robust to heteroscedasticity (non-constant variance). If this can be a problem in your analysis, you can redo it with robust covariance estimators. See OLSResults.get_robustcov_results.

like image 88
AKSoo Avatar answered Dec 29 '22 09:12

AKSoo