From c5b5e1afbfcd35d759a6c568f719f7017b9e3b97 Mon Sep 17 00:00:00 2001 From: aloctavodia Date: Wed, 25 Sep 2024 12:16:05 -0300 Subject: [PATCH] set plot_ic_diff and legend to False by default --- arviz/plots/compareplot.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/arviz/plots/compareplot.py b/arviz/plots/compareplot.py index d567a8c798..a17ca0176c 100644 --- a/arviz/plots/compareplot.py +++ b/arviz/plots/compareplot.py @@ -11,9 +11,9 @@ def plot_compare( comp_df, insample_dev=False, plot_standard_error=True, - plot_ic_diff=True, + plot_ic_diff=False, order_by_rank=True, - legend=True, + legend=False, title=True, figsize=None, textsize=None, @@ -45,12 +45,12 @@ def plot_compare( penalization given by the effective number of parameters (p_loo or p_waic). plot_standard_error : bool, default True Plot the standard error of the ELPD. - plot_ic_diff : bool, default True + plot_ic_diff : bool, default False Plot standard error of the difference in ELPD between each model and the top-ranked model. order_by_rank : bool, default True If True ensure the best model is used as reference. - legend : bool, default True + legend : bool, default False Add legend to figure. figsize : (float, float), optional If `None`, size is (6, num of models) inches.