% Reusable Graphics % Paul Murrell % The University of Auckland ```{r setup, include=FALSE} # set global chunk options opts_chunk$set(tidy=FALSE, highlight=TRUE) ``` # Reusing Raster Images in Plots ```{r eval=FALSE} library(png) map <- readPNG("map.png") plot(data) rasterImage(map) ``` # Reusing Raster Images in Plots +