% Reusable Graphics % Paul Murrell % The University of Auckland # Reusing Raster Images in Plots ```r library(png) map <- readPNG("map.png") plot(data) rasterImage(map) ``` # Reusing Raster Images in Plots +