├── .github └── workflows │ └── python-app.yml ├── .gitignore ├── .readthedocs.yaml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bayesblend ├── __init__.py ├── io.py ├── models.py ├── plot.py └── stan_files │ ├── hierarchical_stacking.stan │ ├── hierarchical_stacking_pooling.stan │ └── stacking.stan ├── docs ├── developer-guide │ ├── contributing.md │ └── index.md ├── index.md ├── stylesheets │ └── extra.css └── user-guide │ ├── arviz.md │ ├── blending.md │ ├── getting-started.md │ ├── index.md │ ├── installation.md │ ├── scripts │ ├── figures │ │ ├── mixture-weights.png │ │ └── stacking-compare.png │ ├── getting_started.py │ └── simulation.py │ └── simulation.md ├── mkdocs.yml ├── poetry.lock ├── pyproject.toml └── test ├── __init__.py ├── conftest.py ├── fixtures.py ├── io_test.py ├── models_test.py ├── plot_test.py ├── stan_data └── bernoulli_data.json └── stan_files ├── bernoulli_ppc.stan ├── bernoulli_ppc_3d.stan └── bernoulli_ppc_diff_name.stan /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/README.md -------------------------------------------------------------------------------- /bayesblend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/bayesblend/__init__.py -------------------------------------------------------------------------------- /bayesblend/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/bayesblend/io.py -------------------------------------------------------------------------------- /bayesblend/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/bayesblend/models.py -------------------------------------------------------------------------------- /bayesblend/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/bayesblend/plot.py -------------------------------------------------------------------------------- /bayesblend/stan_files/hierarchical_stacking.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/bayesblend/stan_files/hierarchical_stacking.stan -------------------------------------------------------------------------------- /bayesblend/stan_files/hierarchical_stacking_pooling.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/bayesblend/stan_files/hierarchical_stacking_pooling.stan -------------------------------------------------------------------------------- /bayesblend/stan_files/stacking.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/bayesblend/stan_files/stacking.stan -------------------------------------------------------------------------------- /docs/developer-guide/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/docs/developer-guide/contributing.md -------------------------------------------------------------------------------- /docs/developer-guide/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/docs/developer-guide/index.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/docs/stylesheets/extra.css -------------------------------------------------------------------------------- /docs/user-guide/arviz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/docs/user-guide/arviz.md -------------------------------------------------------------------------------- /docs/user-guide/blending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/docs/user-guide/blending.md -------------------------------------------------------------------------------- /docs/user-guide/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/docs/user-guide/getting-started.md -------------------------------------------------------------------------------- /docs/user-guide/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/docs/user-guide/index.md -------------------------------------------------------------------------------- /docs/user-guide/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/docs/user-guide/installation.md -------------------------------------------------------------------------------- /docs/user-guide/scripts/figures/mixture-weights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/docs/user-guide/scripts/figures/mixture-weights.png -------------------------------------------------------------------------------- /docs/user-guide/scripts/figures/stacking-compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/docs/user-guide/scripts/figures/stacking-compare.png -------------------------------------------------------------------------------- /docs/user-guide/scripts/getting_started.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/docs/user-guide/scripts/getting_started.py -------------------------------------------------------------------------------- /docs/user-guide/scripts/simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/docs/user-guide/scripts/simulation.py -------------------------------------------------------------------------------- /docs/user-guide/simulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/docs/user-guide/simulation.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/pyproject.toml -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/test/fixtures.py -------------------------------------------------------------------------------- /test/io_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/test/io_test.py -------------------------------------------------------------------------------- /test/models_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/test/models_test.py -------------------------------------------------------------------------------- /test/plot_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/test/plot_test.py -------------------------------------------------------------------------------- /test/stan_data/bernoulli_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/test/stan_data/bernoulli_data.json -------------------------------------------------------------------------------- /test/stan_files/bernoulli_ppc.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/test/stan_files/bernoulli_ppc.stan -------------------------------------------------------------------------------- /test/stan_files/bernoulli_ppc_3d.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/test/stan_files/bernoulli_ppc_3d.stan -------------------------------------------------------------------------------- /test/stan_files/bernoulli_ppc_diff_name.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerInvesting/bayesblend/HEAD/test/stan_files/bernoulli_ppc_diff_name.stan --------------------------------------------------------------------------------