gitextract_luzkuarl/ ├── .gitignore ├── LICENSE.md ├── README.md ├── ch_distributions/ │ ├── TeX/ │ │ ├── binomial_distribution.tex │ │ ├── ch_distributions.tex │ │ ├── geometric_distribution.tex │ │ ├── negative_binomial_distribution.tex │ │ ├── normal_distribution.tex │ │ ├── poisson_distribution.tex │ │ └── review_exercises.tex │ └── figures/ │ ├── 6895997/ │ │ └── 6895997.R │ ├── amiIncidencesOver100Days/ │ │ └── amiIncidencesOver100Days.R │ ├── between59And62/ │ │ └── between59And62.R │ ├── eoce/ │ │ ├── GRE_intro/ │ │ │ └── gre_intro.R │ │ ├── area_under_curve_1/ │ │ │ └── area_under_curve_1.R │ │ ├── area_under_curve_2/ │ │ │ └── area_under_curve_2.R │ │ ├── college_fem_heights/ │ │ │ └── college_fem_heights.R │ │ └── stats_scores/ │ │ └── stats_scores.R │ ├── fcidMHeights/ │ │ ├── fcidMHeights-helpers.R │ │ └── fcidMHeights.R │ ├── fourBinomialModelsShowingApproxToNormal/ │ │ └── fourBinomialModelsShowingApproxToNormal.R │ ├── geometricDist35/ │ │ └── geometricDist35.R │ ├── geometricDist70/ │ │ └── geometricDist70.R │ ├── height40Perc/ │ │ └── height40Perc.R │ ├── height82Perc/ │ │ └── height82Perc.R │ ├── mikeAndJosePercentiles/ │ │ └── mikeAndJosePercentiles.R │ ├── nbaNormal/ │ │ ├── nbaNormal-helpers.R │ │ └── nbaNormal.R │ ├── normApproxToBinomFail/ │ │ └── normApproxToBinomFail.R │ ├── normalExamples/ │ │ ├── normalExamples-helpers.R │ │ └── normalExamples.R │ ├── normalQuantileExer/ │ │ ├── QQNorm.R │ │ ├── normalQuantileExer-data.R │ │ ├── normalQuantileExer.R │ │ └── normalQuantileExerAdditional.R │ ├── normalTails/ │ │ └── normalTails.R │ ├── pokerNormal/ │ │ └── pokerNormal.R │ ├── satAbove1190/ │ │ └── satAbove1190.R │ ├── satActNormals/ │ │ └── satActNormals.R │ ├── satBelow1030/ │ │ └── satBelow1030.R │ ├── satBelow1300/ │ │ └── satBelow1300.R │ ├── simpleNormal/ │ │ └── simpleNormal.R │ ├── smallNormalTails/ │ │ └── smallNormalTails.R │ ├── standardNormal/ │ │ └── standardNormal.R │ ├── subtracting2Areas/ │ │ └── subtracting2Areas.R │ ├── subtractingArea/ │ │ └── subtractingArea.R │ ├── twoSampleNormals/ │ │ └── twoSampleNormals.R │ └── twoSampleNormalsStacked/ │ └── twoSampleNormalsStacked.R ├── ch_foundations_for_inf/ │ ├── TeX/ │ │ ├── ch_foundations_for_inf.tex │ │ ├── confidence_intervals.tex │ │ ├── hypothesis_testing.tex │ │ ├── one_sided_tests.tex │ │ ├── review_exercises.tex │ │ └── variability_in_estimates.tex │ └── figures/ │ ├── 95PercentConfidenceInterval/ │ │ └── 95PercentConfidenceInterval.R │ ├── ARCHIVE/ │ │ └── sampling_10k_prop_56p/ │ │ └── sampling_10k_prop_56p.R │ ├── arrayOfFigureAreasForChiSquareDistribution/ │ │ ├── chiSquareAreaAbove10WithDF4/ │ │ │ └── chiSquareAreaAbove10WithDF4.R │ │ ├── chiSquareAreaAbove11Point7WithDF7/ │ │ │ └── chiSquareAreaAbove11Point7WithDF7.R │ │ ├── chiSquareAreaAbove4Point3WithDF2/ │ │ │ └── chiSquareAreaAbove4WithDF2.R │ │ ├── chiSquareAreaAbove5Point1WithDF5/ │ │ │ └── chiSquareAreaAbove5Point1WithDF5.R │ │ ├── chiSquareAreaAbove6Point25WithDF3/ │ │ │ └── chiSquareAreaAbove6Point25WithDF3.R │ │ └── chiSquareAreaAbove9Point21WithDF3/ │ │ └── chiSquareAreaAbove9Point21WithDF3.R │ ├── bladesTwoSampleHTPValueQC/ │ │ └── bladesTwoSampleHTPValueQC.R │ ├── business_one_sided_20_21-p_value/ │ │ └── business_one_sided_20_21-p_value.R │ ├── chiSquareDistributionWithInceasingDF/ │ │ └── chiSquareDistributionWithInceasingDF.R │ ├── choosingZForCI/ │ │ └── choosingZForCI.R │ ├── clt_prop_grid/ │ │ └── clt_prop_grid.R │ ├── communityCollegeClaimedHousingExpenseDistribution/ │ │ └── communityCollegeClaimedHousingExpenseDistribution.R │ ├── eoce/ │ │ ├── adult_heights/ │ │ │ └── adult_heights.R │ │ ├── age_at_first_marriage_intro/ │ │ │ └── age_at_first_marriage_intro.R │ │ ├── assisted_reproduction_one_sample_randomization/ │ │ │ └── assisted_reproduction_one_sample_randomization.R │ │ ├── cflbs/ │ │ │ └── cflbs.R │ │ ├── college_credits/ │ │ │ └── college_credits.R │ │ ├── egypt_revolution_one_sample_randomization/ │ │ │ └── egypt_revolution_one_sample_randomization.R │ │ ├── exclusive_relationships/ │ │ │ ├── exclusive_relationships.R │ │ │ └── survey.csv │ │ ├── gifted_children_ht/ │ │ │ └── gifted_children_ht.R │ │ ├── gifted_children_intro/ │ │ │ └── gifted_children_intro.R │ │ ├── identify_dist_ls_pop/ │ │ │ └── identify_dist_ls_pop.R │ │ ├── identify_dist_symm_pop/ │ │ │ └── identify_dist_symm_pop.R │ │ ├── pennies_ages/ │ │ │ ├── penniesAges.Rda │ │ │ └── pennies_ages.R │ │ ├── penny_weights/ │ │ │ └── penny_weights.R │ │ ├── social_experiment_two_sample_randomization/ │ │ │ └── social_experiment_two_sample_randomization.R │ │ ├── songs_on_ipod/ │ │ │ └── songs_on_ipod.R │ │ ├── thanksgiving_spending_intro/ │ │ │ └── thanksgiving_spending_intro.R │ │ └── yawning_two_sample_randomization/ │ │ └── yawning_two_sample_randomization.R │ ├── geomFitEvaluationForSP500For1990To2011/ │ │ └── geomFitEvaluationForSP500For1990To2011.R │ ├── geomFitPValueForSP500For1990To2011/ │ │ └── geomFitPValueForSP500For1990To2011.R │ ├── googleHTForDiffAlgPerformancePValue/ │ │ └── googleHTForDiffAlgPerformancePValue.R │ ├── helpers.R │ ├── jurorHTPValueShown/ │ │ └── jurorHTPValueShown.R │ ├── mammograms/ │ │ └── mammograms.R │ ├── normal_dist_mean_500_se_016/ │ │ └── normal_dist_mean_500_se_016.R │ ├── nuclearArmsReduction/ │ │ └── nuclearArmsReduction.R │ ├── p-hat_from_53_and_59-not-used/ │ │ └── p-hat_from_53_and_59.R │ ├── p-hat_from_53_and_59_computation/ │ │ ├── NormTailsCalc.R │ │ └── p-hat_from_53_and_59_computation.R │ ├── p-hat_from_867_and_907-not-used/ │ │ └── p-hat_from_867_and_907.R │ ├── p-hat_from_86_and_90/ │ │ └── p-hat_from_86_and_90.R │ ├── quadcopter/ │ │ └── quadcopter_attribution.txt │ ├── sampling_100_prop_X/ │ │ └── sampling_100_prop_X.R │ ├── sampling_10_prop_25p/ │ │ ├── sampling_10_prop_25p - one figure.R │ │ └── sampling_10_prop_25p.R │ ├── sampling_10k_prop_887p/ │ │ └── sampling_10k_prop_887p.R │ ├── sampling_10k_prop_88p/ │ │ └── sampling_10k_prop_88p.R │ ├── sampling_5k_prop_50p/ │ │ └── sampling_5k_prop_50p.R │ ├── sampling_X_prop_56p/ │ │ └── sampling_X_prop_56p.R │ ├── sulphStudyFindPValueUsingNormalApprox/ │ │ └── sulphStudyFindPValueUsingNormalApprox.R │ └── whyWeWantPValue/ │ └── whyWeWantPValue.R ├── ch_inference_for_means/ │ ├── TeX/ │ │ ├── ch_inference_for_means.tex │ │ ├── comparing_many_means_with_anova.tex │ │ ├── difference_of_two_means.tex │ │ ├── one-sample_means_with_the_t-distribution.tex │ │ ├── paired_data.tex │ │ ├── power_calculations_for_a_difference_of_means.tex │ │ └── review_exercises.tex │ └── figures/ │ ├── babySmokePlotOfTwoGroupsToExamineSkew/ │ │ └── babySmokePlotOfTwoGroupsToExamineSkew.R │ ├── cbrRunTimesMenWomen/ │ │ └── cbrRunTimesMenWomen.R │ ├── classData/ │ │ └── classData.R │ ├── distOfDiffOfSampleMeansForBWOfBabySmokeData/ │ │ └── distOfDiffOfSampleMeansForBWOfBabySmokeData.R │ ├── eoce/ │ │ ├── adult_heights/ │ │ │ └── adult_heights.R │ │ ├── age_at_first_marriage_intro/ │ │ │ └── age_at_first_marriage_intro.R │ │ ├── anova_exercise_1/ │ │ │ └── anova_exercise_1.R │ │ ├── chick_wts_anova/ │ │ │ └── chick_wts.R │ │ ├── chick_wts_linseed_horsebean/ │ │ │ └── chick_wts.R │ │ ├── child_care_hours/ │ │ │ ├── child_care_hours.R │ │ │ └── china.csv │ │ ├── cleveland_sacramento/ │ │ │ └── cleveland_sacramento.R │ │ ├── college_credits/ │ │ │ └── college_credits.R │ │ ├── diamonds_1/ │ │ │ └── diamonds.R │ │ ├── exclusive_relationships/ │ │ │ ├── exclusive_relationships.R │ │ │ └── survey.csv │ │ ├── friday_13th_accident/ │ │ │ └── friday_13th_accident.R │ │ ├── friday_13th_traffic/ │ │ │ └── friday_13th_traffic.R │ │ ├── fuel_eff_city/ │ │ │ ├── fuel_eff.csv │ │ │ └── fuel_eff_city.R │ │ ├── fuel_eff_hway/ │ │ │ ├── fuel_eff.csv │ │ │ └── fuel_eff_hway.R │ │ ├── gifted_children/ │ │ │ └── gifted_children.R │ │ ├── gifted_children_ht/ │ │ │ └── gifted_children_ht.R │ │ ├── gifted_children_intro/ │ │ │ └── gifted_children_intro.R │ │ ├── global_warming_v2_1/ │ │ │ └── global_warming_v2_1.R │ │ ├── gpa_major/ │ │ │ ├── gpa_major.R │ │ │ └── survey.csv │ │ ├── hs_beyond_1/ │ │ │ └── hs_beyond.R │ │ ├── oscar_winners/ │ │ │ └── oscar_winners.R │ │ ├── prison_isolation_T/ │ │ │ ├── prison_isolation.R │ │ │ └── prison_isolation.csv │ │ ├── prius_fuel_efficiency/ │ │ │ └── prius_fuel_efficiency.R │ │ ├── prius_fuel_efficiency_update/ │ │ │ └── prius_fuel_efficiency.R │ │ ├── t_distribution/ │ │ │ └── t_distribution.R │ │ ├── torque_on_rusty_bolt/ │ │ │ ├── torque_on_rusty_bolt (Autosaved).R │ │ │ └── torque_on_rusty_bolt.R │ │ └── work_hours_education/ │ │ ├── gss2010.Rda │ │ └── work_hours_education.R │ ├── fDist2And423/ │ │ └── fDist2And423.R │ ├── fDist3And323/ │ │ └── fDist3And323.R │ ├── mlbANOVA/ │ │ └── mlbANOVA.R │ ├── outliers_and_ss_condition/ │ │ └── outliers_and_ss_condition.R │ ├── pValueOfTwoTailAreaOfExamVersionsWhereDFIs26/ │ │ └── pValueOfTwoTailAreaOfExamVersionsWhereDFIs26.R │ ├── pValueShownForSATHTOfOver100PtGain/ │ │ └── pValueShownForSATHTOfOver100PtGain.R │ ├── power_best_sample_size/ │ │ └── power_best_sample_size.R │ ├── power_curve/ │ │ └── power_curve.R │ ├── power_null_0_0-76/ │ │ └── power_null_0_0-76.R │ ├── power_null_0_1-7/ │ │ └── power_null_0_1-7.R │ ├── rissosDolphin/ │ │ └── ReadMe.txt │ ├── run10SampTimeHistogram/ │ │ └── run10SampTimeHistogram.R │ ├── satImprovementHTDataHistogram/ │ │ └── satImprovementHTDataHistogram.R │ ├── stemCellTherapyForHearts/ │ │ └── stemCellTherapyForHearts.R │ ├── stemCellTherapyForHeartsPValue/ │ │ └── stemCellTherapyForHeartsPValue.R │ ├── tDistAppendixTwoEx/ │ │ └── tDistAppendixTwoEx.R │ ├── tDistCompareToNormalDist/ │ │ └── tDistCompareToNormalDist.R │ ├── tDistConvergeToNormalDist/ │ │ └── tDistConvergeToNormalDist.R │ ├── tDistDF18LeftTail2Point10/ │ │ └── tDistDF18LeftTail2Point10.R │ ├── tDistDF20RightTail1Point65/ │ │ └── tDistDF20RightTail1Point65.R │ ├── textbooksF18/ │ │ ├── diffInTextbookPricesF18.R │ │ └── textbooksF18HTTails.R │ ├── textbooksS10/ │ │ ├── diffInTextbookPricesS10.R │ │ └── textbooksS10HTTails.R │ ├── textbooks_scatter/ │ │ └── textbooks_scatter.R │ └── toyANOVA/ │ └── toyANOVA.R ├── ch_inference_for_props/ │ ├── TeX/ │ │ ├── ch_inference_for_props.tex │ │ ├── difference_of_two_proportions.tex │ │ ├── inference_for_a_single_proportion.tex │ │ ├── review_exercises.tex │ │ ├── testing_for_goodness_of_fit_using_chi-square.tex │ │ └── testing_for_independence_in_two-way_tables.tex │ └── figures/ │ ├── arrayOfFigureAreasForChiSquareDistribution/ │ │ ├── chiSquareAreaAbove10WithDF4/ │ │ │ └── chiSquareAreaAbove10WithDF4.R │ │ ├── chiSquareAreaAbove11Point7WithDF7/ │ │ │ └── chiSquareAreaAbove11Point7WithDF7.R │ │ ├── chiSquareAreaAbove4Point3WithDF2/ │ │ │ └── chiSquareAreaAbove4WithDF2.R │ │ ├── chiSquareAreaAbove5Point1WithDF5/ │ │ │ └── chiSquareAreaAbove5Point1WithDF5.R │ │ ├── chiSquareAreaAbove6Point25WithDF3/ │ │ │ └── chiSquareAreaAbove6Point25WithDF3.R │ │ └── chiSquareAreaAbove9Point21WithDF3/ │ │ └── chiSquareAreaAbove9Point21WithDF3.R │ ├── bladesTwoSampleHTPValueQC/ │ │ └── bladesTwoSampleHTPValueQC.R │ ├── chiSquareDistributionWithInceasingDF/ │ │ └── chiSquareDistributionWithInceasingDF.R │ ├── eoce/ │ │ ├── assisted_reproduction_one_sample_randomization/ │ │ │ └── assisted_reproduction_one_sample_randomization.R │ │ ├── egypt_revolution_one_sample_randomization/ │ │ │ └── egypt_revolution_one_sample_randomization.R │ │ ├── social_experiment_two_sample_randomization/ │ │ │ └── social_experiment_two_sample_randomization.R │ │ └── yawning_two_sample_randomization/ │ │ └── yawning_two_sample_randomization.R │ ├── geomFitEvaluationForSP500/ │ │ ├── geomFitEvaluationForSP500.R │ │ └── sp500_1950_2018.csv │ ├── geomFitPValueForSP500/ │ │ └── geomFitPValueForSP500.R │ ├── iPodChiSqTail/ │ │ └── iPodChiSqTail.R │ ├── jurorHTPValueShown/ │ │ └── jurorHTPValueShown.R │ ├── mammograms/ │ │ └── mammograms.R │ ├── paydayCC_norm_pvalue/ │ │ └── paydayCC_norm_pvalue.R │ └── quadcopter/ │ └── quadcopter_attribution.txt ├── ch_intro_to_data/ │ ├── TeX/ │ │ ├── case_study_using_stents_to_prevent_strokes.tex │ │ ├── ch_intro_to_data.tex │ │ ├── data_basics.tex │ │ ├── experiments.tex │ │ ├── review_exercises.tex │ │ └── sampling_principles_and_strategies.tex │ └── figures/ │ ├── county_fed_spendVsPoverty/ │ │ └── county_fed_spendVsPoverty.R │ ├── eoce/ │ │ ├── air_quality_durham/ │ │ │ ├── air_quality_durham.R │ │ │ └── pm25_2011_durham.csv │ │ ├── airports/ │ │ │ ├── airports.R │ │ │ └── data/ │ │ │ └── cb_2013_us_state_20m/ │ │ │ ├── cb_2013_us_state_20m.dbf │ │ │ ├── cb_2013_us_state_20m.prj │ │ │ ├── cb_2013_us_state_20m.shp │ │ │ ├── cb_2013_us_state_20m.shp.iso.xml │ │ │ ├── cb_2013_us_state_20m.shp.xml │ │ │ ├── cb_2013_us_state_20m.shx │ │ │ └── state_20m.ea.iso.xml │ │ ├── antibiotic_use_children/ │ │ │ └── antibiotic_use_children.R │ │ ├── association_plots/ │ │ │ └── association_plots.R │ │ ├── cleveland_sacramento/ │ │ │ └── cleveland_sacramento.R │ │ ├── county_commute_times/ │ │ │ ├── countyMap.R │ │ │ └── county_commute_times.R │ │ ├── county_hispanic_pop/ │ │ │ ├── countyMap.R │ │ │ └── county_hispanic_pop.R │ │ ├── county_income_education/ │ │ │ └── county_income_education.R │ │ ├── dream_act_mosaic/ │ │ │ └── dream_act_mosaic.R │ │ ├── estimate_mean_median_simple/ │ │ │ └── estimate_mean_median_simple.R │ │ ├── gpa_study_hours/ │ │ │ ├── gpa_study_hours.R │ │ │ ├── gpa_study_hours.csv │ │ │ └── gpa_study_hours.rda │ │ ├── hist_box_match/ │ │ │ └── hist_box_match.R │ │ ├── hist_vs_box/ │ │ │ └── hist_vs_box.R │ │ ├── income_coffee_shop/ │ │ │ └── income_coffee_shop.R │ │ ├── infant_mortality_rel_freq/ │ │ │ ├── factbook.rda │ │ │ └── infant_mortality.R │ │ ├── internet_life_expactancy/ │ │ │ ├── factbook.rda │ │ │ └── internet_life_expactancy.R │ │ ├── internet_life_expectancy/ │ │ │ ├── factbook.rda │ │ │ └── internet_life_expectancy.R │ │ ├── mammal_life_spans/ │ │ │ └── mammal_life_spans.R │ │ ├── marathon_winners/ │ │ │ └── marathon_winners.R │ │ ├── office_productivity/ │ │ │ └── office_productivity.R │ │ ├── oscar_winners/ │ │ │ └── oscar_winners.R │ │ ├── raise_taxes_mosaic/ │ │ │ └── raise_taxes_mosaic.R │ │ ├── randomization_avandia/ │ │ │ └── randomization_avandia.R │ │ ├── randomization_heart_transplants/ │ │ │ ├── inference.RData │ │ │ └── randomization_heart_transplants.R │ │ ├── reproducing_bacteria/ │ │ │ └── reproducing_bacteria.R │ │ ├── seattle_pet_names/ │ │ │ └── seattle_pet_names.R │ │ ├── stats_scores_box/ │ │ │ └── stats_scores_box.R │ │ └── unvotes/ │ │ └── unvotes.R │ ├── expResp/ │ │ └── expResp.R │ ├── figureShowingBlocking/ │ │ └── figureShowingBlocking.R │ ├── interest_rate_vs_income/ │ │ └── interest_rate_vs_loan_amount.R │ ├── interest_rate_vs_loan_amount/ │ │ └── interest_rate_vs_loan_amount.R │ ├── interest_rate_vs_loan_income_ratio/ │ │ └── interest_rate_vs_loan_income_ratio.R │ ├── loan_amount_vs_income/ │ │ └── loan_amount_vs_income.R │ ├── mnWinter/ │ │ └── ReadMe.txt │ ├── multiunitsVsOwnership/ │ │ └── multiunitsVsOwnership.R │ ├── popToSample/ │ │ ├── popToSampleGraduates.R │ │ ├── popToSubSampleGraduates.R │ │ └── surveySample.R │ ├── pop_change_v_med_income/ │ │ └── pop_change_v_med_income.R │ ├── pop_change_v_per_capita_income/ │ │ └── pop_change_v_per_capita_income.R │ ├── samplingMethodsFigure/ │ │ ├── SamplingMethodsFunctions.R │ │ ├── samplingMethodsFigure.R │ │ └── samplingMethodsFigures.R │ └── variables/ │ ├── sunCausesCancer.R │ └── variables.R ├── ch_probability/ │ ├── TeX/ │ │ ├── ch_probability.tex │ │ ├── conditional_probability.tex │ │ ├── continuous_distributions.tex │ │ ├── defining_probability.tex │ │ ├── random_variables.tex │ │ ├── review_exercises.tex │ │ └── sampling_from_a_small_population.tex │ └── figures/ │ ├── BreastCancerTreeDiagram/ │ │ ├── BreastCancerTreeDiagram.R │ │ └── Mammogram Research.txt │ ├── bookCostDist/ │ │ └── bookCostDist.R │ ├── bookWts/ │ │ └── bookWts.R │ ├── cardsDiamondFaceVenn/ │ │ └── cardsDiamondFaceVenn.R │ ├── changeInLeonardsStockPortfolioFor36Months/ │ │ └── changeinleonardsstockportfoliofor36months.R │ ├── complementOfD/ │ │ └── complementOfD.R │ ├── contBalance/ │ │ └── contBalance.R │ ├── diceSumDist/ │ │ └── diceSumDist.R │ ├── dieProp/ │ │ └── dieProp.R │ ├── disjointSets/ │ │ └── disjointSets.R │ ├── eoce/ │ │ ├── cat_weights/ │ │ │ └── cat_weights.R │ │ ├── poverty_language/ │ │ │ ├── poverty_language.R │ │ │ └── poverty_language.tiff │ │ ├── swing_voters/ │ │ │ ├── swing_voters.R │ │ │ └── swing_voters.tiff │ │ ├── tree_drawing_box_plots/ │ │ │ └── tree_drawing_box_plots.R │ │ ├── tree_exit_poll/ │ │ │ └── tree_exit_poll.R │ │ ├── tree_hiv_swaziland/ │ │ │ └── tree_hiv_swaziland.R │ │ ├── tree_lupus/ │ │ │ └── tree_lupus.R │ │ ├── tree_thrombosis/ │ │ │ └── tree_thrombosis.R │ │ └── tree_twins/ │ │ └── tree_twins.R │ ├── fdicHeightContDist/ │ │ └── fdicHeightContDist.R │ ├── fdicHeightContDistFilled/ │ │ └── fdicHeightContDistFilled.R │ ├── fdicHistograms/ │ │ ├── fdicHistograms.R │ │ └── fdicHistograms.rda │ ├── indepForRollingTwo1s/ │ │ └── indepForRollingTwo1s.R │ ├── loans_app_type_home_venn/ │ │ └── loans_app_type_home_venn.R │ ├── photoClassifyVenn/ │ │ └── photoClassifyVenn.R │ ├── smallpoxTreeDiagram/ │ │ └── smallpoxTreeDiagram.R │ ├── testTree/ │ │ └── testTree.R │ ├── treeDiagramAndPass/ │ │ └── treeDiagramAndPass.R │ ├── treeDiagramGarage/ │ │ └── treeDiagramGarage.R │ ├── usHeightsHist180185/ │ │ └── usHeightsHist180185.R │ └── usHouseholdIncomeDistBar/ │ └── usHouseholdIncomeDistBar.R ├── ch_regr_mult_and_log/ │ ├── TeX/ │ │ ├── ch_regr_mult_and_log.tex │ │ ├── checking_model_assumptions_using_graphs.tex │ │ ├── introduction_to_logistic_regression.tex │ │ ├── introduction_to_multiple_regression.tex │ │ ├── model_selection.tex │ │ ├── mult_regr_case_study.tex │ │ └── review_exercises.tex │ └── figures/ │ ├── eoce/ │ │ ├── absent_from_school_mlr/ │ │ │ └── absent_from_school_mlr.R │ │ ├── absent_from_school_model_select_backward/ │ │ │ └── absent_from_school_model_select_backward.R │ │ ├── absent_from_school_model_select_forward/ │ │ │ └── absent_from_school_model_select_forward.R │ │ ├── baby_weights_conds/ │ │ │ ├── babies.csv │ │ │ └── baby_weights_conds.R │ │ ├── baby_weights_mlr/ │ │ │ ├── babies.csv │ │ │ └── baby_weights_mlr.R │ │ ├── baby_weights_model_select_backward/ │ │ │ ├── babies.csv │ │ │ └── baby_weights_model_select_backward.R │ │ ├── baby_weights_model_select_forward/ │ │ │ ├── babies.csv │ │ │ └── baby_weights_model_select_backward.R │ │ ├── baby_weights_parity/ │ │ │ ├── babies.csv │ │ │ └── baby_weights_parity.R │ │ ├── baby_weights_smoke/ │ │ │ ├── babies.csv │ │ │ └── baby_weights_smoke.R │ │ ├── challenger_disaster_predict/ │ │ │ ├── challenger_disaster_predict.R │ │ │ └── orings.rda │ │ ├── gpa/ │ │ │ ├── gpa.R │ │ │ └── gpa_survey.csv │ │ ├── gpa_iq_conds/ │ │ │ ├── gpa_iq.csv │ │ │ └── gpa_iq_conds.R │ │ ├── log_regr_ex/ │ │ │ └── log_regr_ex.R │ │ ├── movie_returns_altogether/ │ │ │ ├── horror_movies_conds.R │ │ │ └── movie_profit.csv │ │ ├── movie_returns_by_genre/ │ │ │ ├── horror_movies_conds.R │ │ │ └── movie_profit.csv │ │ ├── possum_classification_model_select/ │ │ │ └── possum_classification_model_select.R │ │ ├── spam_filtering_model_sel/ │ │ │ └── spam_filtering_model_sel.R │ │ └── spam_filtering_predict/ │ │ └── spam_filtering_predict.R │ ├── loansDiagnostics/ │ │ └── loans_analysis.R │ ├── loansSingles/ │ │ ├── intRateVsPastBankrScatter.R │ │ └── intRateVsVerIncomeScatter.R │ ├── logisticModel/ │ │ └── logisticModel.R │ ├── logitTransformationFigureHoriz/ │ │ └── logitTransformationFigureHoriz.R │ ├── marioKartDiagnostics/ │ │ └── marioKartAnalysis.R │ └── marioKartSingle/ │ └── marioKartSingle.R ├── ch_regr_simple_linear/ │ ├── TeX/ │ │ ├── ch_regr_simple_linear.tex │ │ ├── fitting_a_line_by_least_squares_regression.tex │ │ ├── inference_for_linear_regression.tex │ │ ├── line_fitting_residuals_and_correlation.tex │ │ ├── review_exercises.tex │ │ └── types_of_outliers_in_linear_regression.tex │ └── figures/ │ ├── brushtail_possum/ │ │ └── ReadMe.txt │ ├── elmhurstPlots/ │ │ └── elmhurstScatterW2Lines.R │ ├── eoce/ │ │ ├── beer_blood_alcohol_inf/ │ │ │ ├── beer_blood_alcohol.txt │ │ │ └── beer_blood_alcohol_inf.R │ │ ├── body_measurements_hip_weight_corr_units/ │ │ │ └── body_measurements_hip_weight.R │ │ ├── body_measurements_shoulder_height_corr_units/ │ │ │ └── body_measurements_shoulder_height.R │ │ ├── body_measurements_weight_height_inf/ │ │ │ └── body_measurements_weight_height_inf.R │ │ ├── cat_body_heart_reg/ │ │ │ └── cat_body_heart_reg.R │ │ ├── coast_starlight_corr_units/ │ │ │ ├── coast_starlight.R │ │ │ └── coast_starlight.txt │ │ ├── crawling_babies_corr_units/ │ │ │ ├── crawling_babies.R │ │ │ └── crawling_babies.csv │ │ ├── exams_grades_correlation/ │ │ │ ├── exam_grades.txt │ │ │ └── exams_grades_correlation.R │ │ ├── full_lin_regr_1/ │ │ │ ├── prof_evals_beauty.csv │ │ │ └── rate_my_prof.R │ │ ├── full_lin_regr_2/ │ │ │ ├── prof_evals_beauty.csv │ │ │ └── rate_my_prof.R │ │ ├── helmet_lunch/ │ │ │ └── helmet_lunch.R │ │ ├── husbands_wives_age_inf/ │ │ │ ├── husbands_wives.txt │ │ │ └── husbands_wives_age_inf.R │ │ ├── husbands_wives_correlation/ │ │ │ ├── husbands_wives.txt │ │ │ └── husbands_wives_correlation.R │ │ ├── husbands_wives_height_inf/ │ │ │ ├── husbands_wives.txt │ │ │ └── husbands_wives_height_inf.R │ │ ├── husbands_wives_height_inf_2s/ │ │ │ ├── husbands_wives.txt │ │ │ └── husbands_wives_height_inf_2s.R │ │ ├── identify_relationships_1/ │ │ │ └── identify_relationships_1.R │ │ ├── identify_relationships_2/ │ │ │ └── identify_relationships_2.R │ │ ├── match_corr_1/ │ │ │ └── match_corr_1.R │ │ ├── match_corr_2/ │ │ │ └── match_corr_2.R │ │ ├── match_corr_3/ │ │ │ ├── match_corr_2.R │ │ │ └── match_corr_3.R │ │ ├── murders_poverty_reg/ │ │ │ ├── murders.csv │ │ │ └── murders_poverty.R │ │ ├── outliers_1/ │ │ │ └── outliers_1.R │ │ ├── outliers_2/ │ │ │ └── outliers_2.R │ │ ├── rate_my_prof/ │ │ │ ├── prof_evals_beauty.csv │ │ │ └── rate_my_prof.R │ │ ├── speed_height_gender/ │ │ │ ├── speed_height_gender.R │ │ │ └── speed_survey.csv │ │ ├── starbucks_cals_carbos/ │ │ │ ├── starbucks.csv │ │ │ └── starbucks_cals_carbos.R │ │ ├── starbucks_cals_protein/ │ │ │ ├── starbucks.csv │ │ │ └── starbucks_cals_protein.R │ │ ├── tourism_spending_reg_conds/ │ │ │ ├── tourism_spending.csv │ │ │ └── tourism_spending_reg_cond.R │ │ ├── trees_volume_height_diameter/ │ │ │ └── trees_volume_height_diameter.R │ │ ├── trends_in_residuals/ │ │ │ └── trends_in_residuals.R │ │ ├── urban_homeowners_cond/ │ │ │ ├── urban_homeowners_cond.R │ │ │ └── urban_state_data.csv │ │ ├── urban_homeowners_outlier/ │ │ │ ├── urban_homeowners_outlier.R │ │ │ └── urban_state_data.csv │ │ └── visualize_residuals/ │ │ └── visualize_residuals.R │ ├── identifyingInfluentialPoints/ │ │ └── identifyingInfluentialPoints.R │ ├── imperfLinearModel/ │ │ └── imperfLinearModel.R │ ├── marioKartNewUsed/ │ │ └── marioKartNewUsed.R │ ├── notGoodAtAllForALinearModel/ │ │ └── notGoodAtAllForALinearModel.R │ ├── outlierPlots/ │ │ └── outlierPlots.R │ ├── pValueMidtermUnemp/ │ │ └── pValueMidtermUnemp.R │ ├── perfLinearModel/ │ │ └── perfLinearModel.R │ ├── posNegCorPlots/ │ │ ├── CorrelationPlot.R │ │ ├── corForNonLinearPlots.R │ │ └── posNegCorPlots.R │ ├── sampleLinesAndResPlots/ │ │ └── sampleLinesAndResPlots.R │ ├── scattHeadLTotalL/ │ │ └── scattHeadLTotalL.R │ ├── scattHeadLTotalLLine/ │ │ └── scattHeadLTotalLLine.R │ ├── scattHeadLTotalLResidualPlot/ │ │ └── scattHeadLTotalLResidualPlot.R │ ├── scattHeadLTotalLSex/ │ │ └── scattHeadLTotalLSex.R │ ├── scattHeadLTotalLTube/ │ │ └── scattHeadLTotalLTube.R │ ├── unemploymentAndChangeInHouse/ │ │ └── unemploymentAndChangeInHouse.R │ └── whatCanGoWrongWithLinearModel/ │ ├── makeTubeAdv.R │ └── whatCanGoWrongWithLinearModel.R ├── ch_summarizing_data/ │ ├── TeX/ │ │ ├── case_study_malaria_vaccine.tex │ │ ├── ch_summarizing_data.tex │ │ ├── considering_categorical_data.tex │ │ ├── examining_numerical_data.tex │ │ └── review_exercises.tex │ └── figures/ │ ├── boxPlotLayoutNumVar/ │ │ └── boxPlotLayoutNumVar.R │ ├── carsPriceVsWeight/ │ │ └── carsPriceVsWeight.R │ ├── countyIncomeSplitByPopGain/ │ │ └── countyIncomeSplitByPopGain.R │ ├── countyIntensityMaps/ │ │ ├── countyIntensityMaps.R │ │ └── countyMap.R │ ├── county_pop_change_v_pop_transform/ │ │ └── county_pop_change_v_pop_transform.R │ ├── county_pop_transformed/ │ │ └── county_pop_transformed.R │ ├── discRandDotPlot/ │ │ └── discRandDotPlot.R │ ├── email50LinesCharacters/ │ │ └── email50LinesCharacters.R │ ├── email50LinesCharactersMod/ │ │ └── email50LinesCharactersMod.R │ ├── email50NumCharDotPlotRobustEx/ │ │ └── email50NumCharDotPlotRobustEx.R │ ├── email50NumCharHist/ │ │ └── email50NumCharHist.R │ ├── emailCharactersDotPlot/ │ │ └── emailCharactersDotPlot.R │ ├── emailNumberBarPlot/ │ │ └── emailNumberBarPlot.R │ ├── emailNumberPieChart/ │ │ └── emailNumberPieChart.R │ ├── emailSpamNumberMosaicPlot/ │ │ └── emailSpamNumberMosaicPlot.R │ ├── emailSpamNumberSegBar/ │ │ └── emailSpamNumberSegBar.R │ ├── eoce/ │ │ ├── air_quality_durham/ │ │ │ ├── air_quality_durham.R │ │ │ └── pm25_2011_durham.csv │ │ ├── antibiotic_use_children/ │ │ │ └── antibiotic_use_children.R │ │ ├── association_plots/ │ │ │ └── association_plots.R │ │ ├── cleveland_sacramento/ │ │ │ └── cleveland_sacramento.R │ │ ├── county_commute_times/ │ │ │ ├── countyMap.R │ │ │ └── county_commute_times.R │ │ ├── county_hispanic_pop/ │ │ │ ├── countyMap.R │ │ │ └── county_hispanic_pop.R │ │ ├── dream_act_mosaic/ │ │ │ └── dream_act_mosaic.R │ │ ├── estimate_mean_median_simple/ │ │ │ └── estimate_mean_median_simple.R │ │ ├── hist_box_match/ │ │ │ └── hist_box_match.R │ │ ├── hist_vs_box/ │ │ │ └── hist_vs_box.R │ │ ├── income_coffee_shop/ │ │ │ └── income_coffee_shop.R │ │ ├── infant_mortality_rel_freq/ │ │ │ ├── factbook.rda │ │ │ └── infant_mortality.R │ │ ├── mammal_life_spans/ │ │ │ └── mammal_life_spans.R │ │ ├── marathon_winners/ │ │ │ └── marathon_winners.R │ │ ├── office_productivity/ │ │ │ └── office_productivity.R │ │ ├── oscar_winners/ │ │ │ └── oscar_winners.R │ │ ├── raise_taxes_mosaic/ │ │ │ └── raise_taxes_mosaic.R │ │ ├── randomization_avandia/ │ │ │ └── randomization_avandia.R │ │ ├── randomization_heart_transplants/ │ │ │ ├── inference.RData │ │ │ └── randomization_heart_transplants.R │ │ ├── reproducing_bacteria/ │ │ │ └── reproducing_bacteria.R │ │ └── stats_scores_box/ │ │ └── stats_scores_box.R │ ├── histMLBSalaries/ │ │ └── histMLBSalaries.R │ ├── loan50IncomeHist/ │ │ └── loan50IncomeHist.R │ ├── loan50IntRateHist/ │ │ └── loan50IntRateHist.R │ ├── loan50LoanAmountHist/ │ │ └── loan50LoanAmountHist.R │ ├── loan50_amt_vs_income/ │ │ └── loan50_amt_vs_income.R │ ├── loan50_amt_vs_interest/ │ │ └── loan50_amt_vs_interest.R │ ├── loan_amount_dot_plot/ │ │ └── loan_amount_dot_plot.R │ ├── loan_app_type_home_mosaic_plot/ │ │ └── loan_app_type_home_mosaic_plot.R │ ├── loan_app_type_home_seg_bar/ │ │ └── loan_app_type_home_seg_bar.R │ ├── loan_homeownership_bar_plot/ │ │ └── loan_homeownership_bar_plot.R │ ├── loan_homeownership_pie_chart/ │ │ └── loan_homeownership_pie_chart.R │ ├── loan_int_rate_box_plot_layout/ │ │ └── loan_int_rate_box_plot_layout.R │ ├── loan_int_rate_dot_plot/ │ │ └── loan_int_rate_dot_plot.R │ ├── loan_int_rate_robust_ex/ │ │ └── loan_int_rate_robust_ex.R │ ├── malaria_rand_dot_plot/ │ │ └── malaria_rand_dot_plot.R │ ├── medianHHIncomePoverty/ │ │ └── medianHHIncomePoverty.R │ ├── sdAsRuleForEmailNumChar/ │ │ └── sdAsRuleForEmailNumChar.R │ ├── sdRuleForIncome/ │ │ └── sdRuleForIncome.R │ ├── sdRuleForIntRate/ │ │ └── sdRuleForIntRate.R │ ├── sdRuleForLoanAmount/ │ │ └── sdRuleForLoanAmount.R │ ├── severalDiffDistWithSdOf1/ │ │ └── severalDiffDistWithSdOf1.R │ ├── singleBiMultiModalPlots/ │ │ └── singleBiMultiModalPlots.R │ └── total_income_dot_plot/ │ └── total_income_dot_plot.R ├── eoce.bib ├── extraTeX/ │ ├── data/ │ │ └── data.tex │ ├── eoceSolutions/ │ │ └── eoceSolutions.tex │ ├── index/ │ │ └── index.tex │ ├── preamble/ │ │ ├── copyright.tex │ │ ├── copyright_derivative.tex │ │ ├── preface.tex │ │ ├── review_copy.tex │ │ ├── title.tex │ │ └── title_derivative.tex │ ├── style/ │ │ ├── colorsV1.tex │ │ ├── hardcover.tex │ │ ├── headers.tex │ │ ├── headers_simple.tex │ │ ├── style.tex │ │ ├── style_appendices.tex │ │ ├── style_simple.tex │ │ ├── tablet.tex │ │ └── video.tex │ └── tables/ │ ├── TeX/ │ │ ├── chiSquareTable.tex │ │ ├── tTable.tex │ │ └── zTable.tex │ ├── code/ │ │ ├── chiSquareProbTable.R │ │ └── normalProbTable.R │ └── figures/ │ ├── chiSquareTail/ │ │ └── chiSquareTail.R │ ├── normalTails/ │ │ ├── normalTails.R │ │ └── subtractingArea/ │ │ └── subtractingArea.R │ └── tTails/ │ └── tTails.R ├── fullminipage.sty ├── main.tex └── openintro-statistics.Rproj