├── .Rbuildignore ├── .github ├── .gitignore ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md └── workflows │ ├── R-CMD-check-hard.yaml │ ├── R-CMD-check.yaml │ ├── lock.yaml │ ├── pkgdown.yaml │ ├── pr-commands.yaml │ └── test-coverage.yaml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── MAINTENANCE.md ├── NAMESPACE ├── NEWS.md ├── R ├── aaa-documentation-helper.R ├── aer.R ├── auc.R ├── base.R ├── bbmle.R ├── betareg.R ├── biglm.R ├── bingroup.R ├── boot.R ├── broom-package.R ├── broom.R ├── btergm.R ├── car.R ├── caret.R ├── cluster.R ├── cmprsk.R ├── data-frame.R ├── deprecated-0-7-0.R ├── drc.R ├── emmeans.R ├── epiR.R ├── ergm.R ├── fixest.R ├── gam.R ├── geepack.R ├── glmnet-cv-glmnet.R ├── glmnet-glmnet.R ├── gmm.R ├── hmisc.R ├── import-standalone-obj-type.R ├── import-standalone-types-check.R ├── joinerml.R ├── kendall.R ├── ks.R ├── lavaan.R ├── leaps.R ├── lfe.R ├── list-irlba.R ├── list-optim.R ├── list-svd.R ├── list-xyz.R ├── list.R ├── lm-beta.R ├── lmodel2.R ├── lmtest.R ├── maps.R ├── margins.R ├── mass-fitdistr.R ├── mass-negbin.R ├── mass-polr.R ├── mass-ridgelm.R ├── mass-rlm.R ├── mclust.R ├── mediation.R ├── metafor.R ├── mfx.R ├── mgcv.R ├── mlogit.R ├── muhaz.R ├── multcomp.R ├── nnet.R ├── nobs.R ├── null-and-default.R ├── ordinal-clm.R ├── ordinal-clmm.R ├── plm.R ├── polca.R ├── psych.R ├── quantreg-nlrq.R ├── quantreg-rq.R ├── quantreg-rqs.R ├── robust-glmrob.R ├── robust-lmrob.R ├── robustbase-glmrob.R ├── robustbase-lmrob.R ├── sp.R ├── spdep.R ├── speedglm-speedglm.R ├── speedglm-speedlm.R ├── stats-anova.R ├── stats-arima.R ├── stats-decompose.R ├── stats-factanal.R ├── stats-glm.R ├── stats-htest.R ├── stats-kmeans.R ├── stats-lm.R ├── stats-loess.R ├── stats-mlm.R ├── stats-nls.R ├── stats-prcomp.R ├── stats-smooth.spline.R ├── stats-summary-lm.R ├── stats-time-series.R ├── survey.R ├── survival-aareg.R ├── survival-cch.R ├── survival-coxph.R ├── survival-pyears.R ├── survival-survdiff.R ├── survival-survexp.R ├── survival-survfit.R ├── survival-survreg.R ├── sysdata.rda ├── systemfit.R ├── tseries.R ├── utilities.R ├── vars.R ├── zoo.R └── zzz.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── air.toml ├── broom.Rproj ├── codecov.yml ├── cran-comments.md ├── data-raw └── long_running_models_for_tests.R ├── inst └── WORDLIST ├── man-roxygen ├── augment_NAs.R ├── param_confint.R ├── param_data.R ├── param_exponentiate.R ├── param_interval.R ├── param_newdata.R ├── param_se_fit.R ├── param_type_predict.R ├── param_type_residuals.R ├── param_unused_dots.R ├── return_augment_columns.R ├── return_finish_glance.R ├── return_term_regression.R ├── return_tidy_regression.R ├── title_desc_augment.R ├── title_desc_glance.R ├── title_desc_tidy.R ├── title_desc_tidy_glance.R └── title_desc_tidy_list.R ├── man ├── augment.Mclust.Rd ├── augment.betamfx.Rd ├── augment.betareg.Rd ├── augment.clm.Rd ├── augment.coxph.Rd ├── augment.decomposed.ts.Rd ├── augment.drc.Rd ├── augment.factanal.Rd ├── augment.felm.Rd ├── augment.fixest.Rd ├── augment.gam.Rd ├── augment.glm.Rd ├── augment.glmRob.Rd ├── augment.htest.Rd ├── augment.ivreg.Rd ├── augment.kmeans.Rd ├── augment.lm.Rd ├── augment.lmRob.Rd ├── augment.loess.Rd ├── augment.mfx.Rd ├── augment.mjoint.Rd ├── augment.mlogit.Rd ├── augment.nlrq.Rd ├── augment.nls.Rd ├── augment.pam.Rd ├── augment.plm.Rd ├── augment.poLCA.Rd ├── augment.polr.Rd ├── augment.prcomp.Rd ├── augment.rlm.Rd ├── augment.rma.Rd ├── augment.robustbase.glmrob.Rd ├── augment.robustbase.lmrob.Rd ├── augment.rq.Rd ├── augment.rqs.Rd ├── augment.sarlm.Rd ├── augment.smooth.spline.Rd ├── augment.speedlm.Rd ├── augment.stl.Rd ├── augment.survreg.Rd ├── augment_columns.Rd ├── bootstrap.Rd ├── broom.Rd ├── confint_tidy.Rd ├── data.frame_tidiers.Rd ├── durbinWatsonTest_tidiers.Rd ├── figures │ └── logo.png ├── finish_glance.Rd ├── fix_data_frame.Rd ├── glance.Arima.Rd ├── glance.Mclust.Rd ├── glance.aareg.Rd ├── glance.anova.Rd ├── glance.aov.Rd ├── glance.betamfx.Rd ├── glance.betareg.Rd ├── glance.biglm.Rd ├── glance.binDesign.Rd ├── glance.cch.Rd ├── glance.clm.Rd ├── glance.clmm.Rd ├── glance.coeftest.Rd ├── glance.coxph.Rd ├── glance.crr.Rd ├── glance.cv.glmnet.Rd ├── glance.drc.Rd ├── glance.ergm.Rd ├── glance.factanal.Rd ├── glance.felm.Rd ├── glance.fitdistr.Rd ├── glance.fixest.Rd ├── glance.gam.Rd ├── glance.garch.Rd ├── glance.geeglm.Rd ├── glance.glm.Rd ├── glance.glmRob.Rd ├── glance.glmnet.Rd ├── glance.gmm.Rd ├── glance.ivreg.Rd ├── glance.kmeans.Rd ├── glance.lavaan.Rd ├── glance.lm.Rd ├── glance.lmRob.Rd ├── glance.lmodel2.Rd ├── glance.margins.Rd ├── glance.mfx.Rd ├── glance.mjoint.Rd ├── glance.mlogit.Rd ├── glance.muhaz.Rd ├── glance.multinom.Rd ├── glance.negbin.Rd ├── glance.nlrq.Rd ├── glance.nls.Rd ├── glance.pam.Rd ├── glance.plm.Rd ├── glance.poLCA.Rd ├── glance.polr.Rd ├── glance.pyears.Rd ├── glance.ridgelm.Rd ├── glance.rlm.Rd ├── glance.rma.Rd ├── glance.robustbase.lmrob.Rd ├── glance.rq.Rd ├── glance.sarlm.Rd ├── glance.smooth.spline.Rd ├── glance.speedglm.Rd ├── glance.speedlm.Rd ├── glance.summary.lm.Rd ├── glance.survdiff.Rd ├── glance.survexp.Rd ├── glance.survfit.Rd ├── glance.survreg.Rd ├── glance.svyglm.Rd ├── glance.svyolr.Rd ├── glance.varest.Rd ├── glance_gam_hastie.Rd ├── glance_optim.Rd ├── leveneTest_tidiers.Rd ├── list_tidiers.Rd ├── metafor_tidiers.Rd ├── null_tidiers.Rd ├── reexports.Rd ├── sp_tidiers.Rd ├── summary_tidiers.Rd ├── tidy.Arima.Rd ├── tidy.Kendall.Rd ├── tidy.Mclust.Rd ├── tidy.TukeyHSD.Rd ├── tidy.aareg.Rd ├── tidy.acf.Rd ├── tidy.anova.Rd ├── tidy.aov.Rd ├── tidy.aovlist.Rd ├── tidy.betamfx.Rd ├── tidy.betareg.Rd ├── tidy.biglm.Rd ├── tidy.binDesign.Rd ├── tidy.binWidth.Rd ├── tidy.boot.Rd ├── tidy.btergm.Rd ├── tidy.cch.Rd ├── tidy.cld.Rd ├── tidy.clm.Rd ├── tidy.clmm.Rd ├── tidy.coeftest.Rd ├── tidy.confint.glht.Rd ├── tidy.confusionMatrix.Rd ├── tidy.coxph.Rd ├── tidy.crr.Rd ├── tidy.cv.glmnet.Rd ├── tidy.density.Rd ├── tidy.dist.Rd ├── tidy.drc.Rd ├── tidy.emmGrid.Rd ├── tidy.epi.2by2.Rd ├── tidy.ergm.Rd ├── tidy.factanal.Rd ├── tidy.felm.Rd ├── tidy.fitdistr.Rd ├── tidy.fixest.Rd ├── tidy.ftable.Rd ├── tidy.gam.Rd ├── tidy.garch.Rd ├── tidy.geeglm.Rd ├── tidy.glht.Rd ├── tidy.glm.Rd ├── tidy.glmRob.Rd ├── tidy.glmnet.Rd ├── tidy.gmm.Rd ├── tidy.htest.Rd ├── tidy.ivreg.Rd ├── tidy.kappa.Rd ├── tidy.kde.Rd ├── tidy.kmeans.Rd ├── tidy.lavaan.Rd ├── tidy.lm.Rd ├── tidy.lm.beta.Rd ├── tidy.lmRob.Rd ├── tidy.lmodel2.Rd ├── tidy.lsmobj.Rd ├── tidy.manova.Rd ├── tidy.map.Rd ├── tidy.margins.Rd ├── tidy.mediate.Rd ├── tidy.mfx.Rd ├── tidy.mjoint.Rd ├── tidy.mle2.Rd ├── tidy.mlm.Rd ├── tidy.mlogit.Rd ├── tidy.muhaz.Rd ├── tidy.multinom.Rd ├── tidy.negbin.Rd ├── tidy.nlrq.Rd ├── tidy.nls.Rd ├── tidy.pairwise.htest.Rd ├── tidy.pam.Rd ├── tidy.plm.Rd ├── tidy.poLCA.Rd ├── tidy.polr.Rd ├── tidy.power.htest.Rd ├── tidy.prcomp.Rd ├── tidy.pyears.Rd ├── tidy.rcorr.Rd ├── tidy.ref.grid.Rd ├── tidy.regsubsets.Rd ├── tidy.ridgelm.Rd ├── tidy.rlm.Rd ├── tidy.robustbase.glmrob.Rd ├── tidy.robustbase.lmrob.Rd ├── tidy.roc.Rd ├── tidy.rq.Rd ├── tidy.rqs.Rd ├── tidy.sarlm.Rd ├── tidy.spec.Rd ├── tidy.speedglm.Rd ├── tidy.speedlm.Rd ├── tidy.summary.glht.Rd ├── tidy.summary.lm.Rd ├── tidy.summary_emm.Rd ├── tidy.survdiff.Rd ├── tidy.survexp.Rd ├── tidy.survfit.Rd ├── tidy.survreg.Rd ├── tidy.svyglm.Rd ├── tidy.svyolr.Rd ├── tidy.systemfit.Rd ├── tidy.table.Rd ├── tidy.ts.Rd ├── tidy.varest.Rd ├── tidy.zoo.Rd ├── tidy_gam_hastie.Rd ├── tidy_irlba.Rd ├── tidy_optim.Rd ├── tidy_svd.Rd ├── tidy_xyz.Rd └── vector_tidiers.Rd ├── pkgdown └── favicon │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico ├── tests ├── spelling.R ├── testthat.R └── testthat │ ├── _snaps │ ├── data-frame.md │ ├── drc.md │ ├── ergm.md │ ├── fixest.md │ ├── geepack.md │ ├── joineRML.md │ ├── lfe.md │ ├── list-svd.md │ ├── list-xyz.md │ ├── list.md │ ├── mass-polr.md │ ├── mclust.md │ ├── mediation.md │ ├── mgcv.md │ ├── null-and-default.md │ ├── quantreg-rqs.md │ ├── robust-glmrob.md │ ├── speedglm-speedglm.md │ ├── speedglm-speedlm.md │ ├── stats-anova.md │ ├── stats-factanal.md │ ├── stats-glm.md │ ├── stats-htest.md │ ├── stats-lm.md │ ├── stats-prcomp.md │ ├── survival-survfit.md │ ├── utilities.md │ ├── utilities.new.md │ └── vars.md │ ├── helper.R │ ├── test-aer.R │ ├── test-aov.R │ ├── test-auc.R │ ├── test-bbmle.R │ ├── test-betareg.R │ ├── test-biglm.R │ ├── test-bingroup.R │ ├── test-boot.R │ ├── test-btergm.R │ ├── test-car.R │ ├── test-caret.R │ ├── test-cluster.R │ ├── test-cmprsk.R │ ├── test-data-frame.R │ ├── test-drc.R │ ├── test-emmeans.R │ ├── test-epiR.R │ ├── test-ergm.R │ ├── test-fixest.R │ ├── test-gam.R │ ├── test-geepack.R │ ├── test-glmnet.R │ ├── test-glmnetUtils.R │ ├── test-gmm.R │ ├── test-hmisc.R │ ├── test-joineRML.R │ ├── test-kendall.R │ ├── test-ks.R │ ├── test-lavaan.R │ ├── test-leaps.R │ ├── test-lfe.R │ ├── test-list-irlba.R │ ├── test-list-optim.R │ ├── test-list-svd.R │ ├── test-list-xyz.R │ ├── test-list.R │ ├── test-lmbeta-lm-beta.R │ ├── test-lmodel2.R │ ├── test-lmtest.R │ ├── test-maps.R │ ├── test-margins.R │ ├── test-mass-fitdistr.R │ ├── test-mass-negbin.R │ ├── test-mass-polr.R │ ├── test-mass-ridgelm.R │ ├── test-mass-rlm.R │ ├── test-mclust.R │ ├── test-mediation.R │ ├── test-metafor.R │ ├── test-mfx.R │ ├── test-mgcv.R │ ├── test-mlogit.R │ ├── test-muhaz.R │ ├── test-multcomp.R │ ├── test-nnet.R │ ├── test-null-and-default.R │ ├── test-ordinal.R │ ├── test-plm.R │ ├── test-polca.R │ ├── test-psych.R │ ├── test-quantreg-nlrq.R │ ├── test-quantreg-rq.R │ ├── test-quantreg-rqs.R │ ├── test-robust-glmrob.R │ ├── test-robust.R │ ├── test-robustbase.R │ ├── test-spdep.R │ ├── test-speedglm-speedglm.R │ ├── test-speedglm-speedlm.R │ ├── test-stats-anova.R │ ├── test-stats-arima.R │ ├── test-stats-decompose.R │ ├── test-stats-factanal.R │ ├── test-stats-glm.R │ ├── test-stats-htest.R │ ├── test-stats-kmeans.R │ ├── test-stats-lm.R │ ├── test-stats-loess.R │ ├── test-stats-mlm.R │ ├── test-stats-nls.R │ ├── test-stats-prcomp.R │ ├── test-stats-smooth.spline.R │ ├── test-stats-summary-lm.R │ ├── test-stats-time-series.R │ ├── test-survey.R │ ├── test-survival-aareg.R │ ├── test-survival-cch.R │ ├── test-survival-coxph.R │ ├── test-survival-pyears.R │ ├── test-survival-survdiff.R │ ├── test-survival-survexp.R │ ├── test-survival-survfit.R │ ├── test-survival-survreg.R │ ├── test-systemfit.R │ ├── test-tseries.R │ ├── test-utilities.R │ ├── test-vars.R │ └── test-zoo.R └── vignettes ├── .gitignore ├── adding-tidiers.Rmd ├── articles └── maintenance.Rmd ├── available-methods.Rmd ├── bootstrapping.Rmd ├── broom.Rmd ├── broom_and_dplyr.Rmd └── kmeans.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check-hard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/.github/workflows/R-CMD-check-hard.yaml -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/.github/workflows/lock.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-commands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/.github/workflows/pr-commands.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2025 2 | COPYRIGHT HOLDER: broom authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MAINTENANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/MAINTENANCE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/aaa-documentation-helper.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/aaa-documentation-helper.R -------------------------------------------------------------------------------- /R/aer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/aer.R -------------------------------------------------------------------------------- /R/auc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/auc.R -------------------------------------------------------------------------------- /R/base.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/base.R -------------------------------------------------------------------------------- /R/bbmle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/bbmle.R -------------------------------------------------------------------------------- /R/betareg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/betareg.R -------------------------------------------------------------------------------- /R/biglm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/biglm.R -------------------------------------------------------------------------------- /R/bingroup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/bingroup.R -------------------------------------------------------------------------------- /R/boot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/boot.R -------------------------------------------------------------------------------- /R/broom-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/broom-package.R -------------------------------------------------------------------------------- /R/broom.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/broom.R -------------------------------------------------------------------------------- /R/btergm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/btergm.R -------------------------------------------------------------------------------- /R/car.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/car.R -------------------------------------------------------------------------------- /R/caret.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/caret.R -------------------------------------------------------------------------------- /R/cluster.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/cluster.R -------------------------------------------------------------------------------- /R/cmprsk.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/cmprsk.R -------------------------------------------------------------------------------- /R/data-frame.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/data-frame.R -------------------------------------------------------------------------------- /R/deprecated-0-7-0.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/deprecated-0-7-0.R -------------------------------------------------------------------------------- /R/drc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/drc.R -------------------------------------------------------------------------------- /R/emmeans.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/emmeans.R -------------------------------------------------------------------------------- /R/epiR.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/epiR.R -------------------------------------------------------------------------------- /R/ergm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/ergm.R -------------------------------------------------------------------------------- /R/fixest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/fixest.R -------------------------------------------------------------------------------- /R/gam.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/gam.R -------------------------------------------------------------------------------- /R/geepack.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/geepack.R -------------------------------------------------------------------------------- /R/glmnet-cv-glmnet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/glmnet-cv-glmnet.R -------------------------------------------------------------------------------- /R/glmnet-glmnet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/glmnet-glmnet.R -------------------------------------------------------------------------------- /R/gmm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/gmm.R -------------------------------------------------------------------------------- /R/hmisc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/hmisc.R -------------------------------------------------------------------------------- /R/import-standalone-obj-type.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/import-standalone-obj-type.R -------------------------------------------------------------------------------- /R/import-standalone-types-check.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/import-standalone-types-check.R -------------------------------------------------------------------------------- /R/joinerml.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/joinerml.R -------------------------------------------------------------------------------- /R/kendall.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/kendall.R -------------------------------------------------------------------------------- /R/ks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/ks.R -------------------------------------------------------------------------------- /R/lavaan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/lavaan.R -------------------------------------------------------------------------------- /R/leaps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/leaps.R -------------------------------------------------------------------------------- /R/lfe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/lfe.R -------------------------------------------------------------------------------- /R/list-irlba.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/list-irlba.R -------------------------------------------------------------------------------- /R/list-optim.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/list-optim.R -------------------------------------------------------------------------------- /R/list-svd.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/list-svd.R -------------------------------------------------------------------------------- /R/list-xyz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/list-xyz.R -------------------------------------------------------------------------------- /R/list.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/list.R -------------------------------------------------------------------------------- /R/lm-beta.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/lm-beta.R -------------------------------------------------------------------------------- /R/lmodel2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/lmodel2.R -------------------------------------------------------------------------------- /R/lmtest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/lmtest.R -------------------------------------------------------------------------------- /R/maps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/maps.R -------------------------------------------------------------------------------- /R/margins.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/margins.R -------------------------------------------------------------------------------- /R/mass-fitdistr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/mass-fitdistr.R -------------------------------------------------------------------------------- /R/mass-negbin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/mass-negbin.R -------------------------------------------------------------------------------- /R/mass-polr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/mass-polr.R -------------------------------------------------------------------------------- /R/mass-ridgelm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/mass-ridgelm.R -------------------------------------------------------------------------------- /R/mass-rlm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/mass-rlm.R -------------------------------------------------------------------------------- /R/mclust.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/mclust.R -------------------------------------------------------------------------------- /R/mediation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/mediation.R -------------------------------------------------------------------------------- /R/metafor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/metafor.R -------------------------------------------------------------------------------- /R/mfx.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/mfx.R -------------------------------------------------------------------------------- /R/mgcv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/mgcv.R -------------------------------------------------------------------------------- /R/mlogit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/mlogit.R -------------------------------------------------------------------------------- /R/muhaz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/muhaz.R -------------------------------------------------------------------------------- /R/multcomp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/multcomp.R -------------------------------------------------------------------------------- /R/nnet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/nnet.R -------------------------------------------------------------------------------- /R/nobs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/nobs.R -------------------------------------------------------------------------------- /R/null-and-default.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/null-and-default.R -------------------------------------------------------------------------------- /R/ordinal-clm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/ordinal-clm.R -------------------------------------------------------------------------------- /R/ordinal-clmm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/ordinal-clmm.R -------------------------------------------------------------------------------- /R/plm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/plm.R -------------------------------------------------------------------------------- /R/polca.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/polca.R -------------------------------------------------------------------------------- /R/psych.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/psych.R -------------------------------------------------------------------------------- /R/quantreg-nlrq.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/quantreg-nlrq.R -------------------------------------------------------------------------------- /R/quantreg-rq.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/quantreg-rq.R -------------------------------------------------------------------------------- /R/quantreg-rqs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/quantreg-rqs.R -------------------------------------------------------------------------------- /R/robust-glmrob.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/robust-glmrob.R -------------------------------------------------------------------------------- /R/robust-lmrob.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/robust-lmrob.R -------------------------------------------------------------------------------- /R/robustbase-glmrob.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/robustbase-glmrob.R -------------------------------------------------------------------------------- /R/robustbase-lmrob.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/robustbase-lmrob.R -------------------------------------------------------------------------------- /R/sp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/sp.R -------------------------------------------------------------------------------- /R/spdep.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/spdep.R -------------------------------------------------------------------------------- /R/speedglm-speedglm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/speedglm-speedglm.R -------------------------------------------------------------------------------- /R/speedglm-speedlm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/speedglm-speedlm.R -------------------------------------------------------------------------------- /R/stats-anova.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/stats-anova.R -------------------------------------------------------------------------------- /R/stats-arima.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/stats-arima.R -------------------------------------------------------------------------------- /R/stats-decompose.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/stats-decompose.R -------------------------------------------------------------------------------- /R/stats-factanal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/stats-factanal.R -------------------------------------------------------------------------------- /R/stats-glm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/stats-glm.R -------------------------------------------------------------------------------- /R/stats-htest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/stats-htest.R -------------------------------------------------------------------------------- /R/stats-kmeans.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/stats-kmeans.R -------------------------------------------------------------------------------- /R/stats-lm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/stats-lm.R -------------------------------------------------------------------------------- /R/stats-loess.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/stats-loess.R -------------------------------------------------------------------------------- /R/stats-mlm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/stats-mlm.R -------------------------------------------------------------------------------- /R/stats-nls.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/stats-nls.R -------------------------------------------------------------------------------- /R/stats-prcomp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/stats-prcomp.R -------------------------------------------------------------------------------- /R/stats-smooth.spline.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/stats-smooth.spline.R -------------------------------------------------------------------------------- /R/stats-summary-lm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/stats-summary-lm.R -------------------------------------------------------------------------------- /R/stats-time-series.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/stats-time-series.R -------------------------------------------------------------------------------- /R/survey.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/survey.R -------------------------------------------------------------------------------- /R/survival-aareg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/survival-aareg.R -------------------------------------------------------------------------------- /R/survival-cch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/survival-cch.R -------------------------------------------------------------------------------- /R/survival-coxph.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/survival-coxph.R -------------------------------------------------------------------------------- /R/survival-pyears.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/survival-pyears.R -------------------------------------------------------------------------------- /R/survival-survdiff.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/survival-survdiff.R -------------------------------------------------------------------------------- /R/survival-survexp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/survival-survexp.R -------------------------------------------------------------------------------- /R/survival-survfit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/survival-survfit.R -------------------------------------------------------------------------------- /R/survival-survreg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/survival-survreg.R -------------------------------------------------------------------------------- /R/sysdata.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/sysdata.rda -------------------------------------------------------------------------------- /R/systemfit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/systemfit.R -------------------------------------------------------------------------------- /R/tseries.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/tseries.R -------------------------------------------------------------------------------- /R/utilities.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/utilities.R -------------------------------------------------------------------------------- /R/vars.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/vars.R -------------------------------------------------------------------------------- /R/zoo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/zoo.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /air.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broom.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/broom.Rproj -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data-raw/long_running_models_for_tests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/data-raw/long_running_models_for_tests.R -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /man-roxygen/augment_NAs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man-roxygen/augment_NAs.R -------------------------------------------------------------------------------- /man-roxygen/param_confint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man-roxygen/param_confint.R -------------------------------------------------------------------------------- /man-roxygen/param_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man-roxygen/param_data.R -------------------------------------------------------------------------------- /man-roxygen/param_exponentiate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man-roxygen/param_exponentiate.R -------------------------------------------------------------------------------- /man-roxygen/param_interval.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man-roxygen/param_interval.R -------------------------------------------------------------------------------- /man-roxygen/param_newdata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man-roxygen/param_newdata.R -------------------------------------------------------------------------------- /man-roxygen/param_se_fit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man-roxygen/param_se_fit.R -------------------------------------------------------------------------------- /man-roxygen/param_type_predict.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man-roxygen/param_type_predict.R -------------------------------------------------------------------------------- /man-roxygen/param_type_residuals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man-roxygen/param_type_residuals.R -------------------------------------------------------------------------------- /man-roxygen/param_unused_dots.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man-roxygen/param_unused_dots.R -------------------------------------------------------------------------------- /man-roxygen/return_augment_columns.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man-roxygen/return_augment_columns.R -------------------------------------------------------------------------------- /man-roxygen/return_finish_glance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man-roxygen/return_finish_glance.R -------------------------------------------------------------------------------- /man-roxygen/return_term_regression.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man-roxygen/return_term_regression.R -------------------------------------------------------------------------------- /man-roxygen/return_tidy_regression.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man-roxygen/return_tidy_regression.R -------------------------------------------------------------------------------- /man-roxygen/title_desc_augment.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man-roxygen/title_desc_augment.R -------------------------------------------------------------------------------- /man-roxygen/title_desc_glance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man-roxygen/title_desc_glance.R -------------------------------------------------------------------------------- /man-roxygen/title_desc_tidy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man-roxygen/title_desc_tidy.R -------------------------------------------------------------------------------- /man-roxygen/title_desc_tidy_glance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man-roxygen/title_desc_tidy_glance.R -------------------------------------------------------------------------------- /man-roxygen/title_desc_tidy_list.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man-roxygen/title_desc_tidy_list.R -------------------------------------------------------------------------------- /man/augment.Mclust.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.Mclust.Rd -------------------------------------------------------------------------------- /man/augment.betamfx.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.betamfx.Rd -------------------------------------------------------------------------------- /man/augment.betareg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.betareg.Rd -------------------------------------------------------------------------------- /man/augment.clm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.clm.Rd -------------------------------------------------------------------------------- /man/augment.coxph.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.coxph.Rd -------------------------------------------------------------------------------- /man/augment.decomposed.ts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.decomposed.ts.Rd -------------------------------------------------------------------------------- /man/augment.drc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.drc.Rd -------------------------------------------------------------------------------- /man/augment.factanal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.factanal.Rd -------------------------------------------------------------------------------- /man/augment.felm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.felm.Rd -------------------------------------------------------------------------------- /man/augment.fixest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.fixest.Rd -------------------------------------------------------------------------------- /man/augment.gam.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.gam.Rd -------------------------------------------------------------------------------- /man/augment.glm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.glm.Rd -------------------------------------------------------------------------------- /man/augment.glmRob.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.glmRob.Rd -------------------------------------------------------------------------------- /man/augment.htest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.htest.Rd -------------------------------------------------------------------------------- /man/augment.ivreg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.ivreg.Rd -------------------------------------------------------------------------------- /man/augment.kmeans.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.kmeans.Rd -------------------------------------------------------------------------------- /man/augment.lm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.lm.Rd -------------------------------------------------------------------------------- /man/augment.lmRob.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.lmRob.Rd -------------------------------------------------------------------------------- /man/augment.loess.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.loess.Rd -------------------------------------------------------------------------------- /man/augment.mfx.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.mfx.Rd -------------------------------------------------------------------------------- /man/augment.mjoint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.mjoint.Rd -------------------------------------------------------------------------------- /man/augment.mlogit.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.mlogit.Rd -------------------------------------------------------------------------------- /man/augment.nlrq.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.nlrq.Rd -------------------------------------------------------------------------------- /man/augment.nls.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.nls.Rd -------------------------------------------------------------------------------- /man/augment.pam.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.pam.Rd -------------------------------------------------------------------------------- /man/augment.plm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.plm.Rd -------------------------------------------------------------------------------- /man/augment.poLCA.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.poLCA.Rd -------------------------------------------------------------------------------- /man/augment.polr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.polr.Rd -------------------------------------------------------------------------------- /man/augment.prcomp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.prcomp.Rd -------------------------------------------------------------------------------- /man/augment.rlm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.rlm.Rd -------------------------------------------------------------------------------- /man/augment.rma.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.rma.Rd -------------------------------------------------------------------------------- /man/augment.robustbase.glmrob.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.robustbase.glmrob.Rd -------------------------------------------------------------------------------- /man/augment.robustbase.lmrob.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.robustbase.lmrob.Rd -------------------------------------------------------------------------------- /man/augment.rq.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.rq.Rd -------------------------------------------------------------------------------- /man/augment.rqs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.rqs.Rd -------------------------------------------------------------------------------- /man/augment.sarlm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.sarlm.Rd -------------------------------------------------------------------------------- /man/augment.smooth.spline.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.smooth.spline.Rd -------------------------------------------------------------------------------- /man/augment.speedlm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.speedlm.Rd -------------------------------------------------------------------------------- /man/augment.stl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.stl.Rd -------------------------------------------------------------------------------- /man/augment.survreg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment.survreg.Rd -------------------------------------------------------------------------------- /man/augment_columns.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/augment_columns.Rd -------------------------------------------------------------------------------- /man/bootstrap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/bootstrap.Rd -------------------------------------------------------------------------------- /man/broom.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/broom.Rd -------------------------------------------------------------------------------- /man/confint_tidy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/confint_tidy.Rd -------------------------------------------------------------------------------- /man/data.frame_tidiers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/data.frame_tidiers.Rd -------------------------------------------------------------------------------- /man/durbinWatsonTest_tidiers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/durbinWatsonTest_tidiers.Rd -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/finish_glance.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/finish_glance.Rd -------------------------------------------------------------------------------- /man/fix_data_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/fix_data_frame.Rd -------------------------------------------------------------------------------- /man/glance.Arima.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.Arima.Rd -------------------------------------------------------------------------------- /man/glance.Mclust.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.Mclust.Rd -------------------------------------------------------------------------------- /man/glance.aareg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.aareg.Rd -------------------------------------------------------------------------------- /man/glance.anova.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.anova.Rd -------------------------------------------------------------------------------- /man/glance.aov.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.aov.Rd -------------------------------------------------------------------------------- /man/glance.betamfx.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.betamfx.Rd -------------------------------------------------------------------------------- /man/glance.betareg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.betareg.Rd -------------------------------------------------------------------------------- /man/glance.biglm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.biglm.Rd -------------------------------------------------------------------------------- /man/glance.binDesign.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.binDesign.Rd -------------------------------------------------------------------------------- /man/glance.cch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.cch.Rd -------------------------------------------------------------------------------- /man/glance.clm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.clm.Rd -------------------------------------------------------------------------------- /man/glance.clmm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.clmm.Rd -------------------------------------------------------------------------------- /man/glance.coeftest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.coeftest.Rd -------------------------------------------------------------------------------- /man/glance.coxph.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.coxph.Rd -------------------------------------------------------------------------------- /man/glance.crr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.crr.Rd -------------------------------------------------------------------------------- /man/glance.cv.glmnet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.cv.glmnet.Rd -------------------------------------------------------------------------------- /man/glance.drc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.drc.Rd -------------------------------------------------------------------------------- /man/glance.ergm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.ergm.Rd -------------------------------------------------------------------------------- /man/glance.factanal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.factanal.Rd -------------------------------------------------------------------------------- /man/glance.felm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.felm.Rd -------------------------------------------------------------------------------- /man/glance.fitdistr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.fitdistr.Rd -------------------------------------------------------------------------------- /man/glance.fixest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.fixest.Rd -------------------------------------------------------------------------------- /man/glance.gam.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.gam.Rd -------------------------------------------------------------------------------- /man/glance.garch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.garch.Rd -------------------------------------------------------------------------------- /man/glance.geeglm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.geeglm.Rd -------------------------------------------------------------------------------- /man/glance.glm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.glm.Rd -------------------------------------------------------------------------------- /man/glance.glmRob.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.glmRob.Rd -------------------------------------------------------------------------------- /man/glance.glmnet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.glmnet.Rd -------------------------------------------------------------------------------- /man/glance.gmm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.gmm.Rd -------------------------------------------------------------------------------- /man/glance.ivreg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.ivreg.Rd -------------------------------------------------------------------------------- /man/glance.kmeans.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.kmeans.Rd -------------------------------------------------------------------------------- /man/glance.lavaan.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.lavaan.Rd -------------------------------------------------------------------------------- /man/glance.lm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.lm.Rd -------------------------------------------------------------------------------- /man/glance.lmRob.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.lmRob.Rd -------------------------------------------------------------------------------- /man/glance.lmodel2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.lmodel2.Rd -------------------------------------------------------------------------------- /man/glance.margins.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.margins.Rd -------------------------------------------------------------------------------- /man/glance.mfx.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.mfx.Rd -------------------------------------------------------------------------------- /man/glance.mjoint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.mjoint.Rd -------------------------------------------------------------------------------- /man/glance.mlogit.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.mlogit.Rd -------------------------------------------------------------------------------- /man/glance.muhaz.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.muhaz.Rd -------------------------------------------------------------------------------- /man/glance.multinom.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.multinom.Rd -------------------------------------------------------------------------------- /man/glance.negbin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.negbin.Rd -------------------------------------------------------------------------------- /man/glance.nlrq.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.nlrq.Rd -------------------------------------------------------------------------------- /man/glance.nls.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.nls.Rd -------------------------------------------------------------------------------- /man/glance.pam.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.pam.Rd -------------------------------------------------------------------------------- /man/glance.plm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.plm.Rd -------------------------------------------------------------------------------- /man/glance.poLCA.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.poLCA.Rd -------------------------------------------------------------------------------- /man/glance.polr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.polr.Rd -------------------------------------------------------------------------------- /man/glance.pyears.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.pyears.Rd -------------------------------------------------------------------------------- /man/glance.ridgelm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.ridgelm.Rd -------------------------------------------------------------------------------- /man/glance.rlm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.rlm.Rd -------------------------------------------------------------------------------- /man/glance.rma.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.rma.Rd -------------------------------------------------------------------------------- /man/glance.robustbase.lmrob.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.robustbase.lmrob.Rd -------------------------------------------------------------------------------- /man/glance.rq.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.rq.Rd -------------------------------------------------------------------------------- /man/glance.sarlm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.sarlm.Rd -------------------------------------------------------------------------------- /man/glance.smooth.spline.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.smooth.spline.Rd -------------------------------------------------------------------------------- /man/glance.speedglm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.speedglm.Rd -------------------------------------------------------------------------------- /man/glance.speedlm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.speedlm.Rd -------------------------------------------------------------------------------- /man/glance.summary.lm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.summary.lm.Rd -------------------------------------------------------------------------------- /man/glance.survdiff.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.survdiff.Rd -------------------------------------------------------------------------------- /man/glance.survexp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.survexp.Rd -------------------------------------------------------------------------------- /man/glance.survfit.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.survfit.Rd -------------------------------------------------------------------------------- /man/glance.survreg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.survreg.Rd -------------------------------------------------------------------------------- /man/glance.svyglm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.svyglm.Rd -------------------------------------------------------------------------------- /man/glance.svyolr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.svyolr.Rd -------------------------------------------------------------------------------- /man/glance.varest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance.varest.Rd -------------------------------------------------------------------------------- /man/glance_gam_hastie.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance_gam_hastie.Rd -------------------------------------------------------------------------------- /man/glance_optim.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/glance_optim.Rd -------------------------------------------------------------------------------- /man/leveneTest_tidiers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/leveneTest_tidiers.Rd -------------------------------------------------------------------------------- /man/list_tidiers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/list_tidiers.Rd -------------------------------------------------------------------------------- /man/metafor_tidiers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/metafor_tidiers.Rd -------------------------------------------------------------------------------- /man/null_tidiers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/null_tidiers.Rd -------------------------------------------------------------------------------- /man/reexports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/reexports.Rd -------------------------------------------------------------------------------- /man/sp_tidiers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/sp_tidiers.Rd -------------------------------------------------------------------------------- /man/summary_tidiers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/summary_tidiers.Rd -------------------------------------------------------------------------------- /man/tidy.Arima.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.Arima.Rd -------------------------------------------------------------------------------- /man/tidy.Kendall.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.Kendall.Rd -------------------------------------------------------------------------------- /man/tidy.Mclust.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.Mclust.Rd -------------------------------------------------------------------------------- /man/tidy.TukeyHSD.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.TukeyHSD.Rd -------------------------------------------------------------------------------- /man/tidy.aareg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.aareg.Rd -------------------------------------------------------------------------------- /man/tidy.acf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.acf.Rd -------------------------------------------------------------------------------- /man/tidy.anova.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.anova.Rd -------------------------------------------------------------------------------- /man/tidy.aov.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.aov.Rd -------------------------------------------------------------------------------- /man/tidy.aovlist.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.aovlist.Rd -------------------------------------------------------------------------------- /man/tidy.betamfx.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.betamfx.Rd -------------------------------------------------------------------------------- /man/tidy.betareg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.betareg.Rd -------------------------------------------------------------------------------- /man/tidy.biglm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.biglm.Rd -------------------------------------------------------------------------------- /man/tidy.binDesign.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.binDesign.Rd -------------------------------------------------------------------------------- /man/tidy.binWidth.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.binWidth.Rd -------------------------------------------------------------------------------- /man/tidy.boot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.boot.Rd -------------------------------------------------------------------------------- /man/tidy.btergm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.btergm.Rd -------------------------------------------------------------------------------- /man/tidy.cch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.cch.Rd -------------------------------------------------------------------------------- /man/tidy.cld.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.cld.Rd -------------------------------------------------------------------------------- /man/tidy.clm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.clm.Rd -------------------------------------------------------------------------------- /man/tidy.clmm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.clmm.Rd -------------------------------------------------------------------------------- /man/tidy.coeftest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.coeftest.Rd -------------------------------------------------------------------------------- /man/tidy.confint.glht.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.confint.glht.Rd -------------------------------------------------------------------------------- /man/tidy.confusionMatrix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.confusionMatrix.Rd -------------------------------------------------------------------------------- /man/tidy.coxph.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.coxph.Rd -------------------------------------------------------------------------------- /man/tidy.crr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.crr.Rd -------------------------------------------------------------------------------- /man/tidy.cv.glmnet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.cv.glmnet.Rd -------------------------------------------------------------------------------- /man/tidy.density.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.density.Rd -------------------------------------------------------------------------------- /man/tidy.dist.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.dist.Rd -------------------------------------------------------------------------------- /man/tidy.drc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.drc.Rd -------------------------------------------------------------------------------- /man/tidy.emmGrid.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.emmGrid.Rd -------------------------------------------------------------------------------- /man/tidy.epi.2by2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.epi.2by2.Rd -------------------------------------------------------------------------------- /man/tidy.ergm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.ergm.Rd -------------------------------------------------------------------------------- /man/tidy.factanal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.factanal.Rd -------------------------------------------------------------------------------- /man/tidy.felm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.felm.Rd -------------------------------------------------------------------------------- /man/tidy.fitdistr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.fitdistr.Rd -------------------------------------------------------------------------------- /man/tidy.fixest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.fixest.Rd -------------------------------------------------------------------------------- /man/tidy.ftable.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.ftable.Rd -------------------------------------------------------------------------------- /man/tidy.gam.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.gam.Rd -------------------------------------------------------------------------------- /man/tidy.garch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.garch.Rd -------------------------------------------------------------------------------- /man/tidy.geeglm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.geeglm.Rd -------------------------------------------------------------------------------- /man/tidy.glht.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.glht.Rd -------------------------------------------------------------------------------- /man/tidy.glm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.glm.Rd -------------------------------------------------------------------------------- /man/tidy.glmRob.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.glmRob.Rd -------------------------------------------------------------------------------- /man/tidy.glmnet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.glmnet.Rd -------------------------------------------------------------------------------- /man/tidy.gmm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.gmm.Rd -------------------------------------------------------------------------------- /man/tidy.htest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.htest.Rd -------------------------------------------------------------------------------- /man/tidy.ivreg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.ivreg.Rd -------------------------------------------------------------------------------- /man/tidy.kappa.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.kappa.Rd -------------------------------------------------------------------------------- /man/tidy.kde.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.kde.Rd -------------------------------------------------------------------------------- /man/tidy.kmeans.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.kmeans.Rd -------------------------------------------------------------------------------- /man/tidy.lavaan.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.lavaan.Rd -------------------------------------------------------------------------------- /man/tidy.lm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.lm.Rd -------------------------------------------------------------------------------- /man/tidy.lm.beta.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.lm.beta.Rd -------------------------------------------------------------------------------- /man/tidy.lmRob.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.lmRob.Rd -------------------------------------------------------------------------------- /man/tidy.lmodel2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.lmodel2.Rd -------------------------------------------------------------------------------- /man/tidy.lsmobj.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.lsmobj.Rd -------------------------------------------------------------------------------- /man/tidy.manova.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.manova.Rd -------------------------------------------------------------------------------- /man/tidy.map.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.map.Rd -------------------------------------------------------------------------------- /man/tidy.margins.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.margins.Rd -------------------------------------------------------------------------------- /man/tidy.mediate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.mediate.Rd -------------------------------------------------------------------------------- /man/tidy.mfx.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.mfx.Rd -------------------------------------------------------------------------------- /man/tidy.mjoint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.mjoint.Rd -------------------------------------------------------------------------------- /man/tidy.mle2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.mle2.Rd -------------------------------------------------------------------------------- /man/tidy.mlm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.mlm.Rd -------------------------------------------------------------------------------- /man/tidy.mlogit.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.mlogit.Rd -------------------------------------------------------------------------------- /man/tidy.muhaz.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.muhaz.Rd -------------------------------------------------------------------------------- /man/tidy.multinom.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.multinom.Rd -------------------------------------------------------------------------------- /man/tidy.negbin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.negbin.Rd -------------------------------------------------------------------------------- /man/tidy.nlrq.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.nlrq.Rd -------------------------------------------------------------------------------- /man/tidy.nls.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.nls.Rd -------------------------------------------------------------------------------- /man/tidy.pairwise.htest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.pairwise.htest.Rd -------------------------------------------------------------------------------- /man/tidy.pam.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.pam.Rd -------------------------------------------------------------------------------- /man/tidy.plm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.plm.Rd -------------------------------------------------------------------------------- /man/tidy.poLCA.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.poLCA.Rd -------------------------------------------------------------------------------- /man/tidy.polr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.polr.Rd -------------------------------------------------------------------------------- /man/tidy.power.htest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.power.htest.Rd -------------------------------------------------------------------------------- /man/tidy.prcomp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.prcomp.Rd -------------------------------------------------------------------------------- /man/tidy.pyears.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.pyears.Rd -------------------------------------------------------------------------------- /man/tidy.rcorr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.rcorr.Rd -------------------------------------------------------------------------------- /man/tidy.ref.grid.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.ref.grid.Rd -------------------------------------------------------------------------------- /man/tidy.regsubsets.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.regsubsets.Rd -------------------------------------------------------------------------------- /man/tidy.ridgelm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.ridgelm.Rd -------------------------------------------------------------------------------- /man/tidy.rlm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.rlm.Rd -------------------------------------------------------------------------------- /man/tidy.robustbase.glmrob.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.robustbase.glmrob.Rd -------------------------------------------------------------------------------- /man/tidy.robustbase.lmrob.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.robustbase.lmrob.Rd -------------------------------------------------------------------------------- /man/tidy.roc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.roc.Rd -------------------------------------------------------------------------------- /man/tidy.rq.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.rq.Rd -------------------------------------------------------------------------------- /man/tidy.rqs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.rqs.Rd -------------------------------------------------------------------------------- /man/tidy.sarlm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.sarlm.Rd -------------------------------------------------------------------------------- /man/tidy.spec.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.spec.Rd -------------------------------------------------------------------------------- /man/tidy.speedglm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.speedglm.Rd -------------------------------------------------------------------------------- /man/tidy.speedlm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.speedlm.Rd -------------------------------------------------------------------------------- /man/tidy.summary.glht.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.summary.glht.Rd -------------------------------------------------------------------------------- /man/tidy.summary.lm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.summary.lm.Rd -------------------------------------------------------------------------------- /man/tidy.summary_emm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.summary_emm.Rd -------------------------------------------------------------------------------- /man/tidy.survdiff.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.survdiff.Rd -------------------------------------------------------------------------------- /man/tidy.survexp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.survexp.Rd -------------------------------------------------------------------------------- /man/tidy.survfit.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.survfit.Rd -------------------------------------------------------------------------------- /man/tidy.survreg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.survreg.Rd -------------------------------------------------------------------------------- /man/tidy.svyglm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.svyglm.Rd -------------------------------------------------------------------------------- /man/tidy.svyolr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.svyolr.Rd -------------------------------------------------------------------------------- /man/tidy.systemfit.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.systemfit.Rd -------------------------------------------------------------------------------- /man/tidy.table.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.table.Rd -------------------------------------------------------------------------------- /man/tidy.ts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.ts.Rd -------------------------------------------------------------------------------- /man/tidy.varest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.varest.Rd -------------------------------------------------------------------------------- /man/tidy.zoo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy.zoo.Rd -------------------------------------------------------------------------------- /man/tidy_gam_hastie.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy_gam_hastie.Rd -------------------------------------------------------------------------------- /man/tidy_irlba.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy_irlba.Rd -------------------------------------------------------------------------------- /man/tidy_optim.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy_optim.Rd -------------------------------------------------------------------------------- /man/tidy_svd.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy_svd.Rd -------------------------------------------------------------------------------- /man/tidy_xyz.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/tidy_xyz.Rd -------------------------------------------------------------------------------- /man/vector_tidiers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/man/vector_tidiers.Rd -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /tests/spelling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/spelling.R -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/data-frame.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/_snaps/data-frame.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/drc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/_snaps/drc.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/ergm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/_snaps/ergm.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/fixest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/_snaps/fixest.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/geepack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/_snaps/geepack.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/joineRML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/_snaps/joineRML.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/lfe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/_snaps/lfe.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/list-svd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/_snaps/list-svd.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/list-xyz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/_snaps/list-xyz.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/_snaps/list.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/mass-polr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/_snaps/mass-polr.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/mclust.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/_snaps/mclust.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/mediation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/_snaps/mediation.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/mgcv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/_snaps/mgcv.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/null-and-default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/_snaps/null-and-default.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/quantreg-rqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/_snaps/quantreg-rqs.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/robust-glmrob.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/_snaps/robust-glmrob.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/speedglm-speedglm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/_snaps/speedglm-speedglm.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/speedglm-speedlm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/_snaps/speedglm-speedlm.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/stats-anova.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/_snaps/stats-anova.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/stats-factanal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/_snaps/stats-factanal.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/stats-glm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/_snaps/stats-glm.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/stats-htest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/_snaps/stats-htest.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/stats-lm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/_snaps/stats-lm.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/stats-prcomp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/_snaps/stats-prcomp.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/survival-survfit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/_snaps/survival-survfit.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/utilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/_snaps/utilities.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/utilities.new.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/_snaps/utilities.new.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/vars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/_snaps/vars.md -------------------------------------------------------------------------------- /tests/testthat/helper.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/helper.R -------------------------------------------------------------------------------- /tests/testthat/test-aer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-aer.R -------------------------------------------------------------------------------- /tests/testthat/test-aov.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-aov.R -------------------------------------------------------------------------------- /tests/testthat/test-auc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-auc.R -------------------------------------------------------------------------------- /tests/testthat/test-bbmle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-bbmle.R -------------------------------------------------------------------------------- /tests/testthat/test-betareg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-betareg.R -------------------------------------------------------------------------------- /tests/testthat/test-biglm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-biglm.R -------------------------------------------------------------------------------- /tests/testthat/test-bingroup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-bingroup.R -------------------------------------------------------------------------------- /tests/testthat/test-boot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-boot.R -------------------------------------------------------------------------------- /tests/testthat/test-btergm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-btergm.R -------------------------------------------------------------------------------- /tests/testthat/test-car.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-car.R -------------------------------------------------------------------------------- /tests/testthat/test-caret.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-caret.R -------------------------------------------------------------------------------- /tests/testthat/test-cluster.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-cluster.R -------------------------------------------------------------------------------- /tests/testthat/test-cmprsk.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-cmprsk.R -------------------------------------------------------------------------------- /tests/testthat/test-data-frame.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-data-frame.R -------------------------------------------------------------------------------- /tests/testthat/test-drc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-drc.R -------------------------------------------------------------------------------- /tests/testthat/test-emmeans.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-emmeans.R -------------------------------------------------------------------------------- /tests/testthat/test-epiR.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-epiR.R -------------------------------------------------------------------------------- /tests/testthat/test-ergm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-ergm.R -------------------------------------------------------------------------------- /tests/testthat/test-fixest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-fixest.R -------------------------------------------------------------------------------- /tests/testthat/test-gam.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-gam.R -------------------------------------------------------------------------------- /tests/testthat/test-geepack.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-geepack.R -------------------------------------------------------------------------------- /tests/testthat/test-glmnet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-glmnet.R -------------------------------------------------------------------------------- /tests/testthat/test-glmnetUtils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-glmnetUtils.R -------------------------------------------------------------------------------- /tests/testthat/test-gmm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-gmm.R -------------------------------------------------------------------------------- /tests/testthat/test-hmisc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-hmisc.R -------------------------------------------------------------------------------- /tests/testthat/test-joineRML.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-joineRML.R -------------------------------------------------------------------------------- /tests/testthat/test-kendall.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-kendall.R -------------------------------------------------------------------------------- /tests/testthat/test-ks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-ks.R -------------------------------------------------------------------------------- /tests/testthat/test-lavaan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-lavaan.R -------------------------------------------------------------------------------- /tests/testthat/test-leaps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-leaps.R -------------------------------------------------------------------------------- /tests/testthat/test-lfe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-lfe.R -------------------------------------------------------------------------------- /tests/testthat/test-list-irlba.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-list-irlba.R -------------------------------------------------------------------------------- /tests/testthat/test-list-optim.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-list-optim.R -------------------------------------------------------------------------------- /tests/testthat/test-list-svd.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-list-svd.R -------------------------------------------------------------------------------- /tests/testthat/test-list-xyz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-list-xyz.R -------------------------------------------------------------------------------- /tests/testthat/test-list.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-list.R -------------------------------------------------------------------------------- /tests/testthat/test-lmbeta-lm-beta.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-lmbeta-lm-beta.R -------------------------------------------------------------------------------- /tests/testthat/test-lmodel2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-lmodel2.R -------------------------------------------------------------------------------- /tests/testthat/test-lmtest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-lmtest.R -------------------------------------------------------------------------------- /tests/testthat/test-maps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-maps.R -------------------------------------------------------------------------------- /tests/testthat/test-margins.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-margins.R -------------------------------------------------------------------------------- /tests/testthat/test-mass-fitdistr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-mass-fitdistr.R -------------------------------------------------------------------------------- /tests/testthat/test-mass-negbin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-mass-negbin.R -------------------------------------------------------------------------------- /tests/testthat/test-mass-polr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-mass-polr.R -------------------------------------------------------------------------------- /tests/testthat/test-mass-ridgelm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-mass-ridgelm.R -------------------------------------------------------------------------------- /tests/testthat/test-mass-rlm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-mass-rlm.R -------------------------------------------------------------------------------- /tests/testthat/test-mclust.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-mclust.R -------------------------------------------------------------------------------- /tests/testthat/test-mediation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-mediation.R -------------------------------------------------------------------------------- /tests/testthat/test-metafor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-metafor.R -------------------------------------------------------------------------------- /tests/testthat/test-mfx.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-mfx.R -------------------------------------------------------------------------------- /tests/testthat/test-mgcv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-mgcv.R -------------------------------------------------------------------------------- /tests/testthat/test-mlogit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-mlogit.R -------------------------------------------------------------------------------- /tests/testthat/test-muhaz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-muhaz.R -------------------------------------------------------------------------------- /tests/testthat/test-multcomp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-multcomp.R -------------------------------------------------------------------------------- /tests/testthat/test-nnet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-nnet.R -------------------------------------------------------------------------------- /tests/testthat/test-null-and-default.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-null-and-default.R -------------------------------------------------------------------------------- /tests/testthat/test-ordinal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-ordinal.R -------------------------------------------------------------------------------- /tests/testthat/test-plm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-plm.R -------------------------------------------------------------------------------- /tests/testthat/test-polca.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-polca.R -------------------------------------------------------------------------------- /tests/testthat/test-psych.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-psych.R -------------------------------------------------------------------------------- /tests/testthat/test-quantreg-nlrq.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-quantreg-nlrq.R -------------------------------------------------------------------------------- /tests/testthat/test-quantreg-rq.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-quantreg-rq.R -------------------------------------------------------------------------------- /tests/testthat/test-quantreg-rqs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-quantreg-rqs.R -------------------------------------------------------------------------------- /tests/testthat/test-robust-glmrob.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-robust-glmrob.R -------------------------------------------------------------------------------- /tests/testthat/test-robust.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-robust.R -------------------------------------------------------------------------------- /tests/testthat/test-robustbase.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-robustbase.R -------------------------------------------------------------------------------- /tests/testthat/test-spdep.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-spdep.R -------------------------------------------------------------------------------- /tests/testthat/test-speedglm-speedglm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-speedglm-speedglm.R -------------------------------------------------------------------------------- /tests/testthat/test-speedglm-speedlm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-speedglm-speedlm.R -------------------------------------------------------------------------------- /tests/testthat/test-stats-anova.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-stats-anova.R -------------------------------------------------------------------------------- /tests/testthat/test-stats-arima.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-stats-arima.R -------------------------------------------------------------------------------- /tests/testthat/test-stats-decompose.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-stats-decompose.R -------------------------------------------------------------------------------- /tests/testthat/test-stats-factanal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-stats-factanal.R -------------------------------------------------------------------------------- /tests/testthat/test-stats-glm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-stats-glm.R -------------------------------------------------------------------------------- /tests/testthat/test-stats-htest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-stats-htest.R -------------------------------------------------------------------------------- /tests/testthat/test-stats-kmeans.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-stats-kmeans.R -------------------------------------------------------------------------------- /tests/testthat/test-stats-lm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-stats-lm.R -------------------------------------------------------------------------------- /tests/testthat/test-stats-loess.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-stats-loess.R -------------------------------------------------------------------------------- /tests/testthat/test-stats-mlm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-stats-mlm.R -------------------------------------------------------------------------------- /tests/testthat/test-stats-nls.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-stats-nls.R -------------------------------------------------------------------------------- /tests/testthat/test-stats-prcomp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-stats-prcomp.R -------------------------------------------------------------------------------- /tests/testthat/test-stats-smooth.spline.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-stats-smooth.spline.R -------------------------------------------------------------------------------- /tests/testthat/test-stats-summary-lm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-stats-summary-lm.R -------------------------------------------------------------------------------- /tests/testthat/test-stats-time-series.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-stats-time-series.R -------------------------------------------------------------------------------- /tests/testthat/test-survey.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-survey.R -------------------------------------------------------------------------------- /tests/testthat/test-survival-aareg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-survival-aareg.R -------------------------------------------------------------------------------- /tests/testthat/test-survival-cch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-survival-cch.R -------------------------------------------------------------------------------- /tests/testthat/test-survival-coxph.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-survival-coxph.R -------------------------------------------------------------------------------- /tests/testthat/test-survival-pyears.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-survival-pyears.R -------------------------------------------------------------------------------- /tests/testthat/test-survival-survdiff.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-survival-survdiff.R -------------------------------------------------------------------------------- /tests/testthat/test-survival-survexp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-survival-survexp.R -------------------------------------------------------------------------------- /tests/testthat/test-survival-survfit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-survival-survfit.R -------------------------------------------------------------------------------- /tests/testthat/test-survival-survreg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-survival-survreg.R -------------------------------------------------------------------------------- /tests/testthat/test-systemfit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-systemfit.R -------------------------------------------------------------------------------- /tests/testthat/test-tseries.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-tseries.R -------------------------------------------------------------------------------- /tests/testthat/test-utilities.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-utilities.R -------------------------------------------------------------------------------- /tests/testthat/test-vars.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-vars.R -------------------------------------------------------------------------------- /tests/testthat/test-zoo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/tests/testthat/test-zoo.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/adding-tidiers.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/vignettes/adding-tidiers.Rmd -------------------------------------------------------------------------------- /vignettes/articles/maintenance.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/vignettes/articles/maintenance.Rmd -------------------------------------------------------------------------------- /vignettes/available-methods.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/vignettes/available-methods.Rmd -------------------------------------------------------------------------------- /vignettes/bootstrapping.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/vignettes/bootstrapping.Rmd -------------------------------------------------------------------------------- /vignettes/broom.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/vignettes/broom.Rmd -------------------------------------------------------------------------------- /vignettes/broom_and_dplyr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/vignettes/broom_and_dplyr.Rmd -------------------------------------------------------------------------------- /vignettes/kmeans.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/broom/HEAD/vignettes/kmeans.Rmd --------------------------------------------------------------------------------