├── .Rbuildignore ├── .github ├── DISCUSSION_TEMPLATE │ ├── general.yaml │ ├── help.yaml │ ├── ideas.yaml │ └── show-and-tell.yaml ├── ISSUE_TEMPLATE │ ├── config.yml │ └── feature.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── air.yaml │ ├── check.yaml │ └── cover.yaml ├── .gitignore ├── .lintr ├── CONTRIBUTING.md ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── NOTICE ├── R ├── tar_stan_compile.R ├── tar_stan_example_data.R ├── tar_stan_example_file.R ├── tar_stan_gq.R ├── tar_stan_gq_rep.R ├── tar_stan_gq_rep_draws.R ├── tar_stan_gq_rep_summary.R ├── tar_stan_mcmc.R ├── tar_stan_mcmc_rep.R ├── tar_stan_mcmc_rep_diagnostics.R ├── tar_stan_mcmc_rep_draws.R ├── tar_stan_mcmc_rep_summary.R ├── tar_stan_mle.R ├── tar_stan_mle_rep.R ├── tar_stan_mle_rep_draws.R ├── tar_stan_mle_rep_summary.R ├── tar_stan_package.R ├── tar_stan_summary.R ├── tar_stan_vb.R ├── tar_stan_vb_rep.R ├── tar_stan_vb_rep_draws.R ├── tar_stan_vb_rep_summary.R ├── utils_assert.R ├── utils_data.R ├── utils_language.R ├── utils_logic.R ├── utils_output.R ├── utils_stan.R └── utils_targets.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── codemeta.json ├── inst ├── CITATION ├── NOTICE ├── WORDLIST ├── example.stan ├── paper.bib └── paper.md ├── man ├── figures │ ├── logo-font.svg │ ├── logo-hexbin.png │ ├── logo.png │ └── logo.svg ├── stantargets-package.Rd ├── tar_stan_compile.Rd ├── tar_stan_compile_run.Rd ├── tar_stan_example_data.Rd ├── tar_stan_example_file.Rd ├── tar_stan_gq.Rd ├── tar_stan_gq_rep.Rd ├── tar_stan_gq_rep_draws.Rd ├── tar_stan_gq_rep_run.Rd ├── tar_stan_gq_rep_summary.Rd ├── tar_stan_gq_run.Rd ├── tar_stan_mcmc.Rd ├── tar_stan_mcmc_rep.Rd ├── tar_stan_mcmc_rep_diagnostics.Rd ├── tar_stan_mcmc_rep_draws.Rd ├── tar_stan_mcmc_rep_run.Rd ├── tar_stan_mcmc_rep_summary.Rd ├── tar_stan_mcmc_run.Rd ├── tar_stan_mle.Rd ├── tar_stan_mle_rep.Rd ├── tar_stan_mle_rep_draws.Rd ├── tar_stan_mle_rep_run.Rd ├── tar_stan_mle_rep_summary.Rd ├── tar_stan_mle_run.Rd ├── tar_stan_output.Rd ├── tar_stan_rep_data_batch.Rd ├── tar_stan_summary.Rd ├── tar_stan_summary_join_data.Rd ├── tar_stan_vb.Rd ├── tar_stan_vb_rep.Rd ├── tar_stan_vb_rep_draws.Rd ├── tar_stan_vb_rep_run.Rd ├── tar_stan_vb_rep_summary.Rd └── tar_stan_vb_run.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 ├── stantargets.Rproj ├── tests ├── testthat.R └── testthat │ ├── helper-compile.R │ ├── helper-skip.R │ ├── test-aaa-compile.R │ ├── test-tar_stan_compile.R │ ├── test-tar_stan_example_data.R │ ├── test-tar_stan_gq.R │ ├── test-tar_stan_gq_rep_draws.R │ ├── test-tar_stan_gq_rep_summary.R │ ├── test-tar_stan_mcmc.R │ ├── test-tar_stan_mcmc_rep_diagnostics.R │ ├── test-tar_stan_mcmc_rep_draws.R │ ├── test-tar_stan_mcmc_rep_summary.R │ ├── test-tar_stan_mle.R │ ├── test-tar_stan_mle_rep_draws.R │ ├── test-tar_stan_mle_rep_summary.R │ ├── test-tar_stan_summary.R │ ├── test-tar_stan_vb.R │ ├── test-tar_stan_vb_rep_draws.R │ ├── test-tar_stan_vb_rep_summary.R │ ├── test-utils_assert.R │ ├── test-utils_data.R │ ├── test-utils_logic.R │ └── test-utils_stan.R └── vignettes ├── .gitignore ├── introduction.Rmd ├── simulation.Rmd └── simulation.bib /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/DISCUSSION_TEMPLATE/general.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/.github/DISCUSSION_TEMPLATE/general.yaml -------------------------------------------------------------------------------- /.github/DISCUSSION_TEMPLATE/help.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/.github/DISCUSSION_TEMPLATE/help.yaml -------------------------------------------------------------------------------- /.github/DISCUSSION_TEMPLATE/ideas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/.github/DISCUSSION_TEMPLATE/ideas.yaml -------------------------------------------------------------------------------- /.github/DISCUSSION_TEMPLATE/show-and-tell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/.github/DISCUSSION_TEMPLATE/show-and-tell.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/.github/ISSUE_TEMPLATE/feature.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/air.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/.github/workflows/air.yaml -------------------------------------------------------------------------------- /.github/workflows/check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/.github/workflows/check.yaml -------------------------------------------------------------------------------- /.github/workflows/cover.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/.github/workflows/cover.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/.lintr -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: Eli Lilly and Company 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/NEWS.md -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/NOTICE -------------------------------------------------------------------------------- /R/tar_stan_compile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/R/tar_stan_compile.R -------------------------------------------------------------------------------- /R/tar_stan_example_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/R/tar_stan_example_data.R -------------------------------------------------------------------------------- /R/tar_stan_example_file.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/R/tar_stan_example_file.R -------------------------------------------------------------------------------- /R/tar_stan_gq.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/R/tar_stan_gq.R -------------------------------------------------------------------------------- /R/tar_stan_gq_rep.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/R/tar_stan_gq_rep.R -------------------------------------------------------------------------------- /R/tar_stan_gq_rep_draws.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/R/tar_stan_gq_rep_draws.R -------------------------------------------------------------------------------- /R/tar_stan_gq_rep_summary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/R/tar_stan_gq_rep_summary.R -------------------------------------------------------------------------------- /R/tar_stan_mcmc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/R/tar_stan_mcmc.R -------------------------------------------------------------------------------- /R/tar_stan_mcmc_rep.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/R/tar_stan_mcmc_rep.R -------------------------------------------------------------------------------- /R/tar_stan_mcmc_rep_diagnostics.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/R/tar_stan_mcmc_rep_diagnostics.R -------------------------------------------------------------------------------- /R/tar_stan_mcmc_rep_draws.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/R/tar_stan_mcmc_rep_draws.R -------------------------------------------------------------------------------- /R/tar_stan_mcmc_rep_summary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/R/tar_stan_mcmc_rep_summary.R -------------------------------------------------------------------------------- /R/tar_stan_mle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/R/tar_stan_mle.R -------------------------------------------------------------------------------- /R/tar_stan_mle_rep.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/R/tar_stan_mle_rep.R -------------------------------------------------------------------------------- /R/tar_stan_mle_rep_draws.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/R/tar_stan_mle_rep_draws.R -------------------------------------------------------------------------------- /R/tar_stan_mle_rep_summary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/R/tar_stan_mle_rep_summary.R -------------------------------------------------------------------------------- /R/tar_stan_package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/R/tar_stan_package.R -------------------------------------------------------------------------------- /R/tar_stan_summary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/R/tar_stan_summary.R -------------------------------------------------------------------------------- /R/tar_stan_vb.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/R/tar_stan_vb.R -------------------------------------------------------------------------------- /R/tar_stan_vb_rep.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/R/tar_stan_vb_rep.R -------------------------------------------------------------------------------- /R/tar_stan_vb_rep_draws.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/R/tar_stan_vb_rep_draws.R -------------------------------------------------------------------------------- /R/tar_stan_vb_rep_summary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/R/tar_stan_vb_rep_summary.R -------------------------------------------------------------------------------- /R/utils_assert.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/R/utils_assert.R -------------------------------------------------------------------------------- /R/utils_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/R/utils_data.R -------------------------------------------------------------------------------- /R/utils_language.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/R/utils_language.R -------------------------------------------------------------------------------- /R/utils_logic.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/R/utils_logic.R -------------------------------------------------------------------------------- /R/utils_output.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/R/utils_output.R -------------------------------------------------------------------------------- /R/utils_stan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/R/utils_stan.R -------------------------------------------------------------------------------- /R/utils_targets.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/R/utils_targets.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /codemeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/codemeta.json -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/inst/NOTICE -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /inst/example.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/inst/example.stan -------------------------------------------------------------------------------- /inst/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/inst/paper.bib -------------------------------------------------------------------------------- /inst/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/inst/paper.md -------------------------------------------------------------------------------- /man/figures/logo-font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/figures/logo-font.svg -------------------------------------------------------------------------------- /man/figures/logo-hexbin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/figures/logo-hexbin.png -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/figures/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/figures/logo.svg -------------------------------------------------------------------------------- /man/stantargets-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/stantargets-package.Rd -------------------------------------------------------------------------------- /man/tar_stan_compile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/tar_stan_compile.Rd -------------------------------------------------------------------------------- /man/tar_stan_compile_run.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/tar_stan_compile_run.Rd -------------------------------------------------------------------------------- /man/tar_stan_example_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/tar_stan_example_data.Rd -------------------------------------------------------------------------------- /man/tar_stan_example_file.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/tar_stan_example_file.Rd -------------------------------------------------------------------------------- /man/tar_stan_gq.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/tar_stan_gq.Rd -------------------------------------------------------------------------------- /man/tar_stan_gq_rep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/tar_stan_gq_rep.Rd -------------------------------------------------------------------------------- /man/tar_stan_gq_rep_draws.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/tar_stan_gq_rep_draws.Rd -------------------------------------------------------------------------------- /man/tar_stan_gq_rep_run.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/tar_stan_gq_rep_run.Rd -------------------------------------------------------------------------------- /man/tar_stan_gq_rep_summary.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/tar_stan_gq_rep_summary.Rd -------------------------------------------------------------------------------- /man/tar_stan_gq_run.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/tar_stan_gq_run.Rd -------------------------------------------------------------------------------- /man/tar_stan_mcmc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/tar_stan_mcmc.Rd -------------------------------------------------------------------------------- /man/tar_stan_mcmc_rep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/tar_stan_mcmc_rep.Rd -------------------------------------------------------------------------------- /man/tar_stan_mcmc_rep_diagnostics.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/tar_stan_mcmc_rep_diagnostics.Rd -------------------------------------------------------------------------------- /man/tar_stan_mcmc_rep_draws.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/tar_stan_mcmc_rep_draws.Rd -------------------------------------------------------------------------------- /man/tar_stan_mcmc_rep_run.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/tar_stan_mcmc_rep_run.Rd -------------------------------------------------------------------------------- /man/tar_stan_mcmc_rep_summary.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/tar_stan_mcmc_rep_summary.Rd -------------------------------------------------------------------------------- /man/tar_stan_mcmc_run.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/tar_stan_mcmc_run.Rd -------------------------------------------------------------------------------- /man/tar_stan_mle.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/tar_stan_mle.Rd -------------------------------------------------------------------------------- /man/tar_stan_mle_rep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/tar_stan_mle_rep.Rd -------------------------------------------------------------------------------- /man/tar_stan_mle_rep_draws.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/tar_stan_mle_rep_draws.Rd -------------------------------------------------------------------------------- /man/tar_stan_mle_rep_run.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/tar_stan_mle_rep_run.Rd -------------------------------------------------------------------------------- /man/tar_stan_mle_rep_summary.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/tar_stan_mle_rep_summary.Rd -------------------------------------------------------------------------------- /man/tar_stan_mle_run.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/tar_stan_mle_run.Rd -------------------------------------------------------------------------------- /man/tar_stan_output.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/tar_stan_output.Rd -------------------------------------------------------------------------------- /man/tar_stan_rep_data_batch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/tar_stan_rep_data_batch.Rd -------------------------------------------------------------------------------- /man/tar_stan_summary.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/tar_stan_summary.Rd -------------------------------------------------------------------------------- /man/tar_stan_summary_join_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/tar_stan_summary_join_data.Rd -------------------------------------------------------------------------------- /man/tar_stan_vb.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/tar_stan_vb.Rd -------------------------------------------------------------------------------- /man/tar_stan_vb_rep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/tar_stan_vb_rep.Rd -------------------------------------------------------------------------------- /man/tar_stan_vb_rep_draws.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/tar_stan_vb_rep_draws.Rd -------------------------------------------------------------------------------- /man/tar_stan_vb_rep_run.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/tar_stan_vb_rep_run.Rd -------------------------------------------------------------------------------- /man/tar_stan_vb_rep_summary.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/tar_stan_vb_rep_summary.Rd -------------------------------------------------------------------------------- /man/tar_stan_vb_run.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/man/tar_stan_vb_run.Rd -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /stantargets.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/stantargets.Rproj -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/helper-compile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/tests/testthat/helper-compile.R -------------------------------------------------------------------------------- /tests/testthat/helper-skip.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/tests/testthat/helper-skip.R -------------------------------------------------------------------------------- /tests/testthat/test-aaa-compile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/tests/testthat/test-aaa-compile.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_stan_compile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/tests/testthat/test-tar_stan_compile.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_stan_example_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/tests/testthat/test-tar_stan_example_data.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_stan_gq.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/tests/testthat/test-tar_stan_gq.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_stan_gq_rep_draws.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/tests/testthat/test-tar_stan_gq_rep_draws.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_stan_gq_rep_summary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/tests/testthat/test-tar_stan_gq_rep_summary.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_stan_mcmc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/tests/testthat/test-tar_stan_mcmc.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_stan_mcmc_rep_diagnostics.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/tests/testthat/test-tar_stan_mcmc_rep_diagnostics.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_stan_mcmc_rep_draws.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/tests/testthat/test-tar_stan_mcmc_rep_draws.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_stan_mcmc_rep_summary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/tests/testthat/test-tar_stan_mcmc_rep_summary.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_stan_mle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/tests/testthat/test-tar_stan_mle.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_stan_mle_rep_draws.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/tests/testthat/test-tar_stan_mle_rep_draws.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_stan_mle_rep_summary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/tests/testthat/test-tar_stan_mle_rep_summary.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_stan_summary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/tests/testthat/test-tar_stan_summary.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_stan_vb.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/tests/testthat/test-tar_stan_vb.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_stan_vb_rep_draws.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/tests/testthat/test-tar_stan_vb_rep_draws.R -------------------------------------------------------------------------------- /tests/testthat/test-tar_stan_vb_rep_summary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/tests/testthat/test-tar_stan_vb_rep_summary.R -------------------------------------------------------------------------------- /tests/testthat/test-utils_assert.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/tests/testthat/test-utils_assert.R -------------------------------------------------------------------------------- /tests/testthat/test-utils_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/tests/testthat/test-utils_data.R -------------------------------------------------------------------------------- /tests/testthat/test-utils_logic.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/tests/testthat/test-utils_logic.R -------------------------------------------------------------------------------- /tests/testthat/test-utils_stan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/tests/testthat/test-utils_stan.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/vignettes/.gitignore -------------------------------------------------------------------------------- /vignettes/introduction.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/vignettes/introduction.Rmd -------------------------------------------------------------------------------- /vignettes/simulation.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/vignettes/simulation.Rmd -------------------------------------------------------------------------------- /vignettes/simulation.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/stantargets/HEAD/vignettes/simulation.bib --------------------------------------------------------------------------------