├── .gitignore ├── .travis.yml ├── 01-mrp.Rmd ├── 02-mrp_noncensus.Rmd ├── 03-mrp_ideal.Rmd ├── 04-references.Rmd ├── README.md ├── _bookdown.yml ├── _build.sh ├── _deploy.sh ├── _output.yml ├── book.bib ├── data_public ├── chapter1 │ ├── data │ │ ├── cces18_common_vv.csv.gz │ │ ├── poststrat_df.csv │ │ └── statelevel_predictors.csv │ ├── models │ │ ├── fit_mrp_1.rds │ │ └── fit_mrp_2.rds │ └── screenshots │ │ ├── screenshot1.png │ │ ├── screenshot2.png │ │ ├── screenshot3.png │ │ ├── screenshot4.PNG │ │ └── screenshot5.PNG ├── chapter2 │ └── models │ │ ├── fit_abortion_noncensus.rds │ │ ├── fit_abortion_standard.rds │ │ └── fit_party_example.rds └── chapter3 │ └── idealpoint.stan ├── index.Rmd ├── mrp-case.Rproj ├── mrp.bib ├── now.json ├── packages.bib ├── preamble.tex ├── style.css └── toc.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanLopezMartin/MRPCaseStudy/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanLopezMartin/MRPCaseStudy/HEAD/.travis.yml -------------------------------------------------------------------------------- /01-mrp.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanLopezMartin/MRPCaseStudy/HEAD/01-mrp.Rmd -------------------------------------------------------------------------------- /02-mrp_noncensus.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanLopezMartin/MRPCaseStudy/HEAD/02-mrp_noncensus.Rmd -------------------------------------------------------------------------------- /03-mrp_ideal.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanLopezMartin/MRPCaseStudy/HEAD/03-mrp_ideal.Rmd -------------------------------------------------------------------------------- /04-references.Rmd: -------------------------------------------------------------------------------- 1 | `r if (knitr:::is_html_output()) ' 2 | # References {-} 3 | '` 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanLopezMartin/MRPCaseStudy/HEAD/README.md -------------------------------------------------------------------------------- /_bookdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanLopezMartin/MRPCaseStudy/HEAD/_bookdown.yml -------------------------------------------------------------------------------- /_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanLopezMartin/MRPCaseStudy/HEAD/_build.sh -------------------------------------------------------------------------------- /_deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanLopezMartin/MRPCaseStudy/HEAD/_deploy.sh -------------------------------------------------------------------------------- /_output.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanLopezMartin/MRPCaseStudy/HEAD/_output.yml -------------------------------------------------------------------------------- /book.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanLopezMartin/MRPCaseStudy/HEAD/book.bib -------------------------------------------------------------------------------- /data_public/chapter1/data/cces18_common_vv.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanLopezMartin/MRPCaseStudy/HEAD/data_public/chapter1/data/cces18_common_vv.csv.gz -------------------------------------------------------------------------------- /data_public/chapter1/data/poststrat_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanLopezMartin/MRPCaseStudy/HEAD/data_public/chapter1/data/poststrat_df.csv -------------------------------------------------------------------------------- /data_public/chapter1/data/statelevel_predictors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanLopezMartin/MRPCaseStudy/HEAD/data_public/chapter1/data/statelevel_predictors.csv -------------------------------------------------------------------------------- /data_public/chapter1/models/fit_mrp_1.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanLopezMartin/MRPCaseStudy/HEAD/data_public/chapter1/models/fit_mrp_1.rds -------------------------------------------------------------------------------- /data_public/chapter1/models/fit_mrp_2.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanLopezMartin/MRPCaseStudy/HEAD/data_public/chapter1/models/fit_mrp_2.rds -------------------------------------------------------------------------------- /data_public/chapter1/screenshots/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanLopezMartin/MRPCaseStudy/HEAD/data_public/chapter1/screenshots/screenshot1.png -------------------------------------------------------------------------------- /data_public/chapter1/screenshots/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanLopezMartin/MRPCaseStudy/HEAD/data_public/chapter1/screenshots/screenshot2.png -------------------------------------------------------------------------------- /data_public/chapter1/screenshots/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanLopezMartin/MRPCaseStudy/HEAD/data_public/chapter1/screenshots/screenshot3.png -------------------------------------------------------------------------------- /data_public/chapter1/screenshots/screenshot4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanLopezMartin/MRPCaseStudy/HEAD/data_public/chapter1/screenshots/screenshot4.PNG -------------------------------------------------------------------------------- /data_public/chapter1/screenshots/screenshot5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanLopezMartin/MRPCaseStudy/HEAD/data_public/chapter1/screenshots/screenshot5.PNG -------------------------------------------------------------------------------- /data_public/chapter2/models/fit_abortion_noncensus.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanLopezMartin/MRPCaseStudy/HEAD/data_public/chapter2/models/fit_abortion_noncensus.rds -------------------------------------------------------------------------------- /data_public/chapter2/models/fit_abortion_standard.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanLopezMartin/MRPCaseStudy/HEAD/data_public/chapter2/models/fit_abortion_standard.rds -------------------------------------------------------------------------------- /data_public/chapter2/models/fit_party_example.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanLopezMartin/MRPCaseStudy/HEAD/data_public/chapter2/models/fit_party_example.rds -------------------------------------------------------------------------------- /data_public/chapter3/idealpoint.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanLopezMartin/MRPCaseStudy/HEAD/data_public/chapter3/idealpoint.stan -------------------------------------------------------------------------------- /index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanLopezMartin/MRPCaseStudy/HEAD/index.Rmd -------------------------------------------------------------------------------- /mrp-case.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanLopezMartin/MRPCaseStudy/HEAD/mrp-case.Rproj -------------------------------------------------------------------------------- /mrp.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanLopezMartin/MRPCaseStudy/HEAD/mrp.bib -------------------------------------------------------------------------------- /now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanLopezMartin/MRPCaseStudy/HEAD/now.json -------------------------------------------------------------------------------- /packages.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanLopezMartin/MRPCaseStudy/HEAD/packages.bib -------------------------------------------------------------------------------- /preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanLopezMartin/MRPCaseStudy/HEAD/preamble.tex -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanLopezMartin/MRPCaseStudy/HEAD/style.css -------------------------------------------------------------------------------- /toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanLopezMartin/MRPCaseStudy/HEAD/toc.css --------------------------------------------------------------------------------