├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── pkgdown.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── adjust_weights.R ├── adjustr-package.R ├── logprob.R ├── make_spec.R ├── parsing.R └── use_weights.R ├── README.md ├── _pkgdown.yml ├── adjustr.Rproj ├── codecov.yml ├── man ├── adjust_weights.Rd ├── adjustr-package.Rd ├── as.data.frame.adjustr_spec.Rd ├── dplyr.adjustr_spec.Rd ├── extract_samp_stmts.Rd ├── figures │ └── logo.png ├── get_resampling_idxs.Rd ├── make_spec.Rd ├── pull.adjustr_weighted.Rd ├── spec_plot.Rd └── summarize.adjustr_weighted.Rd ├── pkgdown └── favicon │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico ├── tests ├── ex.stan ├── test_model.rda ├── testthat.R └── testthat │ ├── setup.R │ ├── test_logprob.R │ ├── test_parsing.R │ ├── test_spec.R │ ├── test_use.R │ └── test_weights.R └── vignettes ├── .gitignore ├── adjustr.Rmd ├── adjustr.bib └── eightschools_model.rda /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2021 2 | COPYRIGHT HOLDER: Cory McCartan 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/adjust_weights.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/R/adjust_weights.R -------------------------------------------------------------------------------- /R/adjustr-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/R/adjustr-package.R -------------------------------------------------------------------------------- /R/logprob.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/R/logprob.R -------------------------------------------------------------------------------- /R/make_spec.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/R/make_spec.R -------------------------------------------------------------------------------- /R/parsing.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/R/parsing.R -------------------------------------------------------------------------------- /R/use_weights.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/R/use_weights.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /adjustr.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/adjustr.Rproj -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/codecov.yml -------------------------------------------------------------------------------- /man/adjust_weights.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/man/adjust_weights.Rd -------------------------------------------------------------------------------- /man/adjustr-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/man/adjustr-package.Rd -------------------------------------------------------------------------------- /man/as.data.frame.adjustr_spec.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/man/as.data.frame.adjustr_spec.Rd -------------------------------------------------------------------------------- /man/dplyr.adjustr_spec.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/man/dplyr.adjustr_spec.Rd -------------------------------------------------------------------------------- /man/extract_samp_stmts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/man/extract_samp_stmts.Rd -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/get_resampling_idxs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/man/get_resampling_idxs.Rd -------------------------------------------------------------------------------- /man/make_spec.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/man/make_spec.Rd -------------------------------------------------------------------------------- /man/pull.adjustr_weighted.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/man/pull.adjustr_weighted.Rd -------------------------------------------------------------------------------- /man/spec_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/man/spec_plot.Rd -------------------------------------------------------------------------------- /man/summarize.adjustr_weighted.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/man/summarize.adjustr_weighted.Rd -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /tests/ex.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/tests/ex.stan -------------------------------------------------------------------------------- /tests/test_model.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/tests/test_model.rda -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/setup.R: -------------------------------------------------------------------------------- 1 | load("../test_model.rda") -------------------------------------------------------------------------------- /tests/testthat/test_logprob.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/tests/testthat/test_logprob.R -------------------------------------------------------------------------------- /tests/testthat/test_parsing.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/tests/testthat/test_parsing.R -------------------------------------------------------------------------------- /tests/testthat/test_spec.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/tests/testthat/test_spec.R -------------------------------------------------------------------------------- /tests/testthat/test_use.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/tests/testthat/test_use.R -------------------------------------------------------------------------------- /tests/testthat/test_weights.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/tests/testthat/test_weights.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/adjustr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/vignettes/adjustr.Rmd -------------------------------------------------------------------------------- /vignettes/adjustr.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/vignettes/adjustr.bib -------------------------------------------------------------------------------- /vignettes/eightschools_model.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoryMcCartan/adjustr/HEAD/vignettes/eightschools_model.rda --------------------------------------------------------------------------------