├── .gitignore ├── LICENSE.md ├── README.md ├── STAT220-labs.Rproj ├── all_the_R_you_need_formula.Rmd ├── all_the_R_you_need_tidy.Rmd ├── data └── GSS_clean.csv ├── formula ├── 01-STAT_220_DescribingDataPreLab-formula.Rmd ├── 02-STAT_220_CategoricalVariablesPreLab-formula.Rmd ├── 03-STAT_220_QuantitativeVariablesPreLab-formula.Rmd ├── 04-STAT_220_RegressionPreLab-formula.Rmd ├── 05-STAT_220_BootstrapPreLab-formula.Rmd ├── 06-STAT_220_RandomizationPreLab-formula.Rmd ├── 07-STAT_220_InferenceSinglePreLab-formula.Rmd ├── 09-STAT_220_TwoSamplePreLab-formula.Rmd ├── 10-STAT_220_ANOVAPreLab-formula.Rmd ├── 11-STAT_220_ChiSquarePreLab-formula.Rmd ├── 12-STAT_220_RegressionInferencePreLab-formula.Rmd └── FinalProjectExample-formula.Rmd └── tidy ├── 01-STAT_220_DescribingDataPreLab_tidy.Rmd ├── 02-STAT_220_CategoricalVariablesPreLab_tidy.Rmd ├── 03-STAT_220_QuantitativeVariablesPreLab_tidy.Rmd ├── 04-STAT_220_RegressionPreLab_tidy.Rmd ├── 05-STAT_220_BootstrapPreLab-tidy.Rmd ├── 06-STAT_220_RandomizationPreLab-tidy.Rmd ├── 07-STAT_220_InferenceSingleProportionPreLab-tidy.Rmd ├── 08-STAT_220_InferenceSingleMeanPreLab-tidy.Rmd ├── 09-STAT_220_TwoSamplePreLab-tidy.Rmd ├── 10-STAT_220_ANOVAPreLab-tidy.Rmd ├── 11-STAT_220_ChiSquarePreLab-tidy.Rmd ├── 12-STAT_220_RegressionInferencePreLab-tidy.Rmd └── FinalProjectExample-tidy.Rmd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeliaMN/STAT220-labs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeliaMN/STAT220-labs/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeliaMN/STAT220-labs/HEAD/README.md -------------------------------------------------------------------------------- /STAT220-labs.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeliaMN/STAT220-labs/HEAD/STAT220-labs.Rproj -------------------------------------------------------------------------------- /all_the_R_you_need_formula.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeliaMN/STAT220-labs/HEAD/all_the_R_you_need_formula.Rmd -------------------------------------------------------------------------------- /all_the_R_you_need_tidy.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeliaMN/STAT220-labs/HEAD/all_the_R_you_need_tidy.Rmd -------------------------------------------------------------------------------- /data/GSS_clean.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeliaMN/STAT220-labs/HEAD/data/GSS_clean.csv -------------------------------------------------------------------------------- /formula/01-STAT_220_DescribingDataPreLab-formula.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeliaMN/STAT220-labs/HEAD/formula/01-STAT_220_DescribingDataPreLab-formula.Rmd -------------------------------------------------------------------------------- /formula/02-STAT_220_CategoricalVariablesPreLab-formula.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeliaMN/STAT220-labs/HEAD/formula/02-STAT_220_CategoricalVariablesPreLab-formula.Rmd -------------------------------------------------------------------------------- /formula/03-STAT_220_QuantitativeVariablesPreLab-formula.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeliaMN/STAT220-labs/HEAD/formula/03-STAT_220_QuantitativeVariablesPreLab-formula.Rmd -------------------------------------------------------------------------------- /formula/04-STAT_220_RegressionPreLab-formula.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeliaMN/STAT220-labs/HEAD/formula/04-STAT_220_RegressionPreLab-formula.Rmd -------------------------------------------------------------------------------- /formula/05-STAT_220_BootstrapPreLab-formula.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeliaMN/STAT220-labs/HEAD/formula/05-STAT_220_BootstrapPreLab-formula.Rmd -------------------------------------------------------------------------------- /formula/06-STAT_220_RandomizationPreLab-formula.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeliaMN/STAT220-labs/HEAD/formula/06-STAT_220_RandomizationPreLab-formula.Rmd -------------------------------------------------------------------------------- /formula/07-STAT_220_InferenceSinglePreLab-formula.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeliaMN/STAT220-labs/HEAD/formula/07-STAT_220_InferenceSinglePreLab-formula.Rmd -------------------------------------------------------------------------------- /formula/09-STAT_220_TwoSamplePreLab-formula.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeliaMN/STAT220-labs/HEAD/formula/09-STAT_220_TwoSamplePreLab-formula.Rmd -------------------------------------------------------------------------------- /formula/10-STAT_220_ANOVAPreLab-formula.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeliaMN/STAT220-labs/HEAD/formula/10-STAT_220_ANOVAPreLab-formula.Rmd -------------------------------------------------------------------------------- /formula/11-STAT_220_ChiSquarePreLab-formula.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeliaMN/STAT220-labs/HEAD/formula/11-STAT_220_ChiSquarePreLab-formula.Rmd -------------------------------------------------------------------------------- /formula/12-STAT_220_RegressionInferencePreLab-formula.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeliaMN/STAT220-labs/HEAD/formula/12-STAT_220_RegressionInferencePreLab-formula.Rmd -------------------------------------------------------------------------------- /formula/FinalProjectExample-formula.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeliaMN/STAT220-labs/HEAD/formula/FinalProjectExample-formula.Rmd -------------------------------------------------------------------------------- /tidy/01-STAT_220_DescribingDataPreLab_tidy.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeliaMN/STAT220-labs/HEAD/tidy/01-STAT_220_DescribingDataPreLab_tidy.Rmd -------------------------------------------------------------------------------- /tidy/02-STAT_220_CategoricalVariablesPreLab_tidy.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeliaMN/STAT220-labs/HEAD/tidy/02-STAT_220_CategoricalVariablesPreLab_tidy.Rmd -------------------------------------------------------------------------------- /tidy/03-STAT_220_QuantitativeVariablesPreLab_tidy.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeliaMN/STAT220-labs/HEAD/tidy/03-STAT_220_QuantitativeVariablesPreLab_tidy.Rmd -------------------------------------------------------------------------------- /tidy/04-STAT_220_RegressionPreLab_tidy.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeliaMN/STAT220-labs/HEAD/tidy/04-STAT_220_RegressionPreLab_tidy.Rmd -------------------------------------------------------------------------------- /tidy/05-STAT_220_BootstrapPreLab-tidy.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeliaMN/STAT220-labs/HEAD/tidy/05-STAT_220_BootstrapPreLab-tidy.Rmd -------------------------------------------------------------------------------- /tidy/06-STAT_220_RandomizationPreLab-tidy.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeliaMN/STAT220-labs/HEAD/tidy/06-STAT_220_RandomizationPreLab-tidy.Rmd -------------------------------------------------------------------------------- /tidy/07-STAT_220_InferenceSingleProportionPreLab-tidy.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeliaMN/STAT220-labs/HEAD/tidy/07-STAT_220_InferenceSingleProportionPreLab-tidy.Rmd -------------------------------------------------------------------------------- /tidy/08-STAT_220_InferenceSingleMeanPreLab-tidy.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeliaMN/STAT220-labs/HEAD/tidy/08-STAT_220_InferenceSingleMeanPreLab-tidy.Rmd -------------------------------------------------------------------------------- /tidy/09-STAT_220_TwoSamplePreLab-tidy.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeliaMN/STAT220-labs/HEAD/tidy/09-STAT_220_TwoSamplePreLab-tidy.Rmd -------------------------------------------------------------------------------- /tidy/10-STAT_220_ANOVAPreLab-tidy.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeliaMN/STAT220-labs/HEAD/tidy/10-STAT_220_ANOVAPreLab-tidy.Rmd -------------------------------------------------------------------------------- /tidy/11-STAT_220_ChiSquarePreLab-tidy.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeliaMN/STAT220-labs/HEAD/tidy/11-STAT_220_ChiSquarePreLab-tidy.Rmd -------------------------------------------------------------------------------- /tidy/12-STAT_220_RegressionInferencePreLab-tidy.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeliaMN/STAT220-labs/HEAD/tidy/12-STAT_220_RegressionInferencePreLab-tidy.Rmd -------------------------------------------------------------------------------- /tidy/FinalProjectExample-tidy.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeliaMN/STAT220-labs/HEAD/tidy/FinalProjectExample-tidy.Rmd --------------------------------------------------------------------------------