From 6c51b3035da2c620fce1fe06489a5a76334ac076 Mon Sep 17 00:00:00 2001 From: aloctavodia Date: Thu, 27 Feb 2025 09:56:32 +0200 Subject: [PATCH] use continuous outcome for plot_ppc_dist example --- .../gallery/posterior_predictive_checks/plot_ppc_dist.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/source/gallery/posterior_predictive_checks/plot_ppc_dist.py b/docs/source/gallery/posterior_predictive_checks/plot_ppc_dist.py index 3d3397b5..9147ed00 100644 --- a/docs/source/gallery/posterior_predictive_checks/plot_ppc_dist.py +++ b/docs/source/gallery/posterior_predictive_checks/plot_ppc_dist.py @@ -15,11 +15,9 @@ azp.style.use("arviz-variat") -dt = load_arviz_data("rugby") +dt = load_arviz_data("radon") pc = azp.plot_ppc_dist( dt, - pc_kwargs={"aes": {"color": ["__variable__"]}}, # map variable to color - aes_map={"title": ["color"]}, # change title's color per variable backend="none", ) pc.show()