├── .gitignore ├── README.md ├── figures ├── screenshot.png ├── screenshot2.png └── significant.png ├── hypothesis-tests-reference.Rmd ├── hypothesis-tests-reference.pdf ├── intro-to-hypothesis-testing.Rmd ├── intro-to-hypothesis-testing.pdf └── over-it.Rproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpghayes/classic-stats-formulas/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpghayes/classic-stats-formulas/HEAD/README.md -------------------------------------------------------------------------------- /figures/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpghayes/classic-stats-formulas/HEAD/figures/screenshot.png -------------------------------------------------------------------------------- /figures/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpghayes/classic-stats-formulas/HEAD/figures/screenshot2.png -------------------------------------------------------------------------------- /figures/significant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpghayes/classic-stats-formulas/HEAD/figures/significant.png -------------------------------------------------------------------------------- /hypothesis-tests-reference.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpghayes/classic-stats-formulas/HEAD/hypothesis-tests-reference.Rmd -------------------------------------------------------------------------------- /hypothesis-tests-reference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpghayes/classic-stats-formulas/HEAD/hypothesis-tests-reference.pdf -------------------------------------------------------------------------------- /intro-to-hypothesis-testing.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpghayes/classic-stats-formulas/HEAD/intro-to-hypothesis-testing.Rmd -------------------------------------------------------------------------------- /intro-to-hypothesis-testing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpghayes/classic-stats-formulas/HEAD/intro-to-hypothesis-testing.pdf -------------------------------------------------------------------------------- /over-it.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpghayes/classic-stats-formulas/HEAD/over-it.Rproj --------------------------------------------------------------------------------