Skip to content

Commit 30c0444

Browse files
authored
Glm docs (#779)
* update glm docs * update docs
1 parent fc1c1cd commit 30c0444

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

docs/changelog.qmd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## PyFixest 0.28.0 (In Development, can be installed from github)
44

55
- 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.
6+
- Adds a function argument `context`, that allows to pass information / context to the `formulaic.Formulaic.get_model_matrix()` call that creates the model matrix.
67
- Fix a bug that caused reindexing of `LPDID._coeftable` when calling `LPDID.iplot()`. As a result, a second call of `LPDID.iplot()` would fail.
78

89
## PyFixest 0.27.0

pyfixest/estimation/estimation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -745,7 +745,7 @@ def feglm(
745745
fsplit: Optional[str] = None,
746746
) -> Union[Feols, Fepois, FixestMulti]:
747747
"""
748-
Estimate GLM regression model with fixed effects.
748+
Estimate GLM regression models (currently without fixed effects, this is work in progress).
749749
750750
Parameters
751751
----------

0 commit comments

Comments
 (0)