├── .gitignore ├── CITATION.cff ├── LICENSE ├── README.md ├── Turing_Workshop.jl ├── data ├── influenza_england_1978_school.csv └── wells.csv ├── images ├── BDA_book.jpg ├── Bayes_book.jpg ├── HMM.pdf ├── HMM.png ├── HMM.tex ├── ROS_book.jpg ├── SIR.pdf ├── SIR.png ├── SIR.tex ├── SR_book.jpg ├── bayes-meme.jpg ├── bayesian_workflow.pdf ├── bayesian_workflow.png ├── bayesian_workflow.tex ├── bernoullis_fallacy_book.jpeg ├── multilevel_models.pdf ├── multilevel_models.png ├── multilevel_models.tex └── profile_pic.jpg ├── index.html ├── stan ├── hmm.R └── hmm.stan └── turing ├── hmm.jl ├── hmm_chain.jlso ├── sir.jl └── sir_chain.jlso /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storopoli/Turing-Workshop/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storopoli/Turing-Workshop/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storopoli/Turing-Workshop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storopoli/Turing-Workshop/HEAD/README.md -------------------------------------------------------------------------------- /Turing_Workshop.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storopoli/Turing-Workshop/HEAD/Turing_Workshop.jl -------------------------------------------------------------------------------- /data/influenza_england_1978_school.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storopoli/Turing-Workshop/HEAD/data/influenza_england_1978_school.csv -------------------------------------------------------------------------------- /data/wells.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storopoli/Turing-Workshop/HEAD/data/wells.csv -------------------------------------------------------------------------------- /images/BDA_book.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storopoli/Turing-Workshop/HEAD/images/BDA_book.jpg -------------------------------------------------------------------------------- /images/Bayes_book.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storopoli/Turing-Workshop/HEAD/images/Bayes_book.jpg -------------------------------------------------------------------------------- /images/HMM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storopoli/Turing-Workshop/HEAD/images/HMM.pdf -------------------------------------------------------------------------------- /images/HMM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storopoli/Turing-Workshop/HEAD/images/HMM.png -------------------------------------------------------------------------------- /images/HMM.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storopoli/Turing-Workshop/HEAD/images/HMM.tex -------------------------------------------------------------------------------- /images/ROS_book.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storopoli/Turing-Workshop/HEAD/images/ROS_book.jpg -------------------------------------------------------------------------------- /images/SIR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storopoli/Turing-Workshop/HEAD/images/SIR.pdf -------------------------------------------------------------------------------- /images/SIR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storopoli/Turing-Workshop/HEAD/images/SIR.png -------------------------------------------------------------------------------- /images/SIR.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storopoli/Turing-Workshop/HEAD/images/SIR.tex -------------------------------------------------------------------------------- /images/SR_book.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storopoli/Turing-Workshop/HEAD/images/SR_book.jpg -------------------------------------------------------------------------------- /images/bayes-meme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storopoli/Turing-Workshop/HEAD/images/bayes-meme.jpg -------------------------------------------------------------------------------- /images/bayesian_workflow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storopoli/Turing-Workshop/HEAD/images/bayesian_workflow.pdf -------------------------------------------------------------------------------- /images/bayesian_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storopoli/Turing-Workshop/HEAD/images/bayesian_workflow.png -------------------------------------------------------------------------------- /images/bayesian_workflow.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storopoli/Turing-Workshop/HEAD/images/bayesian_workflow.tex -------------------------------------------------------------------------------- /images/bernoullis_fallacy_book.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storopoli/Turing-Workshop/HEAD/images/bernoullis_fallacy_book.jpeg -------------------------------------------------------------------------------- /images/multilevel_models.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storopoli/Turing-Workshop/HEAD/images/multilevel_models.pdf -------------------------------------------------------------------------------- /images/multilevel_models.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storopoli/Turing-Workshop/HEAD/images/multilevel_models.png -------------------------------------------------------------------------------- /images/multilevel_models.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storopoli/Turing-Workshop/HEAD/images/multilevel_models.tex -------------------------------------------------------------------------------- /images/profile_pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storopoli/Turing-Workshop/HEAD/images/profile_pic.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storopoli/Turing-Workshop/HEAD/index.html -------------------------------------------------------------------------------- /stan/hmm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storopoli/Turing-Workshop/HEAD/stan/hmm.R -------------------------------------------------------------------------------- /stan/hmm.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storopoli/Turing-Workshop/HEAD/stan/hmm.stan -------------------------------------------------------------------------------- /turing/hmm.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storopoli/Turing-Workshop/HEAD/turing/hmm.jl -------------------------------------------------------------------------------- /turing/hmm_chain.jlso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storopoli/Turing-Workshop/HEAD/turing/hmm_chain.jlso -------------------------------------------------------------------------------- /turing/sir.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storopoli/Turing-Workshop/HEAD/turing/sir.jl -------------------------------------------------------------------------------- /turing/sir_chain.jlso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storopoli/Turing-Workshop/HEAD/turing/sir_chain.jlso --------------------------------------------------------------------------------