produces a vector graphics output from R plot instructions
stored in a dml
object and add the result in an rpptx
object produced by read_pptx
.
# S3 method for dml
ph_with(x, value, location, ...)
a pptx device
dml
object
a location for a placeholder.
Arguments to be passed to methods
anyplot <- dml(code = barplot(1:5, col = 2:6), bg = "wheat")
library(officer)
doc <- read_pptx()
doc <- add_slide(doc, "Title and Content", "Office Theme")
doc <- ph_with(doc, anyplot, location = ph_location_fullsize())
fileout <- tempfile(fileext = ".pptx")
print(doc, target = fileout)
Run the code above in your browser using DataLab