├── .gitignore ├── CompBayes2018 ├── elvis.ipynb └── nile.ipynb ├── LICENSE ├── README.md ├── SeriesReport-20210413134155_d963cb.xlsx ├── bayes_table.ipynb ├── berkson_college.ipynb ├── censusdata_example.ipynb ├── colorbrewer.soc ├── colors.ipynb ├── darts.ipynb ├── elvis.ipynb ├── fair_test.ipynb ├── figs └── kanazawa2007fig1.png ├── frequency2.ipynb ├── gss_eda.hdf5 ├── haunt.ipynb ├── median-usual-weekly-earn.png ├── median-weekly-earnings-606-for-high-school-dropouts-1559-for-advanced-degree-holders.htm ├── nlsy.ipynb ├── nlsy └── stand_test_corr.csv.gz ├── palette.ipynb ├── sex_ratio.ipynb ├── sierpinski.ipynb ├── simpson_clean.ipynb ├── simpson_gss.ipynb ├── simpson_gss.py ├── simpson_over_age.ipynb ├── simpson_over_time.ipynb ├── simpson_wages.ipynb ├── trivia.ipynb ├── two_elvises.png └── unfair_coins.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenDowney/ProbablyOverthinkingIt2/HEAD/.gitignore -------------------------------------------------------------------------------- /CompBayes2018/elvis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenDowney/ProbablyOverthinkingIt2/HEAD/CompBayes2018/elvis.ipynb -------------------------------------------------------------------------------- /CompBayes2018/nile.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenDowney/ProbablyOverthinkingIt2/HEAD/CompBayes2018/nile.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenDowney/ProbablyOverthinkingIt2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenDowney/ProbablyOverthinkingIt2/HEAD/README.md -------------------------------------------------------------------------------- /SeriesReport-20210413134155_d963cb.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenDowney/ProbablyOverthinkingIt2/HEAD/SeriesReport-20210413134155_d963cb.xlsx -------------------------------------------------------------------------------- /bayes_table.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenDowney/ProbablyOverthinkingIt2/HEAD/bayes_table.ipynb -------------------------------------------------------------------------------- /berkson_college.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenDowney/ProbablyOverthinkingIt2/HEAD/berkson_college.ipynb -------------------------------------------------------------------------------- /censusdata_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenDowney/ProbablyOverthinkingIt2/HEAD/censusdata_example.ipynb -------------------------------------------------------------------------------- /colorbrewer.soc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenDowney/ProbablyOverthinkingIt2/HEAD/colorbrewer.soc -------------------------------------------------------------------------------- /colors.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenDowney/ProbablyOverthinkingIt2/HEAD/colors.ipynb -------------------------------------------------------------------------------- /darts.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenDowney/ProbablyOverthinkingIt2/HEAD/darts.ipynb -------------------------------------------------------------------------------- /elvis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenDowney/ProbablyOverthinkingIt2/HEAD/elvis.ipynb -------------------------------------------------------------------------------- /fair_test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenDowney/ProbablyOverthinkingIt2/HEAD/fair_test.ipynb -------------------------------------------------------------------------------- /figs/kanazawa2007fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenDowney/ProbablyOverthinkingIt2/HEAD/figs/kanazawa2007fig1.png -------------------------------------------------------------------------------- /frequency2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenDowney/ProbablyOverthinkingIt2/HEAD/frequency2.ipynb -------------------------------------------------------------------------------- /gss_eda.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenDowney/ProbablyOverthinkingIt2/HEAD/gss_eda.hdf5 -------------------------------------------------------------------------------- /haunt.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenDowney/ProbablyOverthinkingIt2/HEAD/haunt.ipynb -------------------------------------------------------------------------------- /median-usual-weekly-earn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenDowney/ProbablyOverthinkingIt2/HEAD/median-usual-weekly-earn.png -------------------------------------------------------------------------------- /median-weekly-earnings-606-for-high-school-dropouts-1559-for-advanced-degree-holders.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenDowney/ProbablyOverthinkingIt2/HEAD/median-weekly-earnings-606-for-high-school-dropouts-1559-for-advanced-degree-holders.htm -------------------------------------------------------------------------------- /nlsy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenDowney/ProbablyOverthinkingIt2/HEAD/nlsy.ipynb -------------------------------------------------------------------------------- /nlsy/stand_test_corr.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenDowney/ProbablyOverthinkingIt2/HEAD/nlsy/stand_test_corr.csv.gz -------------------------------------------------------------------------------- /palette.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenDowney/ProbablyOverthinkingIt2/HEAD/palette.ipynb -------------------------------------------------------------------------------- /sex_ratio.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenDowney/ProbablyOverthinkingIt2/HEAD/sex_ratio.ipynb -------------------------------------------------------------------------------- /sierpinski.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenDowney/ProbablyOverthinkingIt2/HEAD/sierpinski.ipynb -------------------------------------------------------------------------------- /simpson_clean.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenDowney/ProbablyOverthinkingIt2/HEAD/simpson_clean.ipynb -------------------------------------------------------------------------------- /simpson_gss.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenDowney/ProbablyOverthinkingIt2/HEAD/simpson_gss.ipynb -------------------------------------------------------------------------------- /simpson_gss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenDowney/ProbablyOverthinkingIt2/HEAD/simpson_gss.py -------------------------------------------------------------------------------- /simpson_over_age.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenDowney/ProbablyOverthinkingIt2/HEAD/simpson_over_age.ipynb -------------------------------------------------------------------------------- /simpson_over_time.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenDowney/ProbablyOverthinkingIt2/HEAD/simpson_over_time.ipynb -------------------------------------------------------------------------------- /simpson_wages.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenDowney/ProbablyOverthinkingIt2/HEAD/simpson_wages.ipynb -------------------------------------------------------------------------------- /trivia.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenDowney/ProbablyOverthinkingIt2/HEAD/trivia.ipynb -------------------------------------------------------------------------------- /two_elvises.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenDowney/ProbablyOverthinkingIt2/HEAD/two_elvises.png -------------------------------------------------------------------------------- /unfair_coins.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenDowney/ProbablyOverthinkingIt2/HEAD/unfair_coins.ipynb --------------------------------------------------------------------------------