View source: R/background_image.R
background_image | R Documentation |
Add background image to ggplot2.
background_image(raster.img)
raster.img |
raster object to display, as returned by the function
|
Alboukadel Kassambara <alboukadel.kassambara@gmail.com>
## Not run: install.packages("png") # Import the image img.file <- system.file(file.path("images", "background-image.png"), package = "ggpubr") img <- png::readPNG(img.file) # Plot with background image ggplot(iris, aes(Species, Sepal.Length))+ background_image(img)+ geom_boxplot(aes(fill = Species), color = "white")+ fill_palette("jco") ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.