├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── explain.R ├── explainr_output.R ├── load.R └── zzz.R ├── README.md ├── explainr.Rproj ├── inst └── themes │ ├── bioconductor │ └── MArrayLM.Rmd │ ├── default │ ├── htest.Rmd │ ├── htest.default.Rmd │ ├── power.t.test.Rmd │ └── prop.test.Rmd │ └── visual │ └── lm.Rmd ├── man ├── compile_template.Rd ├── explain.Rd ├── explain.default.Rd ├── explain_line.Rd ├── explainr_mode.Rd ├── explainr_output.Rd ├── explainr_themes.Rd ├── load_template.Rd ├── load_theme.Rd ├── load_themes.Rd └── print.explainr_output.Rd └── vignettes ├── bioconductor.Rmd └── intro.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilaryparker/explainr/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | inst/doc 5 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilaryparker/explainr/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilaryparker/explainr/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- 1 | exportPattern("^[[:alpha:]]+") 2 | -------------------------------------------------------------------------------- /R/explain.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilaryparker/explainr/HEAD/R/explain.R -------------------------------------------------------------------------------- /R/explainr_output.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilaryparker/explainr/HEAD/R/explainr_output.R -------------------------------------------------------------------------------- /R/load.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilaryparker/explainr/HEAD/R/load.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilaryparker/explainr/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilaryparker/explainr/HEAD/README.md -------------------------------------------------------------------------------- /explainr.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilaryparker/explainr/HEAD/explainr.Rproj -------------------------------------------------------------------------------- /inst/themes/bioconductor/MArrayLM.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilaryparker/explainr/HEAD/inst/themes/bioconductor/MArrayLM.Rmd -------------------------------------------------------------------------------- /inst/themes/default/htest.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilaryparker/explainr/HEAD/inst/themes/default/htest.Rmd -------------------------------------------------------------------------------- /inst/themes/default/htest.default.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilaryparker/explainr/HEAD/inst/themes/default/htest.default.Rmd -------------------------------------------------------------------------------- /inst/themes/default/power.t.test.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilaryparker/explainr/HEAD/inst/themes/default/power.t.test.Rmd -------------------------------------------------------------------------------- /inst/themes/default/prop.test.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilaryparker/explainr/HEAD/inst/themes/default/prop.test.Rmd -------------------------------------------------------------------------------- /inst/themes/visual/lm.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilaryparker/explainr/HEAD/inst/themes/visual/lm.Rmd -------------------------------------------------------------------------------- /man/compile_template.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilaryparker/explainr/HEAD/man/compile_template.Rd -------------------------------------------------------------------------------- /man/explain.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilaryparker/explainr/HEAD/man/explain.Rd -------------------------------------------------------------------------------- /man/explain.default.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilaryparker/explainr/HEAD/man/explain.default.Rd -------------------------------------------------------------------------------- /man/explain_line.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilaryparker/explainr/HEAD/man/explain_line.Rd -------------------------------------------------------------------------------- /man/explainr_mode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilaryparker/explainr/HEAD/man/explainr_mode.Rd -------------------------------------------------------------------------------- /man/explainr_output.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilaryparker/explainr/HEAD/man/explainr_output.Rd -------------------------------------------------------------------------------- /man/explainr_themes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilaryparker/explainr/HEAD/man/explainr_themes.Rd -------------------------------------------------------------------------------- /man/load_template.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilaryparker/explainr/HEAD/man/load_template.Rd -------------------------------------------------------------------------------- /man/load_theme.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilaryparker/explainr/HEAD/man/load_theme.Rd -------------------------------------------------------------------------------- /man/load_themes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilaryparker/explainr/HEAD/man/load_themes.Rd -------------------------------------------------------------------------------- /man/print.explainr_output.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilaryparker/explainr/HEAD/man/print.explainr_output.Rd -------------------------------------------------------------------------------- /vignettes/bioconductor.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilaryparker/explainr/HEAD/vignettes/bioconductor.Rmd -------------------------------------------------------------------------------- /vignettes/intro.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilaryparker/explainr/HEAD/vignettes/intro.Rmd --------------------------------------------------------------------------------