使用图像注释ggplot2 facets

时间:2012-10-31 06:00:27

标签: r ggplot2

说我正在为4个人绘制数据:Alice,Bob,Chuck和Dana。我正在使用ggplot2制作一个每人一个方面的刻面情节。我在磁盘上也有4张图片:Alice.png,Bob.png,Chuck.png和Dana.png。 (显然,这是一个需要扩展到4个以上方面的合成示例:)

有没有办法可以用相应的图像注释每个方面,理想情况下不是刻面标签(虽然我对标签下方的图像感到满意)?也许类似于这里使用的技术:Use image instead of labels in ggplot2 legend?我已经尝试阅读各种注释方法的文档,但我的R-fu不足以应对挑战!

1 个答案:

答案 0 :(得分:4)

不是很优雅,但你可以在条形标签上添加凹凸

library(ggplot2)

d <- expand.grid(x=1:2,y=1:2, f=letters[1:2])
p <- qplot(x,y,data=d) + facet_wrap(~f)

g <- ggplot_gtable(ggplot_build(p))

library(gtable)
library(RCurl)
library(png)
shark <- readPNG(getURLContent("http://i.imgur.com/EOc2V.png"))
tiger <- readPNG(getURLContent("http://i.imgur.com/zjIh5.png"))

strips <- grep("strip", g$layout$name)
new_grobs <- list(rasterGrob(shark, width=1, height=1),
                  rasterGrob(tiger, width=1, height=1))
g <- with(g$layout[strips,],
          gtable_add_grob(g, new_grobs,
                          t=t, l=l, b=b, r=r, name="strip_predator") )        
grid.draw(g)

编辑:您也可以直接替换grobs,

strips <- grep("strip", names(g$grobs))
new_grobs <- list(rectGrob(gp=gpar(fill="red", alpha=0.2)),
                  rectGrob(gp=gpar(fill="blue", alpha=0.2)))
g$grobs[strips] <- new_grobs
grid.draw(g)