├── .gitignore ├── CARstan.Rproj ├── Dockerfile ├── LICENSE ├── README.Rmd ├── README.md ├── README_files └── figure-html │ ├── compare-parameter-estimates-1.png │ ├── fit-prec-model-1.png │ ├── fit-sparse-model-1.png │ ├── make-scotland-map-1.png │ └── unnamed-chunk-1-1.png ├── blogpost.md ├── data ├── scotland.dbf ├── scotland.shp ├── scotland.shx └── scotland_lip_cancer.RData └── stan ├── .gitignore ├── car_prec.stan ├── car_sparse.stan └── iar_sparse.stan /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/CARstan/HEAD/.gitignore -------------------------------------------------------------------------------- /CARstan.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/CARstan/HEAD/CARstan.Rproj -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/CARstan/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/CARstan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/CARstan/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/CARstan/HEAD/README.md -------------------------------------------------------------------------------- /README_files/figure-html/compare-parameter-estimates-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/CARstan/HEAD/README_files/figure-html/compare-parameter-estimates-1.png -------------------------------------------------------------------------------- /README_files/figure-html/fit-prec-model-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/CARstan/HEAD/README_files/figure-html/fit-prec-model-1.png -------------------------------------------------------------------------------- /README_files/figure-html/fit-sparse-model-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/CARstan/HEAD/README_files/figure-html/fit-sparse-model-1.png -------------------------------------------------------------------------------- /README_files/figure-html/make-scotland-map-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/CARstan/HEAD/README_files/figure-html/make-scotland-map-1.png -------------------------------------------------------------------------------- /README_files/figure-html/unnamed-chunk-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/CARstan/HEAD/README_files/figure-html/unnamed-chunk-1-1.png -------------------------------------------------------------------------------- /blogpost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/CARstan/HEAD/blogpost.md -------------------------------------------------------------------------------- /data/scotland.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/CARstan/HEAD/data/scotland.dbf -------------------------------------------------------------------------------- /data/scotland.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/CARstan/HEAD/data/scotland.shp -------------------------------------------------------------------------------- /data/scotland.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/CARstan/HEAD/data/scotland.shx -------------------------------------------------------------------------------- /data/scotland_lip_cancer.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/CARstan/HEAD/data/scotland_lip_cancer.RData -------------------------------------------------------------------------------- /stan/.gitignore: -------------------------------------------------------------------------------- 1 | car_prec 2 | car_sparse 3 | -------------------------------------------------------------------------------- /stan/car_prec.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/CARstan/HEAD/stan/car_prec.stan -------------------------------------------------------------------------------- /stan/car_sparse.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/CARstan/HEAD/stan/car_sparse.stan -------------------------------------------------------------------------------- /stan/iar_sparse.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbjoseph/CARstan/HEAD/stan/iar_sparse.stan --------------------------------------------------------------------------------