├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NOTES.md ├── R ├── call.R ├── coef.R ├── fit.R ├── model-mlm.R ├── print.R ├── tidy.R ├── utils-fit.R ├── utils.R └── zzz.R ├── README.Rmd ├── README.md ├── data └── polcom.rda ├── logo.R ├── make.R ├── man ├── as_tbl.Rd ├── figures │ └── logo.png ├── nagelkerke.Rd ├── pipe.Rd ├── tbl_frame.Rd └── tidy_mlm.Rd └── tidymlm.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidymlm/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rhistory 2 | .RData 3 | .Rproj.user 4 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidymlm/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2018 2 | COPYRIGHT HOLDER: Michael Wayne Kearney 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidymlm/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidymlm/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidymlm/HEAD/NOTES.md -------------------------------------------------------------------------------- /R/call.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidymlm/HEAD/R/call.R -------------------------------------------------------------------------------- /R/coef.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidymlm/HEAD/R/coef.R -------------------------------------------------------------------------------- /R/fit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidymlm/HEAD/R/fit.R -------------------------------------------------------------------------------- /R/model-mlm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidymlm/HEAD/R/model-mlm.R -------------------------------------------------------------------------------- /R/print.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidymlm/HEAD/R/print.R -------------------------------------------------------------------------------- /R/tidy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidymlm/HEAD/R/tidy.R -------------------------------------------------------------------------------- /R/utils-fit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidymlm/HEAD/R/utils-fit.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidymlm/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidymlm/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidymlm/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidymlm/HEAD/README.md -------------------------------------------------------------------------------- /data/polcom.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidymlm/HEAD/data/polcom.rda -------------------------------------------------------------------------------- /logo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidymlm/HEAD/logo.R -------------------------------------------------------------------------------- /make.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidymlm/HEAD/make.R -------------------------------------------------------------------------------- /man/as_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidymlm/HEAD/man/as_tbl.Rd -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidymlm/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/nagelkerke.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidymlm/HEAD/man/nagelkerke.Rd -------------------------------------------------------------------------------- /man/pipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidymlm/HEAD/man/pipe.Rd -------------------------------------------------------------------------------- /man/tbl_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidymlm/HEAD/man/tbl_frame.Rd -------------------------------------------------------------------------------- /man/tidy_mlm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidymlm/HEAD/man/tidy_mlm.Rd -------------------------------------------------------------------------------- /tidymlm.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidymlm/HEAD/tidymlm.Rproj --------------------------------------------------------------------------------