From 09195d4c314d9477866ba4bd5cb650c3a7c01e41 Mon Sep 17 00:00:00 2001 From: Stuart Geiger Date: Sun, 16 Jun 2024 08:43:29 -0700 Subject: [PATCH] Fix typo in docstring: trusthworthy->trustworthy (#3712) --- seaborn/categorical.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seaborn/categorical.py b/seaborn/categorical.py index f4bb7837c6..ee8aa0908b 100644 --- a/seaborn/categorical.py +++ b/seaborn/categorical.py @@ -2015,7 +2015,7 @@ def boxenplot( - `"tukey"`: Use log2(n) - 3 levels, covering similar range as boxplot whiskers - `"proportion"`: Leave approximately `outlier_prop` fliers - - `"trusthworthy"`: Extend to level with confidence of at least `trust_alpha` + - `"trustworthy"`: Extend to level with confidence of at least `trust_alpha` - `"full"`: Use log2(n) + 1 levels and extend to most extreme points outlier_prop : float Proportion of data expected to be outliers; used when `k_depth="proportion"`.