├── .gitignore ├── Labs ├── Lab-1 │ ├── README.md │ ├── lab1.lyx │ ├── lab1.pdf │ ├── simulate_vam.R │ ├── simulate_vam.do │ ├── solutions.R │ ├── solutions.do │ ├── solutions.py │ └── vam_example_data.csv ├── Lab-2 │ ├── README.md │ ├── decon_example.R │ ├── disc_estimates.csv │ ├── krw_data.csv │ ├── lab2.lyx │ ├── lab2.pdf │ ├── solutions.R │ ├── solutions.do │ └── solutions.py └── Lab-3 │ ├── README.md │ ├── lab3.lyx │ └── lab3.pdf ├── README.md ├── Shiny-Apps ├── Linear-Shrinkage │ ├── .Rhistory │ ├── app.R │ ├── components.R │ ├── style.css │ └── tailwind.config.js └── README.md ├── Slides ├── conditional_densities.pdf ├── cover.png ├── gap_hist.png ├── gender_density.pdf ├── gender_hist.pdf ├── gender_npmle.pdf ├── hist_1.png ├── hist_2.png ├── hist_3.png ├── hist_4.png ├── hist_5.png ├── hist_gapsmale.pdf ├── hist_gapswhite.pdf ├── hybrid_mse.pdf ├── lorenz.pdf ├── mean_diffs.png ├── means_table.pdf ├── mixtape_EB_slides.lyx ├── mixtape_EB_slides.pdf ├── post_mean_rule.png ├── post_p10_rule.png ├── post_p90_rule.png ├── pvals_1.png ├── pvals_2.png ├── pvals_3.png ├── qval_table.pdf ├── race_density.pdf ├── race_density_norestriction.pdf ├── race_npmle.pdf ├── race_post_means.pdf ├── randres_slides_final.pdf ├── separate_marginal.pdf ├── shrunk_hist.png └── vam_sd.pdf ├── img └── banner.png ├── outline.lyx └── outline.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/.gitignore -------------------------------------------------------------------------------- /Labs/Lab-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Labs/Lab-1/README.md -------------------------------------------------------------------------------- /Labs/Lab-1/lab1.lyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Labs/Lab-1/lab1.lyx -------------------------------------------------------------------------------- /Labs/Lab-1/lab1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Labs/Lab-1/lab1.pdf -------------------------------------------------------------------------------- /Labs/Lab-1/simulate_vam.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Labs/Lab-1/simulate_vam.R -------------------------------------------------------------------------------- /Labs/Lab-1/simulate_vam.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Labs/Lab-1/simulate_vam.do -------------------------------------------------------------------------------- /Labs/Lab-1/solutions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Labs/Lab-1/solutions.R -------------------------------------------------------------------------------- /Labs/Lab-1/solutions.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Labs/Lab-1/solutions.do -------------------------------------------------------------------------------- /Labs/Lab-1/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Labs/Lab-1/solutions.py -------------------------------------------------------------------------------- /Labs/Lab-1/vam_example_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Labs/Lab-1/vam_example_data.csv -------------------------------------------------------------------------------- /Labs/Lab-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Labs/Lab-2/README.md -------------------------------------------------------------------------------- /Labs/Lab-2/decon_example.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Labs/Lab-2/decon_example.R -------------------------------------------------------------------------------- /Labs/Lab-2/disc_estimates.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Labs/Lab-2/disc_estimates.csv -------------------------------------------------------------------------------- /Labs/Lab-2/krw_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Labs/Lab-2/krw_data.csv -------------------------------------------------------------------------------- /Labs/Lab-2/lab2.lyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Labs/Lab-2/lab2.lyx -------------------------------------------------------------------------------- /Labs/Lab-2/lab2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Labs/Lab-2/lab2.pdf -------------------------------------------------------------------------------- /Labs/Lab-2/solutions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Labs/Lab-2/solutions.R -------------------------------------------------------------------------------- /Labs/Lab-2/solutions.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Labs/Lab-2/solutions.do -------------------------------------------------------------------------------- /Labs/Lab-2/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Labs/Lab-2/solutions.py -------------------------------------------------------------------------------- /Labs/Lab-3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Labs/Lab-3/README.md -------------------------------------------------------------------------------- /Labs/Lab-3/lab3.lyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Labs/Lab-3/lab3.lyx -------------------------------------------------------------------------------- /Labs/Lab-3/lab3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Labs/Lab-3/lab3.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/README.md -------------------------------------------------------------------------------- /Shiny-Apps/Linear-Shrinkage/.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Shiny-Apps/Linear-Shrinkage/.Rhistory -------------------------------------------------------------------------------- /Shiny-Apps/Linear-Shrinkage/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Shiny-Apps/Linear-Shrinkage/app.R -------------------------------------------------------------------------------- /Shiny-Apps/Linear-Shrinkage/components.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Shiny-Apps/Linear-Shrinkage/components.R -------------------------------------------------------------------------------- /Shiny-Apps/Linear-Shrinkage/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Shiny-Apps/Linear-Shrinkage/style.css -------------------------------------------------------------------------------- /Shiny-Apps/Linear-Shrinkage/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Shiny-Apps/Linear-Shrinkage/tailwind.config.js -------------------------------------------------------------------------------- /Shiny-Apps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Shiny-Apps/README.md -------------------------------------------------------------------------------- /Slides/conditional_densities.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Slides/conditional_densities.pdf -------------------------------------------------------------------------------- /Slides/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Slides/cover.png -------------------------------------------------------------------------------- /Slides/gap_hist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Slides/gap_hist.png -------------------------------------------------------------------------------- /Slides/gender_density.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Slides/gender_density.pdf -------------------------------------------------------------------------------- /Slides/gender_hist.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Slides/gender_hist.pdf -------------------------------------------------------------------------------- /Slides/gender_npmle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Slides/gender_npmle.pdf -------------------------------------------------------------------------------- /Slides/hist_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Slides/hist_1.png -------------------------------------------------------------------------------- /Slides/hist_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Slides/hist_2.png -------------------------------------------------------------------------------- /Slides/hist_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Slides/hist_3.png -------------------------------------------------------------------------------- /Slides/hist_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Slides/hist_4.png -------------------------------------------------------------------------------- /Slides/hist_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Slides/hist_5.png -------------------------------------------------------------------------------- /Slides/hist_gapsmale.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Slides/hist_gapsmale.pdf -------------------------------------------------------------------------------- /Slides/hist_gapswhite.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Slides/hist_gapswhite.pdf -------------------------------------------------------------------------------- /Slides/hybrid_mse.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Slides/hybrid_mse.pdf -------------------------------------------------------------------------------- /Slides/lorenz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Slides/lorenz.pdf -------------------------------------------------------------------------------- /Slides/mean_diffs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Slides/mean_diffs.png -------------------------------------------------------------------------------- /Slides/means_table.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Slides/means_table.pdf -------------------------------------------------------------------------------- /Slides/mixtape_EB_slides.lyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Slides/mixtape_EB_slides.lyx -------------------------------------------------------------------------------- /Slides/mixtape_EB_slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Slides/mixtape_EB_slides.pdf -------------------------------------------------------------------------------- /Slides/post_mean_rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Slides/post_mean_rule.png -------------------------------------------------------------------------------- /Slides/post_p10_rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Slides/post_p10_rule.png -------------------------------------------------------------------------------- /Slides/post_p90_rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Slides/post_p90_rule.png -------------------------------------------------------------------------------- /Slides/pvals_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Slides/pvals_1.png -------------------------------------------------------------------------------- /Slides/pvals_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Slides/pvals_2.png -------------------------------------------------------------------------------- /Slides/pvals_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Slides/pvals_3.png -------------------------------------------------------------------------------- /Slides/qval_table.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Slides/qval_table.pdf -------------------------------------------------------------------------------- /Slides/race_density.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Slides/race_density.pdf -------------------------------------------------------------------------------- /Slides/race_density_norestriction.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Slides/race_density_norestriction.pdf -------------------------------------------------------------------------------- /Slides/race_npmle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Slides/race_npmle.pdf -------------------------------------------------------------------------------- /Slides/race_post_means.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Slides/race_post_means.pdf -------------------------------------------------------------------------------- /Slides/randres_slides_final.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Slides/randres_slides_final.pdf -------------------------------------------------------------------------------- /Slides/separate_marginal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Slides/separate_marginal.pdf -------------------------------------------------------------------------------- /Slides/shrunk_hist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Slides/shrunk_hist.png -------------------------------------------------------------------------------- /Slides/vam_sd.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/Slides/vam_sd.pdf -------------------------------------------------------------------------------- /img/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/img/banner.png -------------------------------------------------------------------------------- /outline.lyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/outline.lyx -------------------------------------------------------------------------------- /outline.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mixtape-Sessions/Empirical-Bayes/HEAD/outline.pdf --------------------------------------------------------------------------------