From 8de47ef0ad4ffaffcd7128b168a217c9e62491f4 Mon Sep 17 00:00:00 2001 From: Ravin Kumar Date: Thu, 3 Jan 2019 23:07:25 -0800 Subject: [PATCH] WIP Commit for forest plot test --- arviz/tests/test_plots.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arviz/tests/test_plots.py b/arviz/tests/test_plots.py index 4ad4c1d61a..94d2ac1792 100644 --- a/arviz/tests/test_plots.py +++ b/arviz/tests/test_plots.py @@ -169,6 +169,8 @@ def test_plot_trace_discrete(discrete_model): ({"r_hat": True, "quartiles": False}, 2), ({"var_names": ["mu"], "colors": "C0", "eff_n": True, "combined": True}, 2), ({"kind": "ridgeplot", "r_hat": True, "eff_n": True}, 3), + ({"var_names": ["mu", "tau"], + "rope": {'mu': [{'rope': (-.1, .1)}], 'tau': [{'rope': (.2, .5)}]}}, 1), ], ) def test_plot_forest(models, model_fits, args_expected):