8

以前的这张海报一样,我也geom_text用来注释 gglot2 中的图。而且我想将这些注释定位在相对坐标(侧面 H 和 W 的比例)而不是数据坐标中。对于大多数情节来说很容易,但就我而言,我正在处理直方图。我确信关于 y 比例的相关信息必须潜伏在绘图对象的某个地方(添加后geom_histogram),但我看不到在哪里。

我的问题:如何从包含的多面 ggplot2 对象中读取最大条形高度geom_histogram?任何人都可以帮忙吗?

4

1 回答 1

5

尝试这个:

library(plyr)
library(scales)

p <- ggplot(mtcars, aes(mpg)) + geom_histogram(aes(y = ..density..)) + facet_wrap(~am)
r <- print(p)
# in data coordinate
(dc <- dlply(r$data[[1]], .(PANEL), function(x) max(x$density)))
(mx <- dlply(r$data[[1]], .(PANEL), function(x) x[which.max(x$density), ]$x))

# add annotation (see figure below)
p + geom_text(aes(x, y, label = text), 
  data = data.frame(x = unlist(mx), y = unlist(dc), text = LETTERS[1:2], am = 0:1),
  colour = "red", vjust = 0)


# scale range
(yr <- llply(r$panel$ranges, "[[", "y.range"))
# in relative coordinates
(rc <- mapply(function(d, y) rescale(d, from = y), dc, yr))

在此处输入图像描述

于 2012-10-10T21:41:21.557 回答