| ph_with.dml {rvg} | R Documentation |
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 class 'dml' ph_with(x, value, location, ...)
x |
a pptx device |
value |
|
location |
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)