有人知道如何防止“胡须”ggthemes::geom_tufteboxplot
被拉到极端值吗?我尝试更改outlier
andwhisker
参数无济于事。
library(ggplot2)
library(ggthemes)
ggplot(iris, aes(Species, Sepal.Length)) +
geom_boxplot()
Whisker 像往常一样扩展到 1.5xIQR:
ggplot(iris, aes(Species, Sepal.Length)) +
geom_tufteboxplot()
“晶须”延伸至极值
由reprex 包(v0.3.0)于 2020 年 3 月 3 日创建