├── .gitignore ├── CV-FAQ.Rmd ├── README.md ├── Vehtari_StanHEL_CV.pdf ├── betablockers.Rmd ├── binom_odds_comparison.R ├── binom_test_densities.RData ├── bodyfat.Rmd ├── bodyfat.txt ├── bodyfat_bootstrap.R ├── bodyfat_bootstrap.RData ├── bodyfat_kfoldcv.R ├── bodyfat_kfoldcv.RData ├── bodyfat_kfoldcv2.R ├── bodyfat_kfoldcv2.RData ├── candy.Rmd ├── collinear.Rmd ├── cv_basics.R ├── cv_basics.html ├── diabetes.Rmd ├── diabetes.csv ├── harvard-cite-them-right.csl ├── mesquite.Rmd ├── mesquite.dat ├── modelsel.bib ├── modelselection.Rproj ├── modelselection_tutorial_slides.pdf ├── projpredpct.R ├── rats.data.R ├── rats_kcv.R ├── regularizedhorseshoe_slides.pdf ├── roaches.Rmd ├── slides_model_assesment_selection.pdf ├── winequality-red.Rmd └── winequality-red.csv /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/.gitignore -------------------------------------------------------------------------------- /CV-FAQ.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/CV-FAQ.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/README.md -------------------------------------------------------------------------------- /Vehtari_StanHEL_CV.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/Vehtari_StanHEL_CV.pdf -------------------------------------------------------------------------------- /betablockers.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/betablockers.Rmd -------------------------------------------------------------------------------- /binom_odds_comparison.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/binom_odds_comparison.R -------------------------------------------------------------------------------- /binom_test_densities.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/binom_test_densities.RData -------------------------------------------------------------------------------- /bodyfat.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/bodyfat.Rmd -------------------------------------------------------------------------------- /bodyfat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/bodyfat.txt -------------------------------------------------------------------------------- /bodyfat_bootstrap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/bodyfat_bootstrap.R -------------------------------------------------------------------------------- /bodyfat_bootstrap.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/bodyfat_bootstrap.RData -------------------------------------------------------------------------------- /bodyfat_kfoldcv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/bodyfat_kfoldcv.R -------------------------------------------------------------------------------- /bodyfat_kfoldcv.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/bodyfat_kfoldcv.RData -------------------------------------------------------------------------------- /bodyfat_kfoldcv2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/bodyfat_kfoldcv2.R -------------------------------------------------------------------------------- /bodyfat_kfoldcv2.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/bodyfat_kfoldcv2.RData -------------------------------------------------------------------------------- /candy.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/candy.Rmd -------------------------------------------------------------------------------- /collinear.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/collinear.Rmd -------------------------------------------------------------------------------- /cv_basics.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/cv_basics.R -------------------------------------------------------------------------------- /cv_basics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/cv_basics.html -------------------------------------------------------------------------------- /diabetes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/diabetes.Rmd -------------------------------------------------------------------------------- /diabetes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/diabetes.csv -------------------------------------------------------------------------------- /harvard-cite-them-right.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/harvard-cite-them-right.csl -------------------------------------------------------------------------------- /mesquite.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/mesquite.Rmd -------------------------------------------------------------------------------- /mesquite.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/mesquite.dat -------------------------------------------------------------------------------- /modelsel.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/modelsel.bib -------------------------------------------------------------------------------- /modelselection.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/modelselection.Rproj -------------------------------------------------------------------------------- /modelselection_tutorial_slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/modelselection_tutorial_slides.pdf -------------------------------------------------------------------------------- /projpredpct.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/projpredpct.R -------------------------------------------------------------------------------- /rats.data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/rats.data.R -------------------------------------------------------------------------------- /rats_kcv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/rats_kcv.R -------------------------------------------------------------------------------- /regularizedhorseshoe_slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/regularizedhorseshoe_slides.pdf -------------------------------------------------------------------------------- /roaches.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/roaches.Rmd -------------------------------------------------------------------------------- /slides_model_assesment_selection.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/slides_model_assesment_selection.pdf -------------------------------------------------------------------------------- /winequality-red.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/winequality-red.Rmd -------------------------------------------------------------------------------- /winequality-red.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avehtari/modelselection/HEAD/winequality-red.csv --------------------------------------------------------------------------------