Skip to content

Commit

Permalink
Link to error bar tutorial from parameter documentation (#3595)
Browse files Browse the repository at this point in the history
  • Loading branch information
mwaskom authored Dec 17, 2023
1 parent 865618d commit d847667
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion seaborn/_statistics.py
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,8 @@ def __init__(self, estimator, errorbar=None, **boot_kws):
errorbar : string, (string, number) tuple, or callable
Name of errorbar method (either "ci", "pi", "se", or "sd"), or a tuple
with a method name and a level parameter, or a function that maps from a
vector to a (min, max) interval.
vector to a (min, max) interval, or None to hide errorbar. See the
:doc:`errorbar tutorial </tutorial/error_bars>` for more information.
boot_kws
Additional keywords are passed to bootstrap when error_method is "ci".
Expand Down
3 changes: 2 additions & 1 deletion seaborn/categorical.py
Original file line number Diff line number Diff line change
Expand Up @@ -1384,7 +1384,8 @@ class _CategoricalAggPlotter(_CategoricalPlotter):
errorbar : string, (string, number) tuple, callable or None
Name of errorbar method (either "ci", "pi", "se", or "sd"), or a tuple
with a method name and a level parameter, or a function that maps from a
vector to a (min, max) interval, or None to hide errorbar.
vector to a (min, max) interval, or None to hide errorbar. See the
:doc:`errorbar tutorial </tutorial/error_bars>` for more information.
.. versionadded:: v0.12.0
n_boot : int
Expand Down

0 comments on commit d847667

Please sign in to comment.