Conversation
maketables/extractors.py
Outdated
| return "y" | ||
|
|
||
| def fixef_string(self, model: Any) -> str | None: | ||
| """GLUM doesn't typically have fixed effects notation.""" |
There was a problem hiding this comment.
Any categorical variable passed to Glum will be treated as fixed effects. The resulting column name will follow the formatting argument categorical_format.
I'm not sure if that changes anything here, since we don't have a fixed way to describe fixed effects.
There was a problem hiding this comment.
This was poor phrasing on my end - the doctoring should rather read "GLUM does not sweep out fixed effects during estimation and therefore fixed effects are (efficiently) estimated as 'regular' coefficients". This is in contrast to pyfixest where we use FWL to sweep out the fixed effects and need to document this somehow in the regression table.
There was a problem hiding this comment.
And thanks for the feedback / taking a look!
Closes #9 .