Skip to content

Commit 7e51ec9

Browse files
authored
set plot_ic_diff and legend to False by default (#2388)
1 parent f09ffd3 commit 7e51ec9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

arviz/plots/compareplot.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ def plot_compare(
1111
comp_df,
1212
insample_dev=False,
1313
plot_standard_error=True,
14-
plot_ic_diff=True,
14+
plot_ic_diff=False,
1515
order_by_rank=True,
16-
legend=True,
16+
legend=False,
1717
title=True,
1818
figsize=None,
1919
textsize=None,
@@ -45,12 +45,12 @@ def plot_compare(
4545
penalization given by the effective number of parameters (p_loo or p_waic).
4646
plot_standard_error : bool, default True
4747
Plot the standard error of the ELPD.
48-
plot_ic_diff : bool, default True
48+
plot_ic_diff : bool, default False
4949
Plot standard error of the difference in ELPD between each model
5050
and the top-ranked model.
5151
order_by_rank : bool, default True
5252
If True ensure the best model is used as reference.
53-
legend : bool, default True
53+
legend : bool, default False
5454
Add legend to figure.
5555
figsize : (float, float), optional
5656
If `None`, size is (6, num of models) inches.

0 commit comments

Comments
 (0)