Вы можете получить доступ к данным stat_summary
с помощью ggplot_build
.
Сначала сохраните вызов ggplot в объекте:
g <- ggplot(iris, aes(x = Species, y = Petal.Length)) +
geom_jitter(width = 0.5) +
stat_summary(fun.y = mean, geom = "point", color = "red") +
stat_summary(fun.data = mean_cl_boot, fun.args=(conf.int=0.9999), geom = "errorbar", width = 0.4)
Затем с помощью:
ggplot_build(g)$data[[3]]
Вы получите значения, рассчитанные с помощью mean_cl_boot
:
x group y ymin ymax PANEL xmin xmax colour size linetype width alpha
1 1 1 1.462 1.386000 1.543501 1 0.8 1.2 black 0.5 1 0.4 NA
2 2 2 4.260 4.024899 4.462202 1 1.8 2.2 black 0.5 1 0.4 NA
3 3 3 5.552 5.337199 5.798202 1 2.8 3.2 black 0.5 1 0.4 NA
Чтобы получить правильные метки, вы можете сделать:
# extract the data
mcb <- ggplot_build(g)$data[[3]]
# add the labels to the plot
g + geom_text(data = mcb,
aes(x = group, y = ymin, label = round(ymin,2)),
color = "blue",
vjust = 1)
результат:
Но, вероятно, еще лучшей альтернативой является использование пакета ggrepel :
library(ggrepel)
g + geom_label_repel(data = mcb,
aes(x = group, y = ymin, label = round(ymin,2)),
color = "blue",
nudge_x = 0.2,
nudge_y = -0.2)
результат этого: