From d8476676a066c137ac43d50ad49b3ee586ea580f Mon Sep 17 00:00:00 2001 From: Michael Waskom Date: Sun, 17 Dec 2023 17:43:32 -0500 Subject: [PATCH] Link to error bar tutorial from parameter documentation (#3595) --- seaborn/_statistics.py | 3 ++- seaborn/categorical.py | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/seaborn/_statistics.py b/seaborn/_statistics.py index 98fa5158db..01211c9533 100644 --- a/seaborn/_statistics.py +++ b/seaborn/_statistics.py @@ -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 ` for more information. boot_kws Additional keywords are passed to bootstrap when error_method is "ci". diff --git a/seaborn/categorical.py b/seaborn/categorical.py index 03b22681c8..2e12141aa3 100644 --- a/seaborn/categorical.py +++ b/seaborn/categorical.py @@ -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 ` for more information. .. versionadded:: v0.12.0 n_boot : int