Обновление
В дополнение к опциям, описанным ниже, версия 0.9.0 ggplot2 включает эту функцию в geom_boxplot
. Изучение ?geom_boxplot
показывает аргументы notch
и notchwidth
:
+ geom_boxplot(notch = TRUE, notchwidth = 0.5)
Не элегантная графика, но вот пример:
# confidence interval calculated by `boxplot.stats`
f <- function(x) {
ans <- boxplot.stats(x)
data.frame(ymin = ans$conf[1], ymax = ans$conf[2])
}
# overlay plot (upper panel below)
p <- ggplot(iris, aes(Species, Sepal.Length)) + geom_boxplot() +
stat_summary(fun.data = f, geom = "linerange", colour = "skyblue", size = 5)
p
# base graphics (lower panel below)
boxplot(Sepal.Length ~ Species, data = iris, notch = TRUE)
Вы можете изменить внешний вид панели CI, настроив аргументы stat_summary
.
ригельная версия:
f <- function(x) {
ans <- boxplot.stats(x)
data.frame(ymin = ans$conf[1], ymax = ans$conf[2], y = ans$stats[3])
}
p <- ggplot(iris, aes(Species, Sepal.Length)) +
geom_boxplot(width = 0.8) +
stat_summary(fun.data = f, geom = "crossbar",
colour = NA, fill = "skyblue", width = 0.8, alpha = 0.5)
p