-
Notifications
You must be signed in to change notification settings - Fork 306
Description
Here are some commonly used (class of) regression models that broom currently doesn't support but would be lovely if it does.
-
zero-inflated regression:
zeroinfl(https://cran.r-project.org/web/packages/pscl/vignettes/countreg.pdf) -
hurdle models for count data regression:
hurdle(https://cran.r-project.org/web/packages/pscl/vignettes/countreg.pdf) -
robust regression from
robustbasepackage:lmrob(https://cran.r-project.org/web/packages/robustbase/robustbase.pdf) -
multivariate ordinal regression models:
mvord(https://cran.r-project.org/web/packages/mvord/vignettes/vignette_mvord2.html) -
multinomial logit model:
mnlogit(https://cran.r-project.org/web/packages/mnlogit/index.html) -
vector generalized linear models:
vglm(https://cran.r-project.org/web/packages/VGAM/VGAM.pdf) -
outlier-robust fit for Generalized Additive Models:
rgam(https://cran.r-project.org/web/packages/rgam/index.html) -
resistant regression:
lqs(https://www.rdocumentation.org/packages/MASS/versions/7.3-51.4/topics/lqs) -
Robust Linear Regression with Compositional Data as Covariates :
complmrob(https://cran.r-project.org/web/packages/complmrob/complmrob.pdf)
(I will keep updating this list as I find new, unsupported regression models.)
Unless somebody else does it first, I will also try to do a PR with these tidiers.