• Stars
    star
    323
  • Rank 130,051 (Top 3 %)
  • Language Typst
  • License
    Creative Commons ...
  • Created over 2 years ago
  • Updated 8 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

This repository holds slides and code for a full Bayesian statistics graduate course.

Bayesian Statistics

CC BY-SA 4.0

Bayesian for Everyone!

Bayesian for Everyone!

This repository holds slides and code for a full Bayesian statistics graduate course.

Bayesian statistics is an approach to inferential statistics based on Bayes' theorem, where available knowledge about parameters in a statistical model is updated with the information in observed data. The background knowledge is expressed as a prior distribution and combined with observational data in the form of a likelihood function to determine the posterior distribution. The posterior can also be used for making predictions about future events.

Bayesian statistics is a departure from classical inferential statistics that prohibits probability statements about parameters and is based on asymptotically sampling infinite samples from a theoretical population and finding parameter values that maximize the likelihood function. Mostly notorious is null-hypothesis significance testing (NHST) based on p-values. Bayesian statistics incorporate uncertainty (and prior knowledge) by allowing probability statements about parameters, and the process of parameter value inference is a direct result of the Bayes' theorem.

Content

The whole content is a set of several slides found at slides/slides.pdf (342 slides). Here is a brief table of contents:

  1. What is Bayesian Statistics?
  2. Common Probability Distributions
  3. Priors
  4. Predictive Checks
  5. Bayesian Linear Regression
  6. Bayesian Logistic Regression
  7. Bayesian Ordinal Regression
  8. Bayesian Regression with Count Data: Poisson Regression
  9. Robust Bayesian Regression
  10. Hierarchical Models
  11. Markov Chain Monte Carlo (MCMC) and Model Metrics
  12. Model Comparison: Cross-Validation and Other Metrics

Probabilistic Programming Languages (PPLs)

Along with slides for the content, this repository also holds Stan code and also Turing.jl code for all models. Stan and Turing.jl represents, respectively, the present and future of probabilistic programming languages.

Stan

Stan (Carpenter et al., 2017) Stan is a state-of-the-art platform for statistical modeling and high-performance statistical computation. Thousands of users rely on Stan for statistical modeling, data analysis, and prediction in the social, biological, and physical sciences, engineering, and business.

Stan models are specified in its own language (similar to C++) and compiled into an executable binary that can generate Bayesian statistical inferences using a high-performance Markov Chain Montecarlo (MCMC).

You can find Stan models for all the content discussed in the slides at stan/ folder. These were tested with Stan version 2.30.0 and CmdStanR version 0.5.2.

Turing.jl

Turing.jl (Ge, Xu & Ghahramani, 2018) is an ecosystem of Julia packages for Bayesian Inference using probabilistic programming. Models specified using Turing.jl are easy to read and write — models work the way you write them. Like everything in Julia, Turing.jl is fast.

You can find Turing.jl models for all the content discussed in the slides at turing/ folder. These were tested with Turing.jl version 0.21.9 and Julia 1.7.3.

Datasets

  • kidiq (linear regression): data from a survey of adult American women and their children (a subsample from the National Longitudinal Survey of Youth). Source: Gelman and Hill (2007).
  • wells (logistic regression): a survey of 3200 residents in a small area of Bangladesh suffering from arsenic contamination of groundwater. Respondents with elevated arsenic levels in their wells had been encouraged to switch their water source to a safe public or private well in the nearby area and the survey was conducted several years later to learn which of the affected residents had switched wells. Souce: Gelman and Hill (2007).
  • esoph (ordinal regression): data from a case-control study of (o)esophageal cancer in Ille-et-Vilaine, France. Source: Breslow and Day (1980).
  • roaches (Poisson regression): data on the efficacy of a pest management system at reducing the number of roaches in urban apartments. Source: Gelman and Hill (2007).
  • duncan (robust regression): data from occupation's prestige filled with outliers. Source: Duncan (1961).
  • cheese (hierarchical models): data from cheese ratings. A group of 10 rural and 10 urban raters rated 4 types of different cheeses (A, B, C and D) in two samples. Source: Boatwright, McCulloch and Rossi (1999).

