Changelog
Source:NEWS.md
ggfixest 0.4.0
New features
-
Users can now supply a list of vcov arguments to compare multiple SE adjustments on the fly. (#65)
est = est = feols(flipper_len ~ bill_len | species, penguins) ggcoefplot(est, vcov = list("iid", "hc1", ~species))
ggfixest 0.3.0
CRAN release: 2025-05-14
New features
- The new
aggr_es(..., period = "diff")convenience keyword argument allows users to estimate the difference between the (mean) post- and pre-treatment periods. Thanks to @FBrunamonti for the suggestion. (#52).
Internals
- Bump
svglitedependency version and update test snapshots. (#51)
ggfixest 0.2.0
CRAN release: 2025-01-22
Internals
- Replace
ggh4xdependency withlegendry. (#41 @teunbrand)
ggfixest 0.1.0
CRAN release: 2023-12-14
First CRAN release!
New features
- The
aggr_esfunction now supports numeric sequences for aggregating a specific subset of periods, in addition to the existing keyword strings like “pre” or “post”. This functionality also passes through to the higher order plotting functions that callaggr_esunder the hood. For example,ggiplot(est, aggr_eff = 6:8). (#33) - Users can now adjust standard errors for model objects on-the-fly at plot time, by passing an appropriate argument, e.g.
ggcoefplot(est, vcov = "hc1"). These on-the-fly adjustments are done viasummary.fixest, and so the effect is just the same as passing an adjusted object directly, e.g.ggcoefplot(summary(est, vcov = "hc1")). However, it may prove more convenient for simultaneously adjusting a list of multiple models, e.g.ggcoefplot(list(est1, est2, est3), vcov = "hc1"). (#35)
ggfixest 0.0.3
Breaking change
- The package name has been changed to ggfixest (#29).