What does the covariance type mean in Statsmodels.api?
Asked Answered
H

1

8

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

Covariance type: nonrobust

What would that mean?

Hazel answered 2/6, 2020 at 20:43 Comment(0)
P
3

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.

Peasecod answered 15/4, 2021 at 2:26 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.