ggplot2注释R中的层位置

时间:2014-03-18 18:56:39

标签: r ggplot2

在我的情节中,我有传说和文字注释。对于传说,我可以指定

legend.justification=c(1,0), legend.position=c(1,0)

定位相对于绘图区域的位置(例如,顶部,底部)。但是,当我放一个注释图层(http://docs.ggplot2.org/0.9.3.1/annotate.html)时,我似乎只能指定文本的坐标

annotate("text", x = 8e-7, y = 1e-5, label=data.note, size = 5)

而不是绘图区域的位置(我想把文字放在左下角)。对于不同的图,文本的长度(label)可能会有所不同。有没有办法实现这个目标?谢谢!

3 个答案:

答案 0 :(得分:7)

您可以使用这样一个事实:-InfInf将被映射到位置比例的极值,而不会将它们扩展到左下角。需要hjustvjust才能使参考点位于文本的左下角。 [使用jlhoward&#39的模拟数据。]

set.seed(1)
df <- data.frame(x=rnorm(100),y=rnorm(100))

ggplot(df, aes(x,y)) +geom_point()+
  annotate("text",x=-Inf,y=-Inf,hjust=0,vjust=0,label="Text annotation")

enter image description here

答案 1 :(得分:6)

这就是你要找的东西吗?

set.seed(1)
df <- data.frame(x=rnorm(100),y=rnorm(100))
ggplot(df, aes(x,y)) +geom_point()+
  annotate("text",x=min(df$x),y=min(df$y),hjust=.2,label="Text annotation")

可能需要对hjust=...进行一些实验才能将其准确地放在左下角。

答案 2 :(得分:4)

&#34; Inf&#34;当您想要多行文本时,解决方案有问题。另外,文本和面板边缘之间没有边距,这很难看。另一种解决方案要求明确提及不好的数据。

使用annotation_custom可以很好地实现所需的效果(或者在我的示例中,直接使用proto Geom)。您可以配置边距,文本和框校正。 以下代码中的额外奖励是,您可以使用facets=data.frame(cat1='blue', cat2='tall')之类的内容指定要注释的方面。

library("ggplot2")
annotate_textp <- function(label, x, y, facets=NULL, hjust=0, vjust=0, color='black', alpha=NA,
                          family=thm$text$family, size=thm$text$size, fontface=1, lineheight=1.0,
                          box_just=ifelse(c(x,y)<0.5,0,1), margin=unit(size/2, 'pt'), thm=theme_get()) {
  x <- scales::squish_infinite(x)
  y <- scales::squish_infinite(y)
  data <- if (is.null(facets)) data.frame(x=NA) else data.frame(x=NA, facets)

  tg <- grid::textGrob(
    label, x=0, y=0, hjust=hjust, vjust=vjust,
    gp=grid::gpar(col=alpha(color, alpha), fontsize=size, fontfamily=family, fontface=fontface, lineheight=lineheight)
  )
  ts <- grid::unit.c(grid::grobWidth(tg), grid::grobHeight(tg))
  vp <- grid::viewport(x=x, y=y, width=ts[1], height=ts[2], just=box_just)
  tg <- grid::editGrob(tg, x=ts[1]*hjust, y=ts[2]*vjust, vp=vp)
  inner <- grid::grobTree(tg, vp=grid::viewport(width=unit(1, 'npc')-margin*2, height=unit(1, 'npc')-margin*2))

  layer(
    data = NULL,
    stat = StatIdentity,
    position = PositionIdentity,
    geom = GeomCustomAnn,
    inherit.aes = TRUE,
    params = list(
      grob=grid::grobTree(inner), 
      xmin=-Inf, 
      xmax=Inf, 
      ymin=-Inf, 
      ymax=Inf
    )
  )
}

qplot(1:10,1:10) + annotate_text2('some long text\nx = 1', x=0.5, y=0.5, hjust=1)