Author

Jose Storopoli, PhD - Lattes CV - ORCID - https://storopoli.io

How to use the content?

The content is licensed under a very permissive Creative Commons license (CC BY-SA). You are mostly welcome to contribute with issues and pull requests. My hope is to have more people into Bayesian statistics. The content is aimed towards PhD candidates in applied sciences. I chose to provide an intuitive approach along with some rigorous mathematical formulations. I've made it to be how I would have liked to be introduced to Bayesian statistics.

References

The references are divided in books, papers, software, and datasets.

Books

  • Gelman, A., Carlin, J. B., Stern, H. S., Dunson, D. B., Vehtari, A., & Rubin, D. B. (2013). Bayesian Data Analysis. Chapman and Hall/CRC.
  • McElreath, R. (2020). Statistical rethinking: A Bayesian course with examples in R and Stan. CRC press.
  • Gelman, A., Hill, J., & Vehtari, A. (2020). Regression and other stories. Cambridge University Press.
  • Brooks, S., Gelman, A., Jones, G., & Meng, X.-L. (2011). Handbook of Markov Chain Monte Carlo. CRC Press. http://books.google.com?id=qfRsAIKZ4rIC
    • Geyer, C. J. (2011). Introduction to markov chain monte carlo. In S. Brooks, A. Gelman, G. L. Jones, & X.-L. Meng (Eds.), Handbook of markov chain monte carlo.

Papers

The papers section of the references are divided into required and complementary.

Required

Complementary

Software

  • Carpenter, B., Gelman, A., Hoffman, M. D., Lee, D., Goodrich, B., Betancourt, M., Brubaker, M., Guo, J., Li, P., & Riddell, A. (2017). Stan : A Probabilistic Programming Language. Journal of Statistical Software, 76(1). https://doi.org/[10.18637/jss.v076.i01](https://doi.org/10.18637/jss.v076.i01)
  • Ge, H., Xu, K., & Ghahramani, Z. (2018). Turing: A Language for Flexible Probabilistic Inference. International Conference on Artificial Intelligence and Statistics, 1682–1690. http://proceedings.mlr.press/v84/ge18b.html
  • Tarek, M., Xu, K., Trapp, M., Ge, H., & Ghahramani, Z. (2020). DynamicPPL: Stan-like Speed for Dynamic Probabilistic Models. ArXiv:2002.02702 [Cs, Stat]. http://arxiv.org/abs/2002.02702
  • Xu, K., Ge, H., Tebbutt, W., Tarek, M., Trapp, M., & Ghahramani, Z. (2020). AdvancedHMC.jl: A robust, modular and efficient implementation of advanced HMC algorithms. Symposium on Advances in Approximate Bayesian Inference, 1–10. http://proceedings.mlr.press/v118/xu20a.html

Datasets

  • Boatwright, P., McCulloch, R., & Rossi, P. (1999). Account-level modeling for trade promotion: An application of a constrained parameter hierarchical model. Journal of the American Statistical Association, 94(448), 1063–1073.
  • Breslow, N. E. & Day, N. E. (1980). Statistical Methods in Cancer Research. Volume 1: The Analysis of Case-Control Studies. IARC Lyon / Oxford University Press.
  • Duncan, O. D. (1961). A socioeconomic index for all occupations. Class: Critical Concepts, 1, 388–426.
  • Gelman, A., & Hill, J. (2007). Data analysis using regression and multilevel/hierarchical models. Cambridge university press.

How to cite

To cite this course, please use:

Storopoli (2022). Bayesian Statistics: a graduate course. https://github.com/storopoli/Bayesian-Statistics.

Or in BibTeX format (LaTeX):

