'How to present the regression output using Stargazer from python's liner model regressions?
I am looking for a way to present my panel regression output that I got from (linearmodels import Panel OLS) model. My model is something like this:
model = PanelOLS.from_formula("expected_return ~ 1+ ESG scores + controls + EntityEffects", data=data) print(model.fit()) I tried to present the result with Stargazer but it didn't work. Is it the case that Stargazer works only with regressions using statsmodel.api? Can someone please help me out with that?
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
