Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

default ci_prob to 0.94 #37

Merged
merged 1 commit into from
Mar 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/source/api/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ which sometimes requires updating default values, for example to use new algorit

.. py:data:: stats.ci_prob
:type: float
:value: 0.88
:value: 0.94

The default probability of computed credible intervals. Its default value here
is also a friendly reminder of the arbitrary nature of commonly values like 95%
Expand Down
2 changes: 1 addition & 1 deletion src/arviz_base/rcparams.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ def validate_iterable(value):
"plot.max_subplots": (40, _validate_positive_int_or_none),
"stats.module": ("base", _validate_stats_module),
"stats.ci_kind": ("eti", _make_validate_choice({"eti", "hdi"})),
"stats.ci_prob": (0.88, _validate_probability),
"stats.ci_prob": (0.94, _validate_probability),
"stats.information_criterion": (
"loo",
_make_validate_choice(set(get_args(ICKeyword))),
Expand Down