@misc{storopoli2022bayesian,
  author = {Storopoli, Jose},
  title = {Bayesian Statistics: a graduate course},
  url = {https://github.com/storopoli/Bayesian-Statistics},
  year = {2022}
}

License

This content is licensed under Creative Commons Attribution-ShareAlike 4.0 Internacional.

CC BY-SA 4.0

More Repositories

1

Bayesian-Julia

Bayesian Statistics using Julia and Turing
Julia
151
star
2

ciencia-de-dados

Disciplina de Ciências de Dados da UNINOVE
Jupyter Notebook
120
star
3

Julia-Workshop

JuliaCon 2022 - Introduction to Julia Tutorial
Julia
60
star
4

topic-modelling

Handy Jupyter Notebooks that I use in for Topic Modeling. Including text mining from PDF files, text preprocessing, Latent Dirichlet Allocation (LDA), hyperparameters grid search and Topic Modeling visualiation.
Jupyter Notebook
35
star
5

Turing-Workshop

DEPRECATED IN FAVOR OF TuringLang/Turing-Workshop
HTML
34
star
6

flakes

NixOS/MacOS Nix Minimalist-Hardened-Privacy-oriented Configs
Nix
22
star
7

Estatistica-Bayesiana

Disciplina de Estatística Bayesiana da UNINOVE
R
15
star
8

Computacao-Cientifica

Disciplina de Computação Científica com Julia
Julia
15
star
9

Why-Julia

Why Julia? A Gentle Pitch
10
star
10

dead-man-switch

Rust no-BS Dead Man's Switch TUI
Rust
8
star
11

Linguagem-R

Disciplina de Linguagem R para Ciência de Dados de Pós-Graduação da UNINOVE
CSS
8
star
12

cryptography-workshop

Cryptographic Signature Workshop
Typst
8
star
13

Solving-Captchas

Tensorflow Keras CNN to solve Captchas
Python
4
star
14

stoic-quotes

Stoic Quotes
Rust
4
star
15

sudoku

Sudoku PWA
Rust
4
star
16

Estatistica

Tutorial de R da Disciplina de Estatística da UNINOVE
R
3
star
17

R_Scripts

Couple of handy R Scripts that I use in a daily basis for Scientific Research
R
3
star
18

EmailScraper.jl

Scrape Emails from Domains
Julia
3
star
19

cmdstanr-docker

OCI (Docker/Podman) images for CmdStanR
Dockerfile
3
star
20

Julia_Scripts

Handy Julia Scripts
Julia
2
star
21

FactorAssumptions

R Package for a Set of Assumptions for Factor and Principal Component Analysis
R
2
star
22

storopoli.github.io

Personal Website
Nix
2
star
23

neovix

nixvim anywhere configs
Nix
2
star
24

prod_lattes

Script in Python to mine CV Lattes Brazilian information from researchers and then compare it with the Qualis Score
Jupyter Notebook
1
star
25

word-rnn-tensorflow-LoTR

Using Word RNN in TF with LoTR books
Python
1
star
26

bibjoin

Combine TSV and CSV files from Scopus/Web of Science by DOI
Rust
1
star
27

rustlings

Rust
1
star
28

storopoli

1
star
29

cmdstanpy-docker

OCI (Docker/Podman) images for CmdStanPy
Dockerfile
1
star
30

bibexcel

A python executable to get JSON and Excel data from a bibexcel text file
Python
1
star
31

EDC

Everyday Carry for Linux Users
Dockerfile
1
star
32

btc-addr

A simple command line tool to generate Bitcoin addresses from a XPUB
Rust
1
star
33

udacity-plagiarism-detector

Udacity's ML Engineer Nanodegree - Project 2 - Deploy a Plagiarism Detector Model
Jupyter Notebook
1
star
34

update-podman

A simple Rust CLI to update podman images.
Rust
1
star
35

Rcpp

Como fazer seu código R ficar mais rápido com Rcpp
R
1
star
36

dotfiles

Codespaces Dotfiles
Lua
1
star
37

nvim

My minimalist NeoVim configs
Lua
1
star
38

TF-Deploy

Deploy a Pre-trained TensorFlow model with the help of TensorFlow Serving with Docker. Create a visual web interface using Flask web framework which will serve to get predictions from the served TensorFlow model and help end-users to consume through API calls.
Python
1
star
39

dead-man-switch-startos

Dead Man Switch StartOS Package
TypeScript
1
star