├── .DS_Store ├── Activities ├── .DS_Store ├── Bayes │ ├── Bayes_Activities.Rmd │ ├── Bayes_Activities.html │ └── ohio.counties.csv └── Probability │ ├── Prob_Activities.Rmd │ └── Prob_Activities.html ├── ERRATA ├── Intro_ProbBayes.html ├── R Code ├── .DS_Store ├── chapter 10 │ ├── .DS_Store │ ├── data │ │ ├── .DS_Store │ │ ├── 2010_animation_ratings.csv │ │ ├── BBS_survey.csv │ │ ├── DeathHeartAttackDataNYCManhattan.csv │ │ ├── DeathHeartAttackDataNYCfull.csv │ │ ├── HWhours5schools.csv │ │ ├── KDramaData.csv │ │ ├── batting_2018.csv │ │ ├── marriage_counts.csv │ │ └── tennis_serve.csv │ └── scripts │ │ ├── .DS_Store │ │ ├── .Rhistory │ │ └── Chapter10_Script.R ├── chapter 11 │ ├── .DS_Store │ ├── data │ │ ├── .DS_Store │ │ ├── arm_height.csv │ │ ├── book_stats.csv │ │ ├── electricbills.csv │ │ ├── gas2017.csv │ │ ├── house_prices.csv │ │ ├── mcdonalds.csv │ │ ├── movies2017.csv │ │ ├── olympic_butterfly.csv │ │ ├── pythag2018.csv │ │ └── trout20.csv │ └── scripts │ │ ├── .DS_Store │ │ ├── .Rhistory │ │ └── Chapter11_Script.R ├── chapter 12 │ ├── .DS_Store │ ├── data │ │ ├── .DS_Store │ │ ├── CEsample.csv │ │ ├── ComputerPriceSample.csv │ │ ├── Cowles.csv │ │ ├── GradSchoolAdmission.csv │ │ ├── LaborParticipation.csv │ │ └── ProfessorSalary.csv │ └── scripts │ │ ├── .DS_Store │ │ ├── .Rhistory │ │ └── Chapter12.R ├── chapter 13 │ ├── .DS_Store │ ├── data │ │ ├── .DS_Store │ │ ├── Hamilton_can.csv │ │ ├── Madison_can.csv │ │ ├── ScoreData.csv │ │ ├── arm_height_missing.csv │ │ ├── fed_word_study.csv │ │ └── federalist_word_study.csv │ └── scripts │ │ ├── .DS_Store │ │ ├── .Rhistory │ │ ├── Chapter13_Script.R │ │ ├── compute_individual_regressions.R │ │ ├── get_onbase_data.R │ │ └── mlm_regression.R ├── chapter 2 │ ├── .DS_Store │ └── Chapter2_Script.R ├── chapter 3 │ └── Chapter3_Script.R ├── chapter 4 │ ├── .DS_Store │ ├── .Rhistory │ └── Chapter4_Script.R ├── chapter 5 │ ├── .DS_Store │ └── Chapter5_Script.R ├── chapter 6 │ ├── .DS_Store │ └── Chapter6_Script.R ├── chapter 7 │ ├── .DS_Store │ └── Chapter7_Script.R ├── chapter 8 │ ├── .DS_Store │ ├── data │ │ ├── .DS_Store │ │ ├── exercises │ │ │ ├── .DS_Store │ │ │ ├── pt100price.csv │ │ │ └── pt99price.csv │ │ ├── federer_time_to_serve.csv │ │ ├── sleeping_times.csv │ │ ├── taxi_fares.csv │ │ └── web_visits.csv │ └── scripts │ │ ├── .DS_Store │ │ ├── .Rhistory │ │ └── Chapter8_Script.R └── chapter 9 │ ├── .DS_Store │ ├── data │ ├── buffalo_jan.csv │ ├── buffalo_snowfall.csv │ ├── fares.csv │ └── taxi_regression.csv │ └── scripts │ ├── .DS_Store │ ├── .Rhistory │ └── Chapter9_Script.R ├── Slides ├── .DS_Store ├── markdown │ ├── .DS_Store │ ├── chapter1 │ │ ├── .DS_Store │ │ ├── chapter_1_2.Rmd │ │ ├── chapter_1_3.Rmd │ │ ├── chapter_1_4a.Rmd │ │ ├── chapter_1_4b.Rmd │ │ ├── chapter_1_5.Rmd │ │ ├── chapter_1_6a.Rmd │ │ ├── chapter_1_6b.Rmd │ │ └── figures │ │ │ ├── 10_2dicerolls.png │ │ │ ├── C1_twospinners.png │ │ │ ├── Sum_spins.pdf │ │ │ ├── ballsinbowl1.png │ │ │ ├── ballsinbowl2.png │ │ │ ├── ballsinbowl3.png │ │ │ ├── ballsinbowl4.png │ │ │ ├── spinner0.png │ │ │ ├── spinner1.png │ │ │ ├── twodice.png │ │ │ ├── venn1.png │ │ │ ├── venn2.png │ │ │ └── venn3.png │ ├── chapter10 │ │ ├── .DS_Store │ │ ├── 2010_animation_ratings.csv │ │ ├── DeathDataset.csv │ │ ├── chapter_10_1.Rmd │ │ ├── chapter_10_2.Rmd │ │ ├── chapter_10_3.Rmd │ │ └── figures │ │ │ ├── treediagram1.png │ │ │ ├── treediagram2.png │ │ │ ├── treediagram3.png │ │ │ └── treediagram4.png │ ├── chapter11 │ │ ├── .DS_Store │ │ ├── chapter_11_1.Rmd │ │ ├── chapter_11_2.Rmd │ │ ├── chapter_11_3.Rmd │ │ ├── chapter_11_4.Rmd │ │ ├── chapter_11_5.Rmd │ │ ├── chapter_11_6.Rmd │ │ ├── chapter_11_7.Rmd │ │ ├── chapter_11_8.Rmd │ │ ├── chapter_11_9.Rmd │ │ ├── figures │ │ │ ├── EDA.pdf │ │ │ ├── LR_beta0.pdf │ │ │ ├── LR_beta1.pdf │ │ │ ├── LR_post_prob.pdf │ │ │ ├── LR_pred_prob.pdf │ │ │ ├── MLR_beta1.pdf │ │ │ ├── MLR_beta1_new.pdf │ │ │ ├── MLR_expected.pdf │ │ │ ├── MLR_expected_new.pdf │ │ │ ├── MLR_expected_new.png │ │ │ ├── MLR_postdraws.pdf │ │ │ ├── MLR_postdraws_new.pdf │ │ │ ├── MLR_predicted.pdf │ │ │ ├── MLR_predicted_new.pdf │ │ │ ├── Regression_View.png │ │ │ ├── Rlogo.jpeg │ │ │ ├── Rplot03.pdf │ │ │ ├── TotalExpLastQLogSTD_TotalIncomeLastYearLogSTD_Rural.pdf │ │ │ ├── TotalExpLastQLogSTD_UrbanRural.pdf │ │ │ ├── logistic_cond_means.pdf │ │ │ ├── logisticdata.pdf │ │ │ ├── logisticprior.pdf │ │ │ ├── priorpost.pdf │ │ │ ├── priorpost_N0004G11.pdf │ │ │ ├── priorpost_N01G11.pdf │ │ │ ├── priorpost_N04G11.pdf │ │ │ ├── priorpost_N09G11.pdf │ │ │ ├── regression_beta1.pdf │ │ │ ├── regression_scatter.pdf │ │ │ ├── regression_scatter_new.pdf │ │ │ └── schmidt.pdf │ │ ├── gas2017.csv │ │ └── house_prices.csv │ ├── chapter12 │ │ ├── .DS_Store │ │ ├── chapter_12_1.Rmd │ │ ├── chapter_12_2a.Rmd │ │ ├── chapter_12_2b.Rmd │ │ ├── chapter_12_2c.Rmd │ │ ├── chapter_12_3a.Rmd │ │ ├── chapter_12_3b.Rmd │ │ ├── chapter_12_3c.Rmd │ │ └── figures │ │ │ ├── LR_beta0.png │ │ │ ├── LR_beta1.png │ │ │ ├── LR_post_prob.png │ │ │ ├── LR_pred_prob.png │ │ │ ├── MLR_beta1_new.png │ │ │ ├── MLR_expected_new.png │ │ │ ├── MLR_postdraws_new.png │ │ │ ├── MLR_predicted_new.png │ │ │ ├── logistic_cond_means.png │ │ │ ├── logisticdata.png │ │ │ ├── logisticprior.png │ │ │ ├── regression_scatter_new.png │ │ │ └── schmidt.png │ ├── chapter13 │ │ ├── .DS_Store │ │ ├── chapter_13_1.Rmd │ │ ├── chapter_13_2.Rmd │ │ ├── chapter_13_3.Rmd │ │ ├── chapter_13_4_5.Rmd │ │ ├── chapter_13_6.Rmd │ │ ├── chapter_13_7.Rmd │ │ └── figures │ │ │ ├── .DS_Store │ │ │ ├── ClassificationPlot.png │ │ │ ├── LCM_post3.png │ │ │ ├── ScorePlotText.png │ │ │ ├── hamilton_post1.png │ │ │ ├── hamilton_pp1.png │ │ │ ├── hamilton_pp2.png │ │ │ ├── meantrajectory.png │ │ │ ├── phelps1.png │ │ │ ├── threevarplot.png │ │ │ ├── traj_all.png │ │ │ ├── treediagram.png │ │ │ ├── two_authors_can.png │ │ │ ├── two_authors_many.png │ │ │ ├── two_authors_post2.png │ │ │ ├── twoplayers.png │ │ │ ├── utley1.png │ │ │ └── utley2.png │ ├── chapter2 │ │ ├── .DS_Store │ │ ├── chapter2 │ │ │ ├── Rlogo.jpeg │ │ │ ├── Rlogo.png │ │ │ ├── Spinners_prior.pdf │ │ │ ├── bayes1.png │ │ │ ├── bowlspinner.png │ │ │ ├── chooseballs.png │ │ │ ├── chooseballs2.png │ │ │ ├── dinners.png │ │ │ ├── fourspinner.pdf │ │ │ ├── fourspinners.pdf │ │ │ ├── objects.png │ │ │ ├── objects2.png │ │ │ ├── objects3.png │ │ │ ├── objects4.png │ │ │ ├── objects5.png │ │ │ ├── priorpost.pdf │ │ │ ├── spinnerplot.pdf │ │ │ ├── tree5.png │ │ │ ├── tree6.png │ │ │ └── twospinners.png │ │ ├── chapter_2_2.Rmd │ │ ├── chapter_2_3.Rmd │ │ ├── chapter_2_4.Rmd │ │ ├── chapter_2_5.Rmd │ │ ├── chapter_2_6.Rmd │ │ └── chapter_2_7.Rmd │ ├── chapter3 │ │ ├── .DS_Store │ │ ├── chapter3 │ │ │ ├── Rlogo.jpeg │ │ │ ├── Rlogo.png │ │ │ ├── Spinners_prior.png │ │ │ ├── bellshape.png │ │ │ ├── bindist.png │ │ │ ├── bowlspinner.png │ │ │ ├── discrete1.pdf │ │ │ ├── discrete2.pdf │ │ │ ├── fourspinners.png │ │ │ ├── galton1.png │ │ │ ├── galton2.png │ │ │ ├── histogram2.pdf │ │ │ ├── nb1.png │ │ │ ├── newtree.png │ │ │ ├── priorpost.png │ │ │ ├── spinner7.png │ │ │ ├── spinner9.png │ │ │ ├── spinner99.png │ │ │ ├── spinnerplot.png │ │ │ ├── tree5.png │ │ │ ├── tree6.png │ │ │ ├── twobinomials.pdf │ │ │ ├── twospinners2.png │ │ │ └── twospinners3.png │ │ ├── chapter_3_1.Rmd │ │ ├── chapter_3_2.Rmd │ │ ├── chapter_3_3.Rmd │ │ ├── chapter_3_4.Rmd │ │ ├── chapter_3_5_3_6.Rmd │ │ ├── chapter_3_7.Rmd │ │ ├── chapter_3_8.Rmd │ │ └── chapter_3_9.Rmd │ ├── chapter4 │ │ ├── .DS_Store │ │ ├── chapter_4_11.Rmd │ │ ├── chapter_4_2.Rmd │ │ ├── chapter_4_3.Rmd │ │ ├── chapter_4_4.Rmd │ │ ├── chapter_4_5.Rmd │ │ ├── chapter_4_6-4.10.Rmd │ │ └── figures │ │ │ ├── bellshape.png │ │ │ ├── discrete1.png │ │ │ ├── discrete2.png │ │ │ ├── galton1.png │ │ │ ├── galton2.png │ │ │ ├── nb1.png │ │ │ ├── spinner7.png │ │ │ ├── spinner9.png │ │ │ ├── spinner99.png │ │ │ └── twobinomials.png │ ├── chapter5 │ │ ├── .DS_Store │ │ ├── chapter_5_2.Rmd │ │ ├── chapter_5_3.Rmd │ │ ├── chapter_5_4.Rmd │ │ ├── chapter_5_6.Rmd │ │ ├── chapter_5_7.Rmd │ │ ├── chapter_5_8.Rmd │ │ ├── chapter_5_9.Rmd │ │ └── figures │ │ │ ├── binormal.png │ │ │ ├── chestmeasurements.png │ │ │ ├── continuous0.png │ │ │ ├── continuous1.png │ │ │ ├── continuous10.png │ │ │ ├── continuous11.png │ │ │ ├── continuous12.png │ │ │ ├── continuous2.png │ │ │ ├── continuous3.png │ │ │ ├── continuous4.png │ │ │ ├── continuous5.png │ │ │ ├── continuous6.png │ │ │ ├── continuous7.png │ │ │ ├── continuous9.png │ │ │ ├── fourplots.png │ │ │ ├── fourplots2.png │ │ │ ├── grandma1.png │ │ │ ├── grandma2.png │ │ │ ├── milesfromhome.png │ │ │ ├── milesfromhome2.png │ │ │ ├── newnormal1.png │ │ │ ├── newnormal2.png │ │ │ ├── newnormal3.png │ │ │ ├── newnormal4.png │ │ │ ├── samplemeans.png │ │ │ ├── samplemeans2.png │ │ │ ├── samplemeans3.png │ │ │ └── samplemeans4.png │ ├── chapter6 │ │ ├── .DS_Store │ │ ├── chapter_6_1a.Rmd │ │ ├── chapter_6_1b.Rmd │ │ ├── chapter_6_1c.Rmd │ │ ├── chapter_6_2.Rmd │ │ ├── chapter_6_3a.Rmd │ │ ├── chapter_6_3b.Rmd │ │ ├── chapter_6_4.Rmd │ │ ├── chapter_6_5.Rmd │ │ ├── chapter_6_6.Rmd │ │ └── figures │ │ │ ├── Binorm_scatter.png │ │ │ ├── Cont2_a.png │ │ │ ├── Cont2_b.png │ │ │ ├── beta66.png │ │ │ ├── binormals.png │ │ │ └── bivariate1.png │ ├── chapter7 │ │ ├── chapter_7_1.Rmd │ │ ├── chapter_7_2.Rmd │ │ ├── chapter_7_3.Rmd │ │ ├── chapter_7_4.Rmd │ │ ├── chapter_7_5.Rmd │ │ ├── chapter_7_6.Rmd │ │ └── figures │ │ │ ├── 4Svalues.pdf │ │ │ ├── 4Svalues_new.pdf │ │ │ ├── 4Svalues_new.png │ │ │ ├── Beta-priors.pdf │ │ │ ├── Beta-priors.png │ │ │ ├── ChooseBeta1.pdf │ │ │ ├── ChooseBeta1_new.pdf │ │ │ ├── ChooseBeta1_new.png │ │ │ ├── Normalprior.pdf │ │ │ ├── Postpred.pdf │ │ │ ├── Predictive_dining.pdf │ │ │ ├── Predictive_dining.png │ │ │ ├── RedBallProb_prob.png │ │ │ ├── RedBallProp_prob.pdf │ │ │ ├── Rlogo.jpeg │ │ │ ├── Spinner_bar_graph.pdf │ │ │ ├── Spinner_distribution.pdf │ │ │ ├── Spinners_prior.pdf │ │ │ ├── Spinners_prior.png │ │ │ ├── betalogitpostsim.pdf │ │ │ ├── betapost1.pdf │ │ │ ├── betapost1.png │ │ │ ├── betapost2.pdf │ │ │ ├── betapost2.png │ │ │ ├── betapostsim.pdf │ │ │ ├── betapredict.pdf │ │ │ ├── betapriorpost.pdf │ │ │ ├── betapriorpost.png │ │ │ ├── betaprob1.pdf │ │ │ ├── betaprob1.png │ │ │ ├── betaprob2.pdf │ │ │ ├── betaprob2.png │ │ │ ├── betaprob3.pdf │ │ │ ├── betaprob3.png │ │ │ ├── datahead.png │ │ │ ├── fourspinners.pdf │ │ │ ├── fourspinners.png │ │ │ ├── normalprior1.pdf │ │ │ ├── normalpriorpost.pdf │ │ │ ├── normalpriorpost2.pdf │ │ │ ├── predcheck1.pdf │ │ │ ├── predcheck1.png │ │ │ ├── predcheck2.pdf │ │ │ ├── predcheck2.png │ │ │ ├── prior.pdf │ │ │ ├── prior.png │ │ │ ├── priorpost.pdf │ │ │ ├── priorpost2.pdf │ │ │ ├── priorpost2.png │ │ │ ├── spinnerplot.pdf │ │ │ ├── spinnerplot.png │ │ │ ├── two_predictive_dist.pdf │ │ │ ├── two_predictive_dist.png │ │ │ └── twonormalpriors.pdf │ ├── chapter8 │ │ ├── .DS_Store │ │ ├── chapter_8_2.Rmd │ │ ├── chapter_8_3.Rmd │ │ ├── chapter_8_4.Rmd │ │ ├── chapter_8_5.Rmd │ │ ├── chapter_8_6.Rmd │ │ ├── chapter_8_7.Rmd │ │ └── figures │ │ │ ├── .DS_Store │ │ │ ├── normalcurves.png │ │ │ └── priorpost.png │ └── chapter9 │ │ ├── .DS_Store │ │ ├── chapter_9.2.Rmd │ │ ├── chapter_9.3a.Rmd │ │ ├── chapter_9.3b.Rmd │ │ ├── chapter_9.4.Rmd │ │ ├── chapter_9.5.Rmd │ │ ├── chapter_9.6.Rmd │ │ ├── chapter_9.7.Rmd │ │ ├── chapter_9.7a.Rmd │ │ ├── chapter_9.7b.Rmd │ │ └── figures │ │ ├── cauchypost.png │ │ ├── jags1a.png │ │ ├── jags1b.png │ │ ├── jags4.png │ │ ├── markovchainrun.png │ │ ├── mcmc1.png │ │ ├── mcmc2.png │ │ ├── mcmc4.png │ │ ├── mcmc5.png │ │ ├── mcmc6.png │ │ ├── mcmc7.png │ │ ├── mcmc8.png │ │ ├── mcmc9.png │ │ ├── ppcheck1.png │ │ ├── ppcheck2.png │ │ ├── randomwalk.png │ │ └── showmetrop.png └── pdf │ ├── .DS_Store │ ├── All_Chapter_Slides.zip │ ├── chapter1 │ ├── .DS_Store │ ├── chapter_1_2.pdf │ ├── chapter_1_3.pdf │ ├── chapter_1_4a.pdf │ ├── chapter_1_4b.pdf │ ├── chapter_1_5.pdf │ ├── chapter_1_6a.pdf │ ├── chapter_1_6b.pdf │ └── figures │ │ ├── 10_2dicerolls.png │ │ ├── C1_twospinners.png │ │ ├── Sum_spins.pdf │ │ ├── ballsinbowl1.png │ │ ├── ballsinbowl2.png │ │ ├── ballsinbowl3.png │ │ ├── ballsinbowl4.png │ │ ├── spinner0.png │ │ ├── spinner1.png │ │ ├── twodice.png │ │ ├── venn1.png │ │ ├── venn2.png │ │ └── venn3.png │ ├── chapter10 │ ├── .DS_Store │ ├── .Rhistory │ ├── chapter_10_1.pdf │ ├── chapter_10_2.pdf │ └── chapter_10_3.pdf │ ├── chapter11 │ ├── .DS_Store │ ├── .Rhistory │ ├── chapter_11_1.pdf │ ├── chapter_11_2.pdf │ ├── chapter_11_3.pdf │ ├── chapter_11_4.pdf │ ├── chapter_11_5.pdf │ ├── chapter_11_6.pdf │ ├── chapter_11_7.pdf │ ├── chapter_11_8.pdf │ └── chapter_11_9.pdf │ ├── chapter12 │ ├── .DS_Store │ ├── chapter_12_1.pdf │ ├── chapter_12_2a.pdf │ ├── chapter_12_2b.pdf │ ├── chapter_12_2c.pdf │ ├── chapter_12_3a.pdf │ ├── chapter_12_3b.pdf │ └── chapter_12_3c.pdf │ ├── chapter13 │ ├── .DS_Store │ ├── chapter_13_1.pdf │ ├── chapter_13_2.pdf │ ├── chapter_13_3.pdf │ ├── chapter_13_4_5.pdf │ ├── chapter_13_6.pdf │ └── chapter_13_7.pdf │ ├── chapter2 │ ├── .DS_Store │ ├── chapter_2_2.pdf │ ├── chapter_2_3.pdf │ ├── chapter_2_4.pdf │ ├── chapter_2_5.pdf │ ├── chapter_2_6.pdf │ └── chapter_2_7.pdf │ ├── chapter3 │ ├── .DS_Store │ ├── chapter_3_1.pdf │ ├── chapter_3_2.pdf │ ├── chapter_3_3.pdf │ ├── chapter_3_4.pdf │ ├── chapter_3_5_3_6.pdf │ ├── chapter_3_7.pdf │ ├── chapter_3_8.pdf │ └── chapter_3_9.pdf │ ├── chapter4 │ ├── .DS_Store │ ├── chapter_4_11.pdf │ ├── chapter_4_2.pdf │ ├── chapter_4_3.pdf │ ├── chapter_4_4.pdf │ ├── chapter_4_5.pdf │ └── chapter_4_6-4.10.pdf │ ├── chapter5 │ ├── .DS_Store │ ├── chapter_5_2.pdf │ ├── chapter_5_3.pdf │ ├── chapter_5_4.pdf │ ├── chapter_5_6.pdf │ ├── chapter_5_7.pdf │ ├── chapter_5_8.pdf │ └── chapter_5_9.pdf │ ├── chapter6 │ ├── .DS_Store │ ├── chapter_6_1a.pdf │ ├── chapter_6_1b.pdf │ ├── chapter_6_1c.pdf │ ├── chapter_6_2.pdf │ ├── chapter_6_3a.pdf │ ├── chapter_6_3b.pdf │ ├── chapter_6_4.pdf │ ├── chapter_6_5.pdf │ └── chapter_6_6.pdf │ ├── chapter7 │ ├── .DS_Store │ ├── chapter_7_1.pdf │ ├── chapter_7_2.pdf │ ├── chapter_7_3.pdf │ ├── chapter_7_4.pdf │ ├── chapter_7_5.pdf │ └── chapter_7_6.pdf │ ├── chapter8 │ ├── .DS_Store │ ├── chapter_8_2.pdf │ ├── chapter_8_3.pdf │ ├── chapter_8_4.pdf │ ├── chapter_8_5.pdf │ ├── chapter_8_6.pdf │ └── chapter_8_7.pdf │ └── chapter9 │ ├── .DS_Store │ ├── chapter_9.2.pdf │ ├── chapter_9.3a.pdf │ ├── chapter_9.3b.pdf │ ├── chapter_9.4.pdf │ ├── chapter_9.6.pdf │ ├── chapter_9.7.pdf │ ├── chapter_9.7a.pdf │ └── chapter_9.7b.pdf ├── _config.yml ├── index.html └── index.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/.DS_Store -------------------------------------------------------------------------------- /Activities/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Activities/.DS_Store -------------------------------------------------------------------------------- /Activities/Bayes/Bayes_Activities.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Activities/Bayes/Bayes_Activities.Rmd -------------------------------------------------------------------------------- /Activities/Bayes/Bayes_Activities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Activities/Bayes/Bayes_Activities.html -------------------------------------------------------------------------------- /Activities/Bayes/ohio.counties.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Activities/Bayes/ohio.counties.csv -------------------------------------------------------------------------------- /Activities/Probability/Prob_Activities.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Activities/Probability/Prob_Activities.Rmd -------------------------------------------------------------------------------- /Activities/Probability/Prob_Activities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Activities/Probability/Prob_Activities.html -------------------------------------------------------------------------------- /ERRATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/ERRATA -------------------------------------------------------------------------------- /Intro_ProbBayes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Intro_ProbBayes.html -------------------------------------------------------------------------------- /R Code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/.DS_Store -------------------------------------------------------------------------------- /R Code/chapter 10/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 10/.DS_Store -------------------------------------------------------------------------------- /R Code/chapter 10/data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 10/data/.DS_Store -------------------------------------------------------------------------------- /R Code/chapter 10/data/2010_animation_ratings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 10/data/2010_animation_ratings.csv -------------------------------------------------------------------------------- /R Code/chapter 10/data/BBS_survey.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 10/data/BBS_survey.csv -------------------------------------------------------------------------------- /R Code/chapter 10/data/DeathHeartAttackDataNYCManhattan.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 10/data/DeathHeartAttackDataNYCManhattan.csv -------------------------------------------------------------------------------- /R Code/chapter 10/data/DeathHeartAttackDataNYCfull.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 10/data/DeathHeartAttackDataNYCfull.csv -------------------------------------------------------------------------------- /R Code/chapter 10/data/HWhours5schools.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 10/data/HWhours5schools.csv -------------------------------------------------------------------------------- /R Code/chapter 10/data/KDramaData.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 10/data/KDramaData.csv -------------------------------------------------------------------------------- /R Code/chapter 10/data/batting_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 10/data/batting_2018.csv -------------------------------------------------------------------------------- /R Code/chapter 10/data/marriage_counts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 10/data/marriage_counts.csv -------------------------------------------------------------------------------- /R Code/chapter 10/data/tennis_serve.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 10/data/tennis_serve.csv -------------------------------------------------------------------------------- /R Code/chapter 10/scripts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 10/scripts/.DS_Store -------------------------------------------------------------------------------- /R Code/chapter 10/scripts/.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 10/scripts/.Rhistory -------------------------------------------------------------------------------- /R Code/chapter 10/scripts/Chapter10_Script.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 10/scripts/Chapter10_Script.R -------------------------------------------------------------------------------- /R Code/chapter 11/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 11/.DS_Store -------------------------------------------------------------------------------- /R Code/chapter 11/data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 11/data/.DS_Store -------------------------------------------------------------------------------- /R Code/chapter 11/data/arm_height.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 11/data/arm_height.csv -------------------------------------------------------------------------------- /R Code/chapter 11/data/book_stats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 11/data/book_stats.csv -------------------------------------------------------------------------------- /R Code/chapter 11/data/electricbills.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 11/data/electricbills.csv -------------------------------------------------------------------------------- /R Code/chapter 11/data/gas2017.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 11/data/gas2017.csv -------------------------------------------------------------------------------- /R Code/chapter 11/data/house_prices.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 11/data/house_prices.csv -------------------------------------------------------------------------------- /R Code/chapter 11/data/mcdonalds.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 11/data/mcdonalds.csv -------------------------------------------------------------------------------- /R Code/chapter 11/data/movies2017.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 11/data/movies2017.csv -------------------------------------------------------------------------------- /R Code/chapter 11/data/olympic_butterfly.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 11/data/olympic_butterfly.csv -------------------------------------------------------------------------------- /R Code/chapter 11/data/pythag2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 11/data/pythag2018.csv -------------------------------------------------------------------------------- /R Code/chapter 11/data/trout20.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 11/data/trout20.csv -------------------------------------------------------------------------------- /R Code/chapter 11/scripts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 11/scripts/.DS_Store -------------------------------------------------------------------------------- /R Code/chapter 11/scripts/.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 11/scripts/.Rhistory -------------------------------------------------------------------------------- /R Code/chapter 11/scripts/Chapter11_Script.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 11/scripts/Chapter11_Script.R -------------------------------------------------------------------------------- /R Code/chapter 12/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 12/.DS_Store -------------------------------------------------------------------------------- /R Code/chapter 12/data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 12/data/.DS_Store -------------------------------------------------------------------------------- /R Code/chapter 12/data/CEsample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 12/data/CEsample.csv -------------------------------------------------------------------------------- /R Code/chapter 12/data/ComputerPriceSample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 12/data/ComputerPriceSample.csv -------------------------------------------------------------------------------- /R Code/chapter 12/data/Cowles.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 12/data/Cowles.csv -------------------------------------------------------------------------------- /R Code/chapter 12/data/GradSchoolAdmission.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 12/data/GradSchoolAdmission.csv -------------------------------------------------------------------------------- /R Code/chapter 12/data/LaborParticipation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 12/data/LaborParticipation.csv -------------------------------------------------------------------------------- /R Code/chapter 12/data/ProfessorSalary.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 12/data/ProfessorSalary.csv -------------------------------------------------------------------------------- /R Code/chapter 12/scripts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 12/scripts/.DS_Store -------------------------------------------------------------------------------- /R Code/chapter 12/scripts/.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 12/scripts/.Rhistory -------------------------------------------------------------------------------- /R Code/chapter 12/scripts/Chapter12.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 12/scripts/Chapter12.R -------------------------------------------------------------------------------- /R Code/chapter 13/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 13/.DS_Store -------------------------------------------------------------------------------- /R Code/chapter 13/data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 13/data/.DS_Store -------------------------------------------------------------------------------- /R Code/chapter 13/data/Hamilton_can.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 13/data/Hamilton_can.csv -------------------------------------------------------------------------------- /R Code/chapter 13/data/Madison_can.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 13/data/Madison_can.csv -------------------------------------------------------------------------------- /R Code/chapter 13/data/ScoreData.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 13/data/ScoreData.csv -------------------------------------------------------------------------------- /R Code/chapter 13/data/arm_height_missing.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 13/data/arm_height_missing.csv -------------------------------------------------------------------------------- /R Code/chapter 13/data/fed_word_study.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 13/data/fed_word_study.csv -------------------------------------------------------------------------------- /R Code/chapter 13/data/federalist_word_study.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 13/data/federalist_word_study.csv -------------------------------------------------------------------------------- /R Code/chapter 13/scripts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 13/scripts/.DS_Store -------------------------------------------------------------------------------- /R Code/chapter 13/scripts/.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 13/scripts/.Rhistory -------------------------------------------------------------------------------- /R Code/chapter 13/scripts/Chapter13_Script.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 13/scripts/Chapter13_Script.R -------------------------------------------------------------------------------- /R Code/chapter 13/scripts/compute_individual_regressions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 13/scripts/compute_individual_regressions.R -------------------------------------------------------------------------------- /R Code/chapter 13/scripts/get_onbase_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 13/scripts/get_onbase_data.R -------------------------------------------------------------------------------- /R Code/chapter 13/scripts/mlm_regression.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 13/scripts/mlm_regression.R -------------------------------------------------------------------------------- /R Code/chapter 2/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 2/.DS_Store -------------------------------------------------------------------------------- /R Code/chapter 2/Chapter2_Script.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 2/Chapter2_Script.R -------------------------------------------------------------------------------- /R Code/chapter 3/Chapter3_Script.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 3/Chapter3_Script.R -------------------------------------------------------------------------------- /R Code/chapter 4/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 4/.DS_Store -------------------------------------------------------------------------------- /R Code/chapter 4/.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 4/.Rhistory -------------------------------------------------------------------------------- /R Code/chapter 4/Chapter4_Script.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 4/Chapter4_Script.R -------------------------------------------------------------------------------- /R Code/chapter 5/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 5/.DS_Store -------------------------------------------------------------------------------- /R Code/chapter 5/Chapter5_Script.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 5/Chapter5_Script.R -------------------------------------------------------------------------------- /R Code/chapter 6/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 6/.DS_Store -------------------------------------------------------------------------------- /R Code/chapter 6/Chapter6_Script.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 6/Chapter6_Script.R -------------------------------------------------------------------------------- /R Code/chapter 7/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 7/.DS_Store -------------------------------------------------------------------------------- /R Code/chapter 7/Chapter7_Script.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 7/Chapter7_Script.R -------------------------------------------------------------------------------- /R Code/chapter 8/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 8/.DS_Store -------------------------------------------------------------------------------- /R Code/chapter 8/data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 8/data/.DS_Store -------------------------------------------------------------------------------- /R Code/chapter 8/data/exercises/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 8/data/exercises/.DS_Store -------------------------------------------------------------------------------- /R Code/chapter 8/data/exercises/pt100price.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 8/data/exercises/pt100price.csv -------------------------------------------------------------------------------- /R Code/chapter 8/data/exercises/pt99price.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 8/data/exercises/pt99price.csv -------------------------------------------------------------------------------- /R Code/chapter 8/data/federer_time_to_serve.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 8/data/federer_time_to_serve.csv -------------------------------------------------------------------------------- /R Code/chapter 8/data/sleeping_times.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 8/data/sleeping_times.csv -------------------------------------------------------------------------------- /R Code/chapter 8/data/taxi_fares.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 8/data/taxi_fares.csv -------------------------------------------------------------------------------- /R Code/chapter 8/data/web_visits.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 8/data/web_visits.csv -------------------------------------------------------------------------------- /R Code/chapter 8/scripts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 8/scripts/.DS_Store -------------------------------------------------------------------------------- /R Code/chapter 8/scripts/.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 8/scripts/.Rhistory -------------------------------------------------------------------------------- /R Code/chapter 8/scripts/Chapter8_Script.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 8/scripts/Chapter8_Script.R -------------------------------------------------------------------------------- /R Code/chapter 9/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 9/.DS_Store -------------------------------------------------------------------------------- /R Code/chapter 9/data/buffalo_jan.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 9/data/buffalo_jan.csv -------------------------------------------------------------------------------- /R Code/chapter 9/data/buffalo_snowfall.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 9/data/buffalo_snowfall.csv -------------------------------------------------------------------------------- /R Code/chapter 9/data/fares.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 9/data/fares.csv -------------------------------------------------------------------------------- /R Code/chapter 9/data/taxi_regression.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 9/data/taxi_regression.csv -------------------------------------------------------------------------------- /R Code/chapter 9/scripts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 9/scripts/.DS_Store -------------------------------------------------------------------------------- /R Code/chapter 9/scripts/.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 9/scripts/.Rhistory -------------------------------------------------------------------------------- /R Code/chapter 9/scripts/Chapter9_Script.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/R Code/chapter 9/scripts/Chapter9_Script.R -------------------------------------------------------------------------------- /Slides/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/.DS_Store -------------------------------------------------------------------------------- /Slides/markdown/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/.DS_Store -------------------------------------------------------------------------------- /Slides/markdown/chapter1/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter1/.DS_Store -------------------------------------------------------------------------------- /Slides/markdown/chapter1/chapter_1_2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter1/chapter_1_2.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter1/chapter_1_3.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter1/chapter_1_3.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter1/chapter_1_4a.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter1/chapter_1_4a.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter1/chapter_1_4b.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter1/chapter_1_4b.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter1/chapter_1_5.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter1/chapter_1_5.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter1/chapter_1_6a.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter1/chapter_1_6a.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter1/chapter_1_6b.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter1/chapter_1_6b.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter1/figures/10_2dicerolls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter1/figures/10_2dicerolls.png -------------------------------------------------------------------------------- /Slides/markdown/chapter1/figures/C1_twospinners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter1/figures/C1_twospinners.png -------------------------------------------------------------------------------- /Slides/markdown/chapter1/figures/Sum_spins.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter1/figures/Sum_spins.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter1/figures/ballsinbowl1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter1/figures/ballsinbowl1.png -------------------------------------------------------------------------------- /Slides/markdown/chapter1/figures/ballsinbowl2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter1/figures/ballsinbowl2.png -------------------------------------------------------------------------------- /Slides/markdown/chapter1/figures/ballsinbowl3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter1/figures/ballsinbowl3.png -------------------------------------------------------------------------------- /Slides/markdown/chapter1/figures/ballsinbowl4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter1/figures/ballsinbowl4.png -------------------------------------------------------------------------------- /Slides/markdown/chapter1/figures/spinner0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter1/figures/spinner0.png -------------------------------------------------------------------------------- /Slides/markdown/chapter1/figures/spinner1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter1/figures/spinner1.png -------------------------------------------------------------------------------- /Slides/markdown/chapter1/figures/twodice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter1/figures/twodice.png -------------------------------------------------------------------------------- /Slides/markdown/chapter1/figures/venn1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter1/figures/venn1.png -------------------------------------------------------------------------------- /Slides/markdown/chapter1/figures/venn2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter1/figures/venn2.png -------------------------------------------------------------------------------- /Slides/markdown/chapter1/figures/venn3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter1/figures/venn3.png -------------------------------------------------------------------------------- /Slides/markdown/chapter10/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter10/.DS_Store -------------------------------------------------------------------------------- /Slides/markdown/chapter10/2010_animation_ratings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter10/2010_animation_ratings.csv -------------------------------------------------------------------------------- /Slides/markdown/chapter10/DeathDataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter10/DeathDataset.csv -------------------------------------------------------------------------------- /Slides/markdown/chapter10/chapter_10_1.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter10/chapter_10_1.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter10/chapter_10_2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter10/chapter_10_2.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter10/chapter_10_3.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter10/chapter_10_3.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter10/figures/treediagram1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter10/figures/treediagram1.png -------------------------------------------------------------------------------- /Slides/markdown/chapter10/figures/treediagram2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter10/figures/treediagram2.png -------------------------------------------------------------------------------- /Slides/markdown/chapter10/figures/treediagram3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter10/figures/treediagram3.png -------------------------------------------------------------------------------- /Slides/markdown/chapter10/figures/treediagram4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter10/figures/treediagram4.png -------------------------------------------------------------------------------- /Slides/markdown/chapter11/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/.DS_Store -------------------------------------------------------------------------------- /Slides/markdown/chapter11/chapter_11_1.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/chapter_11_1.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter11/chapter_11_2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/chapter_11_2.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter11/chapter_11_3.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/chapter_11_3.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter11/chapter_11_4.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/chapter_11_4.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter11/chapter_11_5.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/chapter_11_5.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter11/chapter_11_6.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/chapter_11_6.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter11/chapter_11_7.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/chapter_11_7.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter11/chapter_11_8.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/chapter_11_8.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter11/chapter_11_9.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/chapter_11_9.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter11/figures/EDA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/figures/EDA.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter11/figures/LR_beta0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/figures/LR_beta0.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter11/figures/LR_beta1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/figures/LR_beta1.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter11/figures/LR_post_prob.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/figures/LR_post_prob.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter11/figures/LR_pred_prob.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/figures/LR_pred_prob.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter11/figures/MLR_beta1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/figures/MLR_beta1.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter11/figures/MLR_beta1_new.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/figures/MLR_beta1_new.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter11/figures/MLR_expected.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/figures/MLR_expected.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter11/figures/MLR_expected_new.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/figures/MLR_expected_new.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter11/figures/MLR_expected_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/figures/MLR_expected_new.png -------------------------------------------------------------------------------- /Slides/markdown/chapter11/figures/MLR_postdraws.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/figures/MLR_postdraws.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter11/figures/MLR_postdraws_new.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/figures/MLR_postdraws_new.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter11/figures/MLR_predicted.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/figures/MLR_predicted.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter11/figures/MLR_predicted_new.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/figures/MLR_predicted_new.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter11/figures/Regression_View.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/figures/Regression_View.png -------------------------------------------------------------------------------- /Slides/markdown/chapter11/figures/Rlogo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/figures/Rlogo.jpeg -------------------------------------------------------------------------------- /Slides/markdown/chapter11/figures/Rplot03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/figures/Rplot03.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter11/figures/TotalExpLastQLogSTD_TotalIncomeLastYearLogSTD_Rural.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/figures/TotalExpLastQLogSTD_TotalIncomeLastYearLogSTD_Rural.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter11/figures/TotalExpLastQLogSTD_UrbanRural.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/figures/TotalExpLastQLogSTD_UrbanRural.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter11/figures/logistic_cond_means.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/figures/logistic_cond_means.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter11/figures/logisticdata.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/figures/logisticdata.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter11/figures/logisticprior.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/figures/logisticprior.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter11/figures/priorpost.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/figures/priorpost.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter11/figures/priorpost_N0004G11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/figures/priorpost_N0004G11.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter11/figures/priorpost_N01G11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/figures/priorpost_N01G11.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter11/figures/priorpost_N04G11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/figures/priorpost_N04G11.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter11/figures/priorpost_N09G11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/figures/priorpost_N09G11.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter11/figures/regression_beta1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/figures/regression_beta1.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter11/figures/regression_scatter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/figures/regression_scatter.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter11/figures/regression_scatter_new.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/figures/regression_scatter_new.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter11/figures/schmidt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/figures/schmidt.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter11/gas2017.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/gas2017.csv -------------------------------------------------------------------------------- /Slides/markdown/chapter11/house_prices.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter11/house_prices.csv -------------------------------------------------------------------------------- /Slides/markdown/chapter12/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter12/.DS_Store -------------------------------------------------------------------------------- /Slides/markdown/chapter12/chapter_12_1.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter12/chapter_12_1.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter12/chapter_12_2a.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter12/chapter_12_2a.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter12/chapter_12_2b.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter12/chapter_12_2b.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter12/chapter_12_2c.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter12/chapter_12_2c.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter12/chapter_12_3a.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter12/chapter_12_3a.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter12/chapter_12_3b.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter12/chapter_12_3b.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter12/chapter_12_3c.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter12/chapter_12_3c.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter12/figures/LR_beta0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter12/figures/LR_beta0.png -------------------------------------------------------------------------------- /Slides/markdown/chapter12/figures/LR_beta1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter12/figures/LR_beta1.png -------------------------------------------------------------------------------- /Slides/markdown/chapter12/figures/LR_post_prob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter12/figures/LR_post_prob.png -------------------------------------------------------------------------------- /Slides/markdown/chapter12/figures/LR_pred_prob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter12/figures/LR_pred_prob.png -------------------------------------------------------------------------------- /Slides/markdown/chapter12/figures/MLR_beta1_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter12/figures/MLR_beta1_new.png -------------------------------------------------------------------------------- /Slides/markdown/chapter12/figures/MLR_expected_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter12/figures/MLR_expected_new.png -------------------------------------------------------------------------------- /Slides/markdown/chapter12/figures/MLR_postdraws_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter12/figures/MLR_postdraws_new.png -------------------------------------------------------------------------------- /Slides/markdown/chapter12/figures/MLR_predicted_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter12/figures/MLR_predicted_new.png -------------------------------------------------------------------------------- /Slides/markdown/chapter12/figures/logistic_cond_means.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter12/figures/logistic_cond_means.png -------------------------------------------------------------------------------- /Slides/markdown/chapter12/figures/logisticdata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter12/figures/logisticdata.png -------------------------------------------------------------------------------- /Slides/markdown/chapter12/figures/logisticprior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter12/figures/logisticprior.png -------------------------------------------------------------------------------- /Slides/markdown/chapter12/figures/regression_scatter_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter12/figures/regression_scatter_new.png -------------------------------------------------------------------------------- /Slides/markdown/chapter12/figures/schmidt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter12/figures/schmidt.png -------------------------------------------------------------------------------- /Slides/markdown/chapter13/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter13/.DS_Store -------------------------------------------------------------------------------- /Slides/markdown/chapter13/chapter_13_1.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter13/chapter_13_1.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter13/chapter_13_2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter13/chapter_13_2.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter13/chapter_13_3.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter13/chapter_13_3.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter13/chapter_13_4_5.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter13/chapter_13_4_5.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter13/chapter_13_6.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter13/chapter_13_6.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter13/chapter_13_7.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter13/chapter_13_7.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter13/figures/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter13/figures/.DS_Store -------------------------------------------------------------------------------- /Slides/markdown/chapter13/figures/ClassificationPlot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter13/figures/ClassificationPlot.png -------------------------------------------------------------------------------- /Slides/markdown/chapter13/figures/LCM_post3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter13/figures/LCM_post3.png -------------------------------------------------------------------------------- /Slides/markdown/chapter13/figures/ScorePlotText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter13/figures/ScorePlotText.png -------------------------------------------------------------------------------- /Slides/markdown/chapter13/figures/hamilton_post1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter13/figures/hamilton_post1.png -------------------------------------------------------------------------------- /Slides/markdown/chapter13/figures/hamilton_pp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter13/figures/hamilton_pp1.png -------------------------------------------------------------------------------- /Slides/markdown/chapter13/figures/hamilton_pp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter13/figures/hamilton_pp2.png -------------------------------------------------------------------------------- /Slides/markdown/chapter13/figures/meantrajectory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter13/figures/meantrajectory.png -------------------------------------------------------------------------------- /Slides/markdown/chapter13/figures/phelps1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter13/figures/phelps1.png -------------------------------------------------------------------------------- /Slides/markdown/chapter13/figures/threevarplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter13/figures/threevarplot.png -------------------------------------------------------------------------------- /Slides/markdown/chapter13/figures/traj_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter13/figures/traj_all.png -------------------------------------------------------------------------------- /Slides/markdown/chapter13/figures/treediagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter13/figures/treediagram.png -------------------------------------------------------------------------------- /Slides/markdown/chapter13/figures/two_authors_can.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter13/figures/two_authors_can.png -------------------------------------------------------------------------------- /Slides/markdown/chapter13/figures/two_authors_many.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter13/figures/two_authors_many.png -------------------------------------------------------------------------------- /Slides/markdown/chapter13/figures/two_authors_post2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter13/figures/two_authors_post2.png -------------------------------------------------------------------------------- /Slides/markdown/chapter13/figures/twoplayers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter13/figures/twoplayers.png -------------------------------------------------------------------------------- /Slides/markdown/chapter13/figures/utley1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter13/figures/utley1.png -------------------------------------------------------------------------------- /Slides/markdown/chapter13/figures/utley2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter13/figures/utley2.png -------------------------------------------------------------------------------- /Slides/markdown/chapter2/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter2/.DS_Store -------------------------------------------------------------------------------- /Slides/markdown/chapter2/chapter2/Rlogo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter2/chapter2/Rlogo.jpeg -------------------------------------------------------------------------------- /Slides/markdown/chapter2/chapter2/Rlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter2/chapter2/Rlogo.png -------------------------------------------------------------------------------- /Slides/markdown/chapter2/chapter2/Spinners_prior.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter2/chapter2/Spinners_prior.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter2/chapter2/bayes1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter2/chapter2/bayes1.png -------------------------------------------------------------------------------- /Slides/markdown/chapter2/chapter2/bowlspinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter2/chapter2/bowlspinner.png -------------------------------------------------------------------------------- /Slides/markdown/chapter2/chapter2/chooseballs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter2/chapter2/chooseballs.png -------------------------------------------------------------------------------- /Slides/markdown/chapter2/chapter2/chooseballs2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter2/chapter2/chooseballs2.png -------------------------------------------------------------------------------- /Slides/markdown/chapter2/chapter2/dinners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter2/chapter2/dinners.png -------------------------------------------------------------------------------- /Slides/markdown/chapter2/chapter2/fourspinner.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter2/chapter2/fourspinner.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter2/chapter2/fourspinners.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter2/chapter2/fourspinners.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter2/chapter2/objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter2/chapter2/objects.png -------------------------------------------------------------------------------- /Slides/markdown/chapter2/chapter2/objects2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter2/chapter2/objects2.png -------------------------------------------------------------------------------- /Slides/markdown/chapter2/chapter2/objects3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter2/chapter2/objects3.png -------------------------------------------------------------------------------- /Slides/markdown/chapter2/chapter2/objects4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter2/chapter2/objects4.png -------------------------------------------------------------------------------- /Slides/markdown/chapter2/chapter2/objects5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter2/chapter2/objects5.png -------------------------------------------------------------------------------- /Slides/markdown/chapter2/chapter2/priorpost.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter2/chapter2/priorpost.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter2/chapter2/spinnerplot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter2/chapter2/spinnerplot.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter2/chapter2/tree5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter2/chapter2/tree5.png -------------------------------------------------------------------------------- /Slides/markdown/chapter2/chapter2/tree6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter2/chapter2/tree6.png -------------------------------------------------------------------------------- /Slides/markdown/chapter2/chapter2/twospinners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter2/chapter2/twospinners.png -------------------------------------------------------------------------------- /Slides/markdown/chapter2/chapter_2_2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter2/chapter_2_2.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter2/chapter_2_3.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter2/chapter_2_3.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter2/chapter_2_4.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter2/chapter_2_4.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter2/chapter_2_5.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter2/chapter_2_5.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter2/chapter_2_6.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter2/chapter_2_6.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter2/chapter_2_7.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter2/chapter_2_7.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter3/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter3/.DS_Store -------------------------------------------------------------------------------- /Slides/markdown/chapter3/chapter3/Rlogo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter3/chapter3/Rlogo.jpeg -------------------------------------------------------------------------------- /Slides/markdown/chapter3/chapter3/Rlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter3/chapter3/Rlogo.png -------------------------------------------------------------------------------- /Slides/markdown/chapter3/chapter3/Spinners_prior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter3/chapter3/Spinners_prior.png -------------------------------------------------------------------------------- /Slides/markdown/chapter3/chapter3/bellshape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter3/chapter3/bellshape.png -------------------------------------------------------------------------------- /Slides/markdown/chapter3/chapter3/bindist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter3/chapter3/bindist.png -------------------------------------------------------------------------------- /Slides/markdown/chapter3/chapter3/bowlspinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter3/chapter3/bowlspinner.png -------------------------------------------------------------------------------- /Slides/markdown/chapter3/chapter3/discrete1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter3/chapter3/discrete1.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter3/chapter3/discrete2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter3/chapter3/discrete2.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter3/chapter3/fourspinners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter3/chapter3/fourspinners.png -------------------------------------------------------------------------------- /Slides/markdown/chapter3/chapter3/galton1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter3/chapter3/galton1.png -------------------------------------------------------------------------------- /Slides/markdown/chapter3/chapter3/galton2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter3/chapter3/galton2.png -------------------------------------------------------------------------------- /Slides/markdown/chapter3/chapter3/histogram2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter3/chapter3/histogram2.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter3/chapter3/nb1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter3/chapter3/nb1.png -------------------------------------------------------------------------------- /Slides/markdown/chapter3/chapter3/newtree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter3/chapter3/newtree.png -------------------------------------------------------------------------------- /Slides/markdown/chapter3/chapter3/priorpost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter3/chapter3/priorpost.png -------------------------------------------------------------------------------- /Slides/markdown/chapter3/chapter3/spinner7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter3/chapter3/spinner7.png -------------------------------------------------------------------------------- /Slides/markdown/chapter3/chapter3/spinner9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter3/chapter3/spinner9.png -------------------------------------------------------------------------------- /Slides/markdown/chapter3/chapter3/spinner99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter3/chapter3/spinner99.png -------------------------------------------------------------------------------- /Slides/markdown/chapter3/chapter3/spinnerplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter3/chapter3/spinnerplot.png -------------------------------------------------------------------------------- /Slides/markdown/chapter3/chapter3/tree5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter3/chapter3/tree5.png -------------------------------------------------------------------------------- /Slides/markdown/chapter3/chapter3/tree6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter3/chapter3/tree6.png -------------------------------------------------------------------------------- /Slides/markdown/chapter3/chapter3/twobinomials.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter3/chapter3/twobinomials.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter3/chapter3/twospinners2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter3/chapter3/twospinners2.png -------------------------------------------------------------------------------- /Slides/markdown/chapter3/chapter3/twospinners3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter3/chapter3/twospinners3.png -------------------------------------------------------------------------------- /Slides/markdown/chapter3/chapter_3_1.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter3/chapter_3_1.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter3/chapter_3_2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter3/chapter_3_2.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter3/chapter_3_3.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter3/chapter_3_3.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter3/chapter_3_4.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter3/chapter_3_4.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter3/chapter_3_5_3_6.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter3/chapter_3_5_3_6.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter3/chapter_3_7.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter3/chapter_3_7.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter3/chapter_3_8.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter3/chapter_3_8.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter3/chapter_3_9.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter3/chapter_3_9.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter4/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter4/.DS_Store -------------------------------------------------------------------------------- /Slides/markdown/chapter4/chapter_4_11.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter4/chapter_4_11.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter4/chapter_4_2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter4/chapter_4_2.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter4/chapter_4_3.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter4/chapter_4_3.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter4/chapter_4_4.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter4/chapter_4_4.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter4/chapter_4_5.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter4/chapter_4_5.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter4/chapter_4_6-4.10.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter4/chapter_4_6-4.10.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter4/figures/bellshape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter4/figures/bellshape.png -------------------------------------------------------------------------------- /Slides/markdown/chapter4/figures/discrete1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter4/figures/discrete1.png -------------------------------------------------------------------------------- /Slides/markdown/chapter4/figures/discrete2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter4/figures/discrete2.png -------------------------------------------------------------------------------- /Slides/markdown/chapter4/figures/galton1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter4/figures/galton1.png -------------------------------------------------------------------------------- /Slides/markdown/chapter4/figures/galton2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter4/figures/galton2.png -------------------------------------------------------------------------------- /Slides/markdown/chapter4/figures/nb1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter4/figures/nb1.png -------------------------------------------------------------------------------- /Slides/markdown/chapter4/figures/spinner7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter4/figures/spinner7.png -------------------------------------------------------------------------------- /Slides/markdown/chapter4/figures/spinner9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter4/figures/spinner9.png -------------------------------------------------------------------------------- /Slides/markdown/chapter4/figures/spinner99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter4/figures/spinner99.png -------------------------------------------------------------------------------- /Slides/markdown/chapter4/figures/twobinomials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter4/figures/twobinomials.png -------------------------------------------------------------------------------- /Slides/markdown/chapter5/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/.DS_Store -------------------------------------------------------------------------------- /Slides/markdown/chapter5/chapter_5_2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/chapter_5_2.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter5/chapter_5_3.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/chapter_5_3.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter5/chapter_5_4.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/chapter_5_4.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter5/chapter_5_6.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/chapter_5_6.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter5/chapter_5_7.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/chapter_5_7.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter5/chapter_5_8.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/chapter_5_8.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter5/chapter_5_9.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/chapter_5_9.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter5/figures/binormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/figures/binormal.png -------------------------------------------------------------------------------- /Slides/markdown/chapter5/figures/chestmeasurements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/figures/chestmeasurements.png -------------------------------------------------------------------------------- /Slides/markdown/chapter5/figures/continuous0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/figures/continuous0.png -------------------------------------------------------------------------------- /Slides/markdown/chapter5/figures/continuous1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/figures/continuous1.png -------------------------------------------------------------------------------- /Slides/markdown/chapter5/figures/continuous10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/figures/continuous10.png -------------------------------------------------------------------------------- /Slides/markdown/chapter5/figures/continuous11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/figures/continuous11.png -------------------------------------------------------------------------------- /Slides/markdown/chapter5/figures/continuous12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/figures/continuous12.png -------------------------------------------------------------------------------- /Slides/markdown/chapter5/figures/continuous2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/figures/continuous2.png -------------------------------------------------------------------------------- /Slides/markdown/chapter5/figures/continuous3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/figures/continuous3.png -------------------------------------------------------------------------------- /Slides/markdown/chapter5/figures/continuous4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/figures/continuous4.png -------------------------------------------------------------------------------- /Slides/markdown/chapter5/figures/continuous5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/figures/continuous5.png -------------------------------------------------------------------------------- /Slides/markdown/chapter5/figures/continuous6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/figures/continuous6.png -------------------------------------------------------------------------------- /Slides/markdown/chapter5/figures/continuous7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/figures/continuous7.png -------------------------------------------------------------------------------- /Slides/markdown/chapter5/figures/continuous9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/figures/continuous9.png -------------------------------------------------------------------------------- /Slides/markdown/chapter5/figures/fourplots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/figures/fourplots.png -------------------------------------------------------------------------------- /Slides/markdown/chapter5/figures/fourplots2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/figures/fourplots2.png -------------------------------------------------------------------------------- /Slides/markdown/chapter5/figures/grandma1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/figures/grandma1.png -------------------------------------------------------------------------------- /Slides/markdown/chapter5/figures/grandma2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/figures/grandma2.png -------------------------------------------------------------------------------- /Slides/markdown/chapter5/figures/milesfromhome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/figures/milesfromhome.png -------------------------------------------------------------------------------- /Slides/markdown/chapter5/figures/milesfromhome2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/figures/milesfromhome2.png -------------------------------------------------------------------------------- /Slides/markdown/chapter5/figures/newnormal1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/figures/newnormal1.png -------------------------------------------------------------------------------- /Slides/markdown/chapter5/figures/newnormal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/figures/newnormal2.png -------------------------------------------------------------------------------- /Slides/markdown/chapter5/figures/newnormal3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/figures/newnormal3.png -------------------------------------------------------------------------------- /Slides/markdown/chapter5/figures/newnormal4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/figures/newnormal4.png -------------------------------------------------------------------------------- /Slides/markdown/chapter5/figures/samplemeans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/figures/samplemeans.png -------------------------------------------------------------------------------- /Slides/markdown/chapter5/figures/samplemeans2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/figures/samplemeans2.png -------------------------------------------------------------------------------- /Slides/markdown/chapter5/figures/samplemeans3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/figures/samplemeans3.png -------------------------------------------------------------------------------- /Slides/markdown/chapter5/figures/samplemeans4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter5/figures/samplemeans4.png -------------------------------------------------------------------------------- /Slides/markdown/chapter6/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter6/.DS_Store -------------------------------------------------------------------------------- /Slides/markdown/chapter6/chapter_6_1a.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter6/chapter_6_1a.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter6/chapter_6_1b.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter6/chapter_6_1b.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter6/chapter_6_1c.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter6/chapter_6_1c.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter6/chapter_6_2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter6/chapter_6_2.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter6/chapter_6_3a.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter6/chapter_6_3a.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter6/chapter_6_3b.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter6/chapter_6_3b.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter6/chapter_6_4.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter6/chapter_6_4.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter6/chapter_6_5.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter6/chapter_6_5.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter6/chapter_6_6.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter6/chapter_6_6.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter6/figures/Binorm_scatter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter6/figures/Binorm_scatter.png -------------------------------------------------------------------------------- /Slides/markdown/chapter6/figures/Cont2_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter6/figures/Cont2_a.png -------------------------------------------------------------------------------- /Slides/markdown/chapter6/figures/Cont2_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter6/figures/Cont2_b.png -------------------------------------------------------------------------------- /Slides/markdown/chapter6/figures/beta66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter6/figures/beta66.png -------------------------------------------------------------------------------- /Slides/markdown/chapter6/figures/binormals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter6/figures/binormals.png -------------------------------------------------------------------------------- /Slides/markdown/chapter6/figures/bivariate1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter6/figures/bivariate1.png -------------------------------------------------------------------------------- /Slides/markdown/chapter7/chapter_7_1.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/chapter_7_1.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter7/chapter_7_2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/chapter_7_2.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter7/chapter_7_3.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/chapter_7_3.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter7/chapter_7_4.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/chapter_7_4.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter7/chapter_7_5.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/chapter_7_5.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter7/chapter_7_6.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/chapter_7_6.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/4Svalues.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/4Svalues.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/4Svalues_new.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/4Svalues_new.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/4Svalues_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/4Svalues_new.png -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/Beta-priors.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/Beta-priors.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/Beta-priors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/Beta-priors.png -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/ChooseBeta1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/ChooseBeta1.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/ChooseBeta1_new.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/ChooseBeta1_new.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/ChooseBeta1_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/ChooseBeta1_new.png -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/Normalprior.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/Normalprior.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/Postpred.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/Postpred.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/Predictive_dining.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/Predictive_dining.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/Predictive_dining.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/Predictive_dining.png -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/RedBallProb_prob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/RedBallProb_prob.png -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/RedBallProp_prob.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/RedBallProp_prob.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/Rlogo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/Rlogo.jpeg -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/Spinner_bar_graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/Spinner_bar_graph.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/Spinner_distribution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/Spinner_distribution.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/Spinners_prior.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/Spinners_prior.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/Spinners_prior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/Spinners_prior.png -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/betalogitpostsim.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/betalogitpostsim.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/betapost1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/betapost1.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/betapost1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/betapost1.png -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/betapost2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/betapost2.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/betapost2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/betapost2.png -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/betapostsim.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/betapostsim.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/betapredict.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/betapredict.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/betapriorpost.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/betapriorpost.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/betapriorpost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/betapriorpost.png -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/betaprob1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/betaprob1.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/betaprob1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/betaprob1.png -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/betaprob2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/betaprob2.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/betaprob2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/betaprob2.png -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/betaprob3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/betaprob3.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/betaprob3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/betaprob3.png -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/datahead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/datahead.png -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/fourspinners.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/fourspinners.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/fourspinners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/fourspinners.png -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/normalprior1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/normalprior1.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/normalpriorpost.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/normalpriorpost.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/normalpriorpost2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/normalpriorpost2.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/predcheck1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/predcheck1.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/predcheck1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/predcheck1.png -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/predcheck2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/predcheck2.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/predcheck2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/predcheck2.png -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/prior.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/prior.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/prior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/prior.png -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/priorpost.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/priorpost.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/priorpost2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/priorpost2.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/priorpost2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/priorpost2.png -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/spinnerplot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/spinnerplot.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/spinnerplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/spinnerplot.png -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/two_predictive_dist.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/two_predictive_dist.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/two_predictive_dist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/two_predictive_dist.png -------------------------------------------------------------------------------- /Slides/markdown/chapter7/figures/twonormalpriors.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter7/figures/twonormalpriors.pdf -------------------------------------------------------------------------------- /Slides/markdown/chapter8/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter8/.DS_Store -------------------------------------------------------------------------------- /Slides/markdown/chapter8/chapter_8_2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter8/chapter_8_2.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter8/chapter_8_3.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter8/chapter_8_3.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter8/chapter_8_4.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter8/chapter_8_4.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter8/chapter_8_5.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter8/chapter_8_5.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter8/chapter_8_6.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter8/chapter_8_6.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter8/chapter_8_7.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter8/chapter_8_7.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter8/figures/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter8/figures/.DS_Store -------------------------------------------------------------------------------- /Slides/markdown/chapter8/figures/normalcurves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter8/figures/normalcurves.png -------------------------------------------------------------------------------- /Slides/markdown/chapter8/figures/priorpost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter8/figures/priorpost.png -------------------------------------------------------------------------------- /Slides/markdown/chapter9/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter9/.DS_Store -------------------------------------------------------------------------------- /Slides/markdown/chapter9/chapter_9.2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter9/chapter_9.2.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter9/chapter_9.3a.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter9/chapter_9.3a.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter9/chapter_9.3b.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter9/chapter_9.3b.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter9/chapter_9.4.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter9/chapter_9.4.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter9/chapter_9.5.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter9/chapter_9.5.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter9/chapter_9.6.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter9/chapter_9.6.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter9/chapter_9.7.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter9/chapter_9.7.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter9/chapter_9.7a.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter9/chapter_9.7a.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter9/chapter_9.7b.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter9/chapter_9.7b.Rmd -------------------------------------------------------------------------------- /Slides/markdown/chapter9/figures/cauchypost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter9/figures/cauchypost.png -------------------------------------------------------------------------------- /Slides/markdown/chapter9/figures/jags1a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter9/figures/jags1a.png -------------------------------------------------------------------------------- /Slides/markdown/chapter9/figures/jags1b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter9/figures/jags1b.png -------------------------------------------------------------------------------- /Slides/markdown/chapter9/figures/jags4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter9/figures/jags4.png -------------------------------------------------------------------------------- /Slides/markdown/chapter9/figures/markovchainrun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter9/figures/markovchainrun.png -------------------------------------------------------------------------------- /Slides/markdown/chapter9/figures/mcmc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter9/figures/mcmc1.png -------------------------------------------------------------------------------- /Slides/markdown/chapter9/figures/mcmc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter9/figures/mcmc2.png -------------------------------------------------------------------------------- /Slides/markdown/chapter9/figures/mcmc4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter9/figures/mcmc4.png -------------------------------------------------------------------------------- /Slides/markdown/chapter9/figures/mcmc5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter9/figures/mcmc5.png -------------------------------------------------------------------------------- /Slides/markdown/chapter9/figures/mcmc6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter9/figures/mcmc6.png -------------------------------------------------------------------------------- /Slides/markdown/chapter9/figures/mcmc7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter9/figures/mcmc7.png -------------------------------------------------------------------------------- /Slides/markdown/chapter9/figures/mcmc8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter9/figures/mcmc8.png -------------------------------------------------------------------------------- /Slides/markdown/chapter9/figures/mcmc9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter9/figures/mcmc9.png -------------------------------------------------------------------------------- /Slides/markdown/chapter9/figures/ppcheck1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter9/figures/ppcheck1.png -------------------------------------------------------------------------------- /Slides/markdown/chapter9/figures/ppcheck2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter9/figures/ppcheck2.png -------------------------------------------------------------------------------- /Slides/markdown/chapter9/figures/randomwalk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter9/figures/randomwalk.png -------------------------------------------------------------------------------- /Slides/markdown/chapter9/figures/showmetrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/markdown/chapter9/figures/showmetrop.png -------------------------------------------------------------------------------- /Slides/pdf/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/.DS_Store -------------------------------------------------------------------------------- /Slides/pdf/All_Chapter_Slides.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/All_Chapter_Slides.zip -------------------------------------------------------------------------------- /Slides/pdf/chapter1/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter1/.DS_Store -------------------------------------------------------------------------------- /Slides/pdf/chapter1/chapter_1_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter1/chapter_1_2.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter1/chapter_1_3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter1/chapter_1_3.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter1/chapter_1_4a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter1/chapter_1_4a.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter1/chapter_1_4b.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter1/chapter_1_4b.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter1/chapter_1_5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter1/chapter_1_5.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter1/chapter_1_6a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter1/chapter_1_6a.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter1/chapter_1_6b.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter1/chapter_1_6b.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter1/figures/10_2dicerolls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter1/figures/10_2dicerolls.png -------------------------------------------------------------------------------- /Slides/pdf/chapter1/figures/C1_twospinners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter1/figures/C1_twospinners.png -------------------------------------------------------------------------------- /Slides/pdf/chapter1/figures/Sum_spins.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter1/figures/Sum_spins.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter1/figures/ballsinbowl1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter1/figures/ballsinbowl1.png -------------------------------------------------------------------------------- /Slides/pdf/chapter1/figures/ballsinbowl2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter1/figures/ballsinbowl2.png -------------------------------------------------------------------------------- /Slides/pdf/chapter1/figures/ballsinbowl3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter1/figures/ballsinbowl3.png -------------------------------------------------------------------------------- /Slides/pdf/chapter1/figures/ballsinbowl4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter1/figures/ballsinbowl4.png -------------------------------------------------------------------------------- /Slides/pdf/chapter1/figures/spinner0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter1/figures/spinner0.png -------------------------------------------------------------------------------- /Slides/pdf/chapter1/figures/spinner1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter1/figures/spinner1.png -------------------------------------------------------------------------------- /Slides/pdf/chapter1/figures/twodice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter1/figures/twodice.png -------------------------------------------------------------------------------- /Slides/pdf/chapter1/figures/venn1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter1/figures/venn1.png -------------------------------------------------------------------------------- /Slides/pdf/chapter1/figures/venn2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter1/figures/venn2.png -------------------------------------------------------------------------------- /Slides/pdf/chapter1/figures/venn3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter1/figures/venn3.png -------------------------------------------------------------------------------- /Slides/pdf/chapter10/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter10/.DS_Store -------------------------------------------------------------------------------- /Slides/pdf/chapter10/.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter10/.Rhistory -------------------------------------------------------------------------------- /Slides/pdf/chapter10/chapter_10_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter10/chapter_10_1.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter10/chapter_10_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter10/chapter_10_2.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter10/chapter_10_3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter10/chapter_10_3.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter11/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter11/.DS_Store -------------------------------------------------------------------------------- /Slides/pdf/chapter11/.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter11/.Rhistory -------------------------------------------------------------------------------- /Slides/pdf/chapter11/chapter_11_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter11/chapter_11_1.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter11/chapter_11_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter11/chapter_11_2.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter11/chapter_11_3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter11/chapter_11_3.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter11/chapter_11_4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter11/chapter_11_4.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter11/chapter_11_5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter11/chapter_11_5.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter11/chapter_11_6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter11/chapter_11_6.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter11/chapter_11_7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter11/chapter_11_7.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter11/chapter_11_8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter11/chapter_11_8.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter11/chapter_11_9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter11/chapter_11_9.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter12/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter12/.DS_Store -------------------------------------------------------------------------------- /Slides/pdf/chapter12/chapter_12_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter12/chapter_12_1.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter12/chapter_12_2a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter12/chapter_12_2a.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter12/chapter_12_2b.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter12/chapter_12_2b.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter12/chapter_12_2c.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter12/chapter_12_2c.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter12/chapter_12_3a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter12/chapter_12_3a.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter12/chapter_12_3b.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter12/chapter_12_3b.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter12/chapter_12_3c.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter12/chapter_12_3c.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter13/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter13/.DS_Store -------------------------------------------------------------------------------- /Slides/pdf/chapter13/chapter_13_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter13/chapter_13_1.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter13/chapter_13_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter13/chapter_13_2.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter13/chapter_13_3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter13/chapter_13_3.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter13/chapter_13_4_5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter13/chapter_13_4_5.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter13/chapter_13_6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter13/chapter_13_6.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter13/chapter_13_7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter13/chapter_13_7.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter2/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter2/.DS_Store -------------------------------------------------------------------------------- /Slides/pdf/chapter2/chapter_2_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter2/chapter_2_2.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter2/chapter_2_3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter2/chapter_2_3.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter2/chapter_2_4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter2/chapter_2_4.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter2/chapter_2_5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter2/chapter_2_5.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter2/chapter_2_6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter2/chapter_2_6.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter2/chapter_2_7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter2/chapter_2_7.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter3/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter3/.DS_Store -------------------------------------------------------------------------------- /Slides/pdf/chapter3/chapter_3_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter3/chapter_3_1.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter3/chapter_3_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter3/chapter_3_2.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter3/chapter_3_3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter3/chapter_3_3.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter3/chapter_3_4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter3/chapter_3_4.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter3/chapter_3_5_3_6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter3/chapter_3_5_3_6.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter3/chapter_3_7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter3/chapter_3_7.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter3/chapter_3_8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter3/chapter_3_8.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter3/chapter_3_9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter3/chapter_3_9.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter4/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter4/.DS_Store -------------------------------------------------------------------------------- /Slides/pdf/chapter4/chapter_4_11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter4/chapter_4_11.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter4/chapter_4_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter4/chapter_4_2.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter4/chapter_4_3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter4/chapter_4_3.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter4/chapter_4_4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter4/chapter_4_4.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter4/chapter_4_5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter4/chapter_4_5.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter4/chapter_4_6-4.10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter4/chapter_4_6-4.10.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter5/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter5/.DS_Store -------------------------------------------------------------------------------- /Slides/pdf/chapter5/chapter_5_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter5/chapter_5_2.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter5/chapter_5_3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter5/chapter_5_3.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter5/chapter_5_4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter5/chapter_5_4.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter5/chapter_5_6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter5/chapter_5_6.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter5/chapter_5_7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter5/chapter_5_7.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter5/chapter_5_8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter5/chapter_5_8.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter5/chapter_5_9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter5/chapter_5_9.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter6/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter6/.DS_Store -------------------------------------------------------------------------------- /Slides/pdf/chapter6/chapter_6_1a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter6/chapter_6_1a.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter6/chapter_6_1b.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter6/chapter_6_1b.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter6/chapter_6_1c.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter6/chapter_6_1c.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter6/chapter_6_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter6/chapter_6_2.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter6/chapter_6_3a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter6/chapter_6_3a.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter6/chapter_6_3b.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter6/chapter_6_3b.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter6/chapter_6_4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter6/chapter_6_4.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter6/chapter_6_5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter6/chapter_6_5.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter6/chapter_6_6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter6/chapter_6_6.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter7/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter7/.DS_Store -------------------------------------------------------------------------------- /Slides/pdf/chapter7/chapter_7_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter7/chapter_7_1.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter7/chapter_7_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter7/chapter_7_2.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter7/chapter_7_3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter7/chapter_7_3.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter7/chapter_7_4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter7/chapter_7_4.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter7/chapter_7_5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter7/chapter_7_5.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter7/chapter_7_6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter7/chapter_7_6.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter8/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter8/.DS_Store -------------------------------------------------------------------------------- /Slides/pdf/chapter8/chapter_8_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter8/chapter_8_2.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter8/chapter_8_3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter8/chapter_8_3.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter8/chapter_8_4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter8/chapter_8_4.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter8/chapter_8_5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter8/chapter_8_5.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter8/chapter_8_6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter8/chapter_8_6.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter8/chapter_8_7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter8/chapter_8_7.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter9/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter9/.DS_Store -------------------------------------------------------------------------------- /Slides/pdf/chapter9/chapter_9.2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter9/chapter_9.2.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter9/chapter_9.3a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter9/chapter_9.3a.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter9/chapter_9.3b.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter9/chapter_9.3b.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter9/chapter_9.4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter9/chapter_9.4.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter9/chapter_9.6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter9/chapter_9.6.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter9/chapter_9.7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter9/chapter_9.7.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter9/chapter_9.7a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter9/chapter_9.7a.pdf -------------------------------------------------------------------------------- /Slides/pdf/chapter9/chapter_9.7b.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/Slides/pdf/chapter9/chapter_9.7b.pdf -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/_config.yml -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/index.html -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monika76five/ProbBayes/HEAD/index.md --------------------------------------------------------------------------------