From 30c0444853af5a52f704c9d170b99e23d779c334 Mon Sep 17 00:00:00 2001 From: Alexander Fischer Date: Sat, 4 Jan 2025 21:23:32 +0100 Subject: [PATCH] Glm docs (#779) * update glm docs * update docs --- docs/changelog.qmd | 1 + pyfixest/estimation/estimation.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/changelog.qmd b/docs/changelog.qmd index 3cff15b2..2fa5351e 100644 --- a/docs/changelog.qmd +++ b/docs/changelog.qmd @@ -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 diff --git a/pyfixest/estimation/estimation.py b/pyfixest/estimation/estimation.py index 8e69eaa8..5afa831a 100644 --- a/pyfixest/estimation/estimation.py +++ b/pyfixest/estimation/estimation.py @@ -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 ----------