├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── hypothesis.yml │ ├── post-release.yml │ ├── publish.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .pylintrc ├── .readthedocs.yaml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── References.md ├── docs ├── source │ ├── _static │ │ ├── ArviZ.png │ │ ├── ArviZ_white.png │ │ ├── bokeh-logo-dark.svg │ │ ├── bokeh-logo-light.svg │ │ ├── custom.css │ │ ├── favicon.ico │ │ ├── matplotlib-logo-dark.svg │ │ ├── matplotlib-logo-light.svg │ │ ├── none-logo-light.png │ │ ├── plotly-logo-dark.png │ │ └── plotly-logo-light.png │ ├── _templates │ │ └── name.html │ ├── api │ │ ├── backend │ │ │ ├── bokeh.part.rst │ │ │ ├── index.rst │ │ │ ├── interface.template.rst │ │ │ ├── matplotlib.part.rst │ │ │ ├── none.part.rst │ │ │ └── plotly.part.rst │ │ ├── helpers.rst │ │ ├── index.md │ │ ├── managers.rst │ │ ├── plots.rst │ │ └── visuals.rst │ ├── conf.py │ ├── contributing │ │ ├── docs.md │ │ ├── new_plot.md │ │ └── testing.md │ ├── gallery │ │ ├── distribution │ │ │ ├── 00_plot_dist_ecdf.py │ │ │ ├── 01_plot_dist_hist.py │ │ │ ├── 02_plot_dist_kde.py │ │ │ ├── 04_plot_forest.py │ │ │ ├── 05_plot_forest_shade.py │ │ │ ├── 06_plot_prior_posterior.py │ │ │ ├── 07_plot_pair_focus_distribution.py │ │ │ ├── 08_plot_pair_distribution.py │ │ │ └── 08_plot_ridge.py │ │ ├── inference_diagnostics │ │ │ ├── 00_plot_rank.py │ │ │ ├── 01_plot_trace.py │ │ │ ├── 02_plot_ess_evolution.py │ │ │ ├── 03_plot_ess_local.py │ │ │ ├── 04_plot_ess_quantile.py │ │ │ ├── 05_plot_ess_models.py │ │ │ ├── 05_plot_mcse.py │ │ │ ├── 06_plot_convergence_dist.py │ │ │ ├── 07_plot_autocorr.py │ │ │ ├── 08_plot_energy.py │ │ │ ├── 09_plot_pair_focus.py │ │ │ ├── 10_plot_pair.py │ │ │ └── 11_plot_parallel.py │ │ ├── mixed │ │ │ ├── 00_plot_rank_dist.py │ │ │ ├── 01_plot_trace_dist.py │ │ │ ├── 02_plot_forest_ess.py │ │ │ └── 03_combine_plots.py │ │ ├── model_comparison │ │ │ ├── 00_plot_compare.py │ │ │ ├── 01_plot_khat.py │ │ │ ├── 02_plot_khat_aesthetics.py │ │ │ ├── 03_plot_khat_facet_cols.py │ │ │ ├── 04_plot_khat_facet_grid.py │ │ │ └── 99_plot_bf.py │ │ ├── posterior_comparison │ │ │ ├── 00_plot_dist_models.py │ │ │ ├── 01_plot_forest_models.py │ │ │ └── 02_plot_ridge_multiple.py │ │ ├── predictive_checks │ │ │ ├── 00_plot_ppc_dist.py │ │ │ ├── 01_plot_ppc_rootogram.py │ │ │ ├── 03_plot_pava_calibration.py │ │ │ ├── 04_plot_ppc_pit.py │ │ │ ├── 05_plot_ppc_coverage.py │ │ │ ├── 06_plot_loo_pit.py │ │ │ ├── 07_plot_ppc_tstat.py │ │ │ ├── 08_plot_ppc_interval.py │ │ │ ├── 09_plot_ppc_censored.py │ │ │ ├── 10_plot_ppc_pava_residuals.py │ │ │ └── 99_plot_forest_pp_obs.py │ │ ├── prior_and_likelihood_sensitivity_checks │ │ │ ├── 00_plot_psense.py │ │ │ └── 01_plot_psense_quantities.py │ │ ├── sbc │ │ │ ├── 00_plot_ecdf_pit.py │ │ │ └── 01_plot_ecdf_coverage.py │ │ └── utils │ │ │ ├── 00_add_reference_lines.py │ │ │ └── 01_add_reference_bands.py │ ├── glossary.md │ ├── index.md │ └── tutorials │ │ ├── compose_own_plot.ipynb │ │ ├── intro_to_plotcollection.ipynb │ │ ├── overview.ipynb │ │ └── plots_intro.ipynb └── sphinxext │ └── gallery_generator.py ├── pyproject.toml ├── src └── arviz_plots │ ├── __init__.py │ ├── _version.py │ ├── backend │ ├── __init__.py │ ├── alias_utils.py │ ├── bokeh │ │ ├── __init__.py │ │ ├── core.py │ │ └── legend.py │ ├── matplotlib │ │ ├── __init__.py │ │ ├── core.py │ │ └── legend.py │ ├── none │ │ ├── __init__.py │ │ ├── core.py │ │ └── legend.py │ └── plotly │ │ ├── __init__.py │ │ ├── core.py │ │ ├── legend.py │ │ └── templates.py │ ├── plot_collection.py │ ├── plot_matrix.py │ ├── plots │ ├── __init__.py │ ├── autocorr_plot.py │ ├── bf_plot.py │ ├── combine.py │ ├── compare_plot.py │ ├── convergence_dist_plot.py │ ├── dist_plot.py │ ├── ecdf_plot.py │ ├── energy_plot.py │ ├── ess_plot.py │ ├── evolution_plot.py │ ├── forest_plot.py │ ├── khat_plot.py │ ├── lm_plot.py │ ├── loo_pit_plot.py │ ├── mcse_plot.py │ ├── pair_focus_plot.py │ ├── pair_plot.py │ ├── parallel_plot.py │ ├── pava_calibration_plot.py │ ├── pava_residual_plot.py │ ├── ppc_censored_plot.py │ ├── ppc_dist_plot.py │ ├── ppc_interval_plot.py │ ├── ppc_pit_plot.py │ ├── ppc_rootogram_plot.py │ ├── ppc_tstat.py │ ├── prior_posterior_plot.py │ ├── psense_dist_plot.py │ ├── psense_quantities_plot.py │ ├── rank_dist_plot.py │ ├── rank_plot.py │ ├── ridge_plot.py │ ├── trace_dist_plot.py │ ├── trace_plot.py │ └── utils.py │ ├── py.typed │ ├── style.py │ ├── styles │ ├── arviz-cetrino.mplstyle │ ├── arviz-cetrino.yml │ ├── arviz-tenui.mplstyle │ ├── arviz-tenui.yml │ ├── arviz-tumma.mplstyle │ ├── arviz-tumma.yml │ ├── arviz-variat.mplstyle │ ├── arviz-variat.yml │ ├── arviz-vibrant.mplstyle │ └── arviz-vibrant.yml │ └── visuals │ └── __init__.py ├── tests ├── __init__.py ├── conftest.py ├── test_backend.py ├── test_fixtures.py ├── test_hypothesis_plots.py ├── test_plot_collection.py ├── test_plot_matrix.py ├── test_plots.py └── test_utils.py └── tox.ini /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/hypothesis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/.github/workflows/hypothesis.yml -------------------------------------------------------------------------------- /.github/workflows/post-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/.github/workflows/post-release.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/.pylintrc -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/README.md -------------------------------------------------------------------------------- /References.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/References.md -------------------------------------------------------------------------------- /docs/source/_static/ArviZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/_static/ArviZ.png -------------------------------------------------------------------------------- /docs/source/_static/ArviZ_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/_static/ArviZ_white.png -------------------------------------------------------------------------------- /docs/source/_static/bokeh-logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/_static/bokeh-logo-dark.svg -------------------------------------------------------------------------------- /docs/source/_static/bokeh-logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/_static/bokeh-logo-light.svg -------------------------------------------------------------------------------- /docs/source/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/_static/custom.css -------------------------------------------------------------------------------- /docs/source/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/_static/favicon.ico -------------------------------------------------------------------------------- /docs/source/_static/matplotlib-logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/_static/matplotlib-logo-dark.svg -------------------------------------------------------------------------------- /docs/source/_static/matplotlib-logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/_static/matplotlib-logo-light.svg -------------------------------------------------------------------------------- /docs/source/_static/none-logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/_static/none-logo-light.png -------------------------------------------------------------------------------- /docs/source/_static/plotly-logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/_static/plotly-logo-dark.png -------------------------------------------------------------------------------- /docs/source/_static/plotly-logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/_static/plotly-logo-light.png -------------------------------------------------------------------------------- /docs/source/_templates/name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/_templates/name.html -------------------------------------------------------------------------------- /docs/source/api/backend/bokeh.part.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/api/backend/bokeh.part.rst -------------------------------------------------------------------------------- /docs/source/api/backend/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/api/backend/index.rst -------------------------------------------------------------------------------- /docs/source/api/backend/interface.template.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/api/backend/interface.template.rst -------------------------------------------------------------------------------- /docs/source/api/backend/matplotlib.part.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/api/backend/matplotlib.part.rst -------------------------------------------------------------------------------- /docs/source/api/backend/none.part.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/api/backend/none.part.rst -------------------------------------------------------------------------------- /docs/source/api/backend/plotly.part.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/api/backend/plotly.part.rst -------------------------------------------------------------------------------- /docs/source/api/helpers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/api/helpers.rst -------------------------------------------------------------------------------- /docs/source/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/api/index.md -------------------------------------------------------------------------------- /docs/source/api/managers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/api/managers.rst -------------------------------------------------------------------------------- /docs/source/api/plots.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/api/plots.rst -------------------------------------------------------------------------------- /docs/source/api/visuals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/api/visuals.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/contributing/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/contributing/docs.md -------------------------------------------------------------------------------- /docs/source/contributing/new_plot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/contributing/new_plot.md -------------------------------------------------------------------------------- /docs/source/contributing/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/contributing/testing.md -------------------------------------------------------------------------------- /docs/source/gallery/distribution/00_plot_dist_ecdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/distribution/00_plot_dist_ecdf.py -------------------------------------------------------------------------------- /docs/source/gallery/distribution/01_plot_dist_hist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/distribution/01_plot_dist_hist.py -------------------------------------------------------------------------------- /docs/source/gallery/distribution/02_plot_dist_kde.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/distribution/02_plot_dist_kde.py -------------------------------------------------------------------------------- /docs/source/gallery/distribution/04_plot_forest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/distribution/04_plot_forest.py -------------------------------------------------------------------------------- /docs/source/gallery/distribution/05_plot_forest_shade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/distribution/05_plot_forest_shade.py -------------------------------------------------------------------------------- /docs/source/gallery/distribution/06_plot_prior_posterior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/distribution/06_plot_prior_posterior.py -------------------------------------------------------------------------------- /docs/source/gallery/distribution/07_plot_pair_focus_distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/distribution/07_plot_pair_focus_distribution.py -------------------------------------------------------------------------------- /docs/source/gallery/distribution/08_plot_pair_distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/distribution/08_plot_pair_distribution.py -------------------------------------------------------------------------------- /docs/source/gallery/distribution/08_plot_ridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/distribution/08_plot_ridge.py -------------------------------------------------------------------------------- /docs/source/gallery/inference_diagnostics/00_plot_rank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/inference_diagnostics/00_plot_rank.py -------------------------------------------------------------------------------- /docs/source/gallery/inference_diagnostics/01_plot_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/inference_diagnostics/01_plot_trace.py -------------------------------------------------------------------------------- /docs/source/gallery/inference_diagnostics/02_plot_ess_evolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/inference_diagnostics/02_plot_ess_evolution.py -------------------------------------------------------------------------------- /docs/source/gallery/inference_diagnostics/03_plot_ess_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/inference_diagnostics/03_plot_ess_local.py -------------------------------------------------------------------------------- /docs/source/gallery/inference_diagnostics/04_plot_ess_quantile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/inference_diagnostics/04_plot_ess_quantile.py -------------------------------------------------------------------------------- /docs/source/gallery/inference_diagnostics/05_plot_ess_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/inference_diagnostics/05_plot_ess_models.py -------------------------------------------------------------------------------- /docs/source/gallery/inference_diagnostics/05_plot_mcse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/inference_diagnostics/05_plot_mcse.py -------------------------------------------------------------------------------- /docs/source/gallery/inference_diagnostics/06_plot_convergence_dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/inference_diagnostics/06_plot_convergence_dist.py -------------------------------------------------------------------------------- /docs/source/gallery/inference_diagnostics/07_plot_autocorr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/inference_diagnostics/07_plot_autocorr.py -------------------------------------------------------------------------------- /docs/source/gallery/inference_diagnostics/08_plot_energy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/inference_diagnostics/08_plot_energy.py -------------------------------------------------------------------------------- /docs/source/gallery/inference_diagnostics/09_plot_pair_focus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/inference_diagnostics/09_plot_pair_focus.py -------------------------------------------------------------------------------- /docs/source/gallery/inference_diagnostics/10_plot_pair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/inference_diagnostics/10_plot_pair.py -------------------------------------------------------------------------------- /docs/source/gallery/inference_diagnostics/11_plot_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/inference_diagnostics/11_plot_parallel.py -------------------------------------------------------------------------------- /docs/source/gallery/mixed/00_plot_rank_dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/mixed/00_plot_rank_dist.py -------------------------------------------------------------------------------- /docs/source/gallery/mixed/01_plot_trace_dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/mixed/01_plot_trace_dist.py -------------------------------------------------------------------------------- /docs/source/gallery/mixed/02_plot_forest_ess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/mixed/02_plot_forest_ess.py -------------------------------------------------------------------------------- /docs/source/gallery/mixed/03_combine_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/mixed/03_combine_plots.py -------------------------------------------------------------------------------- /docs/source/gallery/model_comparison/00_plot_compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/model_comparison/00_plot_compare.py -------------------------------------------------------------------------------- /docs/source/gallery/model_comparison/01_plot_khat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/model_comparison/01_plot_khat.py -------------------------------------------------------------------------------- /docs/source/gallery/model_comparison/02_plot_khat_aesthetics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/model_comparison/02_plot_khat_aesthetics.py -------------------------------------------------------------------------------- /docs/source/gallery/model_comparison/03_plot_khat_facet_cols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/model_comparison/03_plot_khat_facet_cols.py -------------------------------------------------------------------------------- /docs/source/gallery/model_comparison/04_plot_khat_facet_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/model_comparison/04_plot_khat_facet_grid.py -------------------------------------------------------------------------------- /docs/source/gallery/model_comparison/99_plot_bf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/model_comparison/99_plot_bf.py -------------------------------------------------------------------------------- /docs/source/gallery/posterior_comparison/00_plot_dist_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/posterior_comparison/00_plot_dist_models.py -------------------------------------------------------------------------------- /docs/source/gallery/posterior_comparison/01_plot_forest_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/posterior_comparison/01_plot_forest_models.py -------------------------------------------------------------------------------- /docs/source/gallery/posterior_comparison/02_plot_ridge_multiple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/posterior_comparison/02_plot_ridge_multiple.py -------------------------------------------------------------------------------- /docs/source/gallery/predictive_checks/00_plot_ppc_dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/predictive_checks/00_plot_ppc_dist.py -------------------------------------------------------------------------------- /docs/source/gallery/predictive_checks/01_plot_ppc_rootogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/predictive_checks/01_plot_ppc_rootogram.py -------------------------------------------------------------------------------- /docs/source/gallery/predictive_checks/03_plot_pava_calibration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/predictive_checks/03_plot_pava_calibration.py -------------------------------------------------------------------------------- /docs/source/gallery/predictive_checks/04_plot_ppc_pit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/predictive_checks/04_plot_ppc_pit.py -------------------------------------------------------------------------------- /docs/source/gallery/predictive_checks/05_plot_ppc_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/predictive_checks/05_plot_ppc_coverage.py -------------------------------------------------------------------------------- /docs/source/gallery/predictive_checks/06_plot_loo_pit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/predictive_checks/06_plot_loo_pit.py -------------------------------------------------------------------------------- /docs/source/gallery/predictive_checks/07_plot_ppc_tstat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/predictive_checks/07_plot_ppc_tstat.py -------------------------------------------------------------------------------- /docs/source/gallery/predictive_checks/08_plot_ppc_interval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/predictive_checks/08_plot_ppc_interval.py -------------------------------------------------------------------------------- /docs/source/gallery/predictive_checks/09_plot_ppc_censored.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/predictive_checks/09_plot_ppc_censored.py -------------------------------------------------------------------------------- /docs/source/gallery/predictive_checks/10_plot_ppc_pava_residuals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/predictive_checks/10_plot_ppc_pava_residuals.py -------------------------------------------------------------------------------- /docs/source/gallery/predictive_checks/99_plot_forest_pp_obs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/predictive_checks/99_plot_forest_pp_obs.py -------------------------------------------------------------------------------- /docs/source/gallery/prior_and_likelihood_sensitivity_checks/00_plot_psense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/prior_and_likelihood_sensitivity_checks/00_plot_psense.py -------------------------------------------------------------------------------- /docs/source/gallery/prior_and_likelihood_sensitivity_checks/01_plot_psense_quantities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/prior_and_likelihood_sensitivity_checks/01_plot_psense_quantities.py -------------------------------------------------------------------------------- /docs/source/gallery/sbc/00_plot_ecdf_pit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/sbc/00_plot_ecdf_pit.py -------------------------------------------------------------------------------- /docs/source/gallery/sbc/01_plot_ecdf_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/sbc/01_plot_ecdf_coverage.py -------------------------------------------------------------------------------- /docs/source/gallery/utils/00_add_reference_lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/utils/00_add_reference_lines.py -------------------------------------------------------------------------------- /docs/source/gallery/utils/01_add_reference_bands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/gallery/utils/01_add_reference_bands.py -------------------------------------------------------------------------------- /docs/source/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/glossary.md -------------------------------------------------------------------------------- /docs/source/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/index.md -------------------------------------------------------------------------------- /docs/source/tutorials/compose_own_plot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/tutorials/compose_own_plot.ipynb -------------------------------------------------------------------------------- /docs/source/tutorials/intro_to_plotcollection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/tutorials/intro_to_plotcollection.ipynb -------------------------------------------------------------------------------- /docs/source/tutorials/overview.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/tutorials/overview.ipynb -------------------------------------------------------------------------------- /docs/source/tutorials/plots_intro.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/source/tutorials/plots_intro.ipynb -------------------------------------------------------------------------------- /docs/sphinxext/gallery_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/docs/sphinxext/gallery_generator.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/arviz_plots/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/__init__.py -------------------------------------------------------------------------------- /src/arviz_plots/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/_version.py -------------------------------------------------------------------------------- /src/arviz_plots/backend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/backend/__init__.py -------------------------------------------------------------------------------- /src/arviz_plots/backend/alias_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/backend/alias_utils.py -------------------------------------------------------------------------------- /src/arviz_plots/backend/bokeh/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/backend/bokeh/__init__.py -------------------------------------------------------------------------------- /src/arviz_plots/backend/bokeh/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/backend/bokeh/core.py -------------------------------------------------------------------------------- /src/arviz_plots/backend/bokeh/legend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/backend/bokeh/legend.py -------------------------------------------------------------------------------- /src/arviz_plots/backend/matplotlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/backend/matplotlib/__init__.py -------------------------------------------------------------------------------- /src/arviz_plots/backend/matplotlib/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/backend/matplotlib/core.py -------------------------------------------------------------------------------- /src/arviz_plots/backend/matplotlib/legend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/backend/matplotlib/legend.py -------------------------------------------------------------------------------- /src/arviz_plots/backend/none/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/backend/none/__init__.py -------------------------------------------------------------------------------- /src/arviz_plots/backend/none/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/backend/none/core.py -------------------------------------------------------------------------------- /src/arviz_plots/backend/none/legend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/backend/none/legend.py -------------------------------------------------------------------------------- /src/arviz_plots/backend/plotly/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/backend/plotly/__init__.py -------------------------------------------------------------------------------- /src/arviz_plots/backend/plotly/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/backend/plotly/core.py -------------------------------------------------------------------------------- /src/arviz_plots/backend/plotly/legend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/backend/plotly/legend.py -------------------------------------------------------------------------------- /src/arviz_plots/backend/plotly/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/backend/plotly/templates.py -------------------------------------------------------------------------------- /src/arviz_plots/plot_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plot_collection.py -------------------------------------------------------------------------------- /src/arviz_plots/plot_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plot_matrix.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/__init__.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/autocorr_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/autocorr_plot.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/bf_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/bf_plot.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/combine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/combine.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/compare_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/compare_plot.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/convergence_dist_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/convergence_dist_plot.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/dist_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/dist_plot.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/ecdf_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/ecdf_plot.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/energy_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/energy_plot.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/ess_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/ess_plot.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/evolution_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/evolution_plot.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/forest_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/forest_plot.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/khat_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/khat_plot.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/lm_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/lm_plot.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/loo_pit_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/loo_pit_plot.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/mcse_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/mcse_plot.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/pair_focus_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/pair_focus_plot.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/pair_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/pair_plot.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/parallel_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/parallel_plot.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/pava_calibration_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/pava_calibration_plot.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/pava_residual_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/pava_residual_plot.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/ppc_censored_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/ppc_censored_plot.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/ppc_dist_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/ppc_dist_plot.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/ppc_interval_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/ppc_interval_plot.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/ppc_pit_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/ppc_pit_plot.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/ppc_rootogram_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/ppc_rootogram_plot.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/ppc_tstat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/ppc_tstat.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/prior_posterior_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/prior_posterior_plot.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/psense_dist_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/psense_dist_plot.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/psense_quantities_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/psense_quantities_plot.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/rank_dist_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/rank_dist_plot.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/rank_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/rank_plot.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/ridge_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/ridge_plot.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/trace_dist_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/trace_dist_plot.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/trace_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/trace_plot.py -------------------------------------------------------------------------------- /src/arviz_plots/plots/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/plots/utils.py -------------------------------------------------------------------------------- /src/arviz_plots/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561 2 | -------------------------------------------------------------------------------- /src/arviz_plots/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/style.py -------------------------------------------------------------------------------- /src/arviz_plots/styles/arviz-cetrino.mplstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/styles/arviz-cetrino.mplstyle -------------------------------------------------------------------------------- /src/arviz_plots/styles/arviz-cetrino.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/styles/arviz-cetrino.yml -------------------------------------------------------------------------------- /src/arviz_plots/styles/arviz-tenui.mplstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/styles/arviz-tenui.mplstyle -------------------------------------------------------------------------------- /src/arviz_plots/styles/arviz-tenui.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/styles/arviz-tenui.yml -------------------------------------------------------------------------------- /src/arviz_plots/styles/arviz-tumma.mplstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/styles/arviz-tumma.mplstyle -------------------------------------------------------------------------------- /src/arviz_plots/styles/arviz-tumma.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/styles/arviz-tumma.yml -------------------------------------------------------------------------------- /src/arviz_plots/styles/arviz-variat.mplstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/styles/arviz-variat.mplstyle -------------------------------------------------------------------------------- /src/arviz_plots/styles/arviz-variat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/styles/arviz-variat.yml -------------------------------------------------------------------------------- /src/arviz_plots/styles/arviz-vibrant.mplstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/styles/arviz-vibrant.mplstyle -------------------------------------------------------------------------------- /src/arviz_plots/styles/arviz-vibrant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/styles/arviz-vibrant.yml -------------------------------------------------------------------------------- /src/arviz_plots/visuals/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/src/arviz_plots/visuals/__init__.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """ArviZ plots test module.""" 2 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/tests/test_backend.py -------------------------------------------------------------------------------- /tests/test_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/tests/test_fixtures.py -------------------------------------------------------------------------------- /tests/test_hypothesis_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/tests/test_hypothesis_plots.py -------------------------------------------------------------------------------- /tests/test_plot_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/tests/test_plot_collection.py -------------------------------------------------------------------------------- /tests/test_plot_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/tests/test_plot_matrix.py -------------------------------------------------------------------------------- /tests/test_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/tests/test_plots.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arviz-devs/arviz-plots/HEAD/tox.ini --------------------------------------------------------------------------------