Skip to content

Commit

Permalink
Glm docs (#779)
Browse files Browse the repository at this point in the history
* update glm docs

* update docs
  • Loading branch information
s3alfisc authored Jan 4, 2025
1 parent fc1c1cd commit 30c0444
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/changelog.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## PyFixest 0.28.0 (In Development, can be installed from github)

- Adds a `pf.feglm()` function that supports GLMs with normal and binomial families (gaussian, logit, probit) without fixed effects. Fixed effects support is work in progress.
- Adds a function argument `context`, that allows to pass information / context to the `formulaic.Formulaic.get_model_matrix()` call that creates the model matrix.
- Fix a bug that caused reindexing of `LPDID._coeftable` when calling `LPDID.iplot()`. As a result, a second call of `LPDID.iplot()` would fail.

## PyFixest 0.27.0
Expand Down
2 changes: 1 addition & 1 deletion pyfixest/estimation/estimation.py
Original file line number Diff line number Diff line change
Expand Up @@ -745,7 +745,7 @@ def feglm(
fsplit: Optional[str] = None,
) -> Union[Feols, Fepois, FixestMulti]:
"""
Estimate GLM regression model with fixed effects.
Estimate GLM regression models (currently without fixed effects, this is work in progress).
Parameters
----------
Expand Down

0 comments on commit 30c0444

Please sign in to comment.