From a8fc7a0307c5f84cc530dff19957bcddc637b04f Mon Sep 17 00:00:00 2001 From: Diego Javier Zea Date: Wed, 29 Dec 2021 13:30:00 +0100 Subject: [PATCH] Update boxplot doc (#4014) Update and improve whisker_width documentation (boxplots). --- src/shorthands.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shorthands.jl b/src/shorthands.jl index 0e776533..d8963443 100644 --- a/src/shorthands.jl +++ b/src/shorthands.jl @@ -351,7 +351,7 @@ Make a box and whisker plot. - `whisker_range`: Real. Whiskers extend `whisker_range`*IQR below the first quartile and above the third quartile. Values outside this range are shown as outliers (1.5) - `outliers`: Bool. Show outliers? (true) -- `whisker_width`: Real or Symbol. Length of whiskers (:match) +- `whisker_width`: Real or Symbol. Length of whiskers; the options are `:match` to match the box width, `:half`, or a number to indicate the total length. (:half) # Example ```julia-repl