├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NOTES.md ├── R ├── call.R ├── coef.R ├── data.R ├── fit.R ├── model-anova.R ├── model-factors.R ├── model-mlm.R ├── model-regression.R ├── model-reliability.R ├── model-sem.R ├── model-t.R ├── model-tidy.R ├── print.R ├── utils-coef.R ├── utils-fit.R ├── utils.R └── zzz.R ├── README.Rmd ├── README.md ├── data └── polcom.rda ├── logo.R ├── make.R ├── man ├── as_tbl.Rd ├── cronbachs_alpha.Rd ├── factor_analysis.Rd ├── figures │ └── logo.png ├── nagelkerke.Rd ├── pipe.Rd ├── regression_types.Rd ├── tbl_frame.Rd ├── tidy_anova.Rd ├── tidy_mlm.Rd ├── tidy_regression.Rd ├── tidy_sem.Rd ├── tidy_sem_model.Rd └── tidy_ttest.Rd └── tidyversity.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2018 2 | COPYRIGHT HOLDER: Michael Wayne Kearney 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/NOTES.md -------------------------------------------------------------------------------- /R/call.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/R/call.R -------------------------------------------------------------------------------- /R/coef.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/R/coef.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/R/data.R -------------------------------------------------------------------------------- /R/fit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/R/fit.R -------------------------------------------------------------------------------- /R/model-anova.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/R/model-anova.R -------------------------------------------------------------------------------- /R/model-factors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/R/model-factors.R -------------------------------------------------------------------------------- /R/model-mlm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/R/model-mlm.R -------------------------------------------------------------------------------- /R/model-regression.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/R/model-regression.R -------------------------------------------------------------------------------- /R/model-reliability.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/R/model-reliability.R -------------------------------------------------------------------------------- /R/model-sem.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/R/model-sem.R -------------------------------------------------------------------------------- /R/model-t.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/R/model-t.R -------------------------------------------------------------------------------- /R/model-tidy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/R/model-tidy.R -------------------------------------------------------------------------------- /R/print.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/R/print.R -------------------------------------------------------------------------------- /R/utils-coef.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/R/utils-coef.R -------------------------------------------------------------------------------- /R/utils-fit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/R/utils-fit.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/README.md -------------------------------------------------------------------------------- /data/polcom.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/data/polcom.rda -------------------------------------------------------------------------------- /logo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/logo.R -------------------------------------------------------------------------------- /make.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/make.R -------------------------------------------------------------------------------- /man/as_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/man/as_tbl.Rd -------------------------------------------------------------------------------- /man/cronbachs_alpha.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/man/cronbachs_alpha.Rd -------------------------------------------------------------------------------- /man/factor_analysis.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/man/factor_analysis.Rd -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/nagelkerke.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/man/nagelkerke.Rd -------------------------------------------------------------------------------- /man/pipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/man/pipe.Rd -------------------------------------------------------------------------------- /man/regression_types.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/man/regression_types.Rd -------------------------------------------------------------------------------- /man/tbl_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/man/tbl_frame.Rd -------------------------------------------------------------------------------- /man/tidy_anova.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/man/tidy_anova.Rd -------------------------------------------------------------------------------- /man/tidy_mlm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/man/tidy_mlm.Rd -------------------------------------------------------------------------------- /man/tidy_regression.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/man/tidy_regression.Rd -------------------------------------------------------------------------------- /man/tidy_sem.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/man/tidy_sem.Rd -------------------------------------------------------------------------------- /man/tidy_sem_model.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/man/tidy_sem_model.Rd -------------------------------------------------------------------------------- /man/tidy_ttest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/man/tidy_ttest.Rd -------------------------------------------------------------------------------- /tidyversity.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/tidyversity/HEAD/tidyversity.Rproj --------------------------------------------------------------------------------