Does someone know how to prevent the "whiskers" in ggthemes::geom_tufteboxplot
to be drawn up to the extreme values?
I tried changing the outlier
and whisker
arguments to no avail.
library(ggplot2)
library(ggthemes)
ggplot(iris, aes(Species, Sepal.Length)) +
geom_boxplot()
Whisker extend to 1.5xIQR as usual:
ggplot(iris, aes(Species, Sepal.Length)) +
geom_tufteboxplot()
"Whisker" extend to extreme value
Created on 2020-03-03 by the reprex package (v0.3.0)