My question is similar to this one; I wish to annotate each facet with a different image in the bottom-left corner.
Using gtable_add_grob
I am able to replace the facets with images like so:
library(ggplot2)
library(gtable)
library(RCurl)
library(png)
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))
shark <- readPNG(getURLContent("http://i.imgur.com/EOc2V.png"))
tiger <- readPNG(getURLContent("http://i.imgur.com/zjIh5.png"))
facets <- grep("panel", g$layout$name)
new_grobs <- list(rasterGrob(shark, width=1, height=1),
rasterGrob(tiger, width=1, height=1))
g2 <- with(g$layout[facets,],
gtable_add_grob(g, new_grobs,
t=t, l=l, b=b, r=r, name="pic_predator") )
grid.draw(g2)
However, what I'm really wanting is something like this, but I can't figure out the appropriate gtable
command to shrink and place the image on each facet:
I'm happy for the solution to not use gtable
, if that is necessary.
Controlling the
width
andheight
arguments inrasterGrob
shrinks the image, and setting thex
andy
positions (or usinghjust
orvjust
I suppose) controls the placement of the image.