ph_with.dml {rvg} | R Documentation |
add a plot output as vector graphics into a PowerPoint object
Description
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
.
Usage
## S3 method for class 'dml'
ph_with(x, value, location, ...)
Arguments
x |
a pptx device |
value |
|
location |
a location for a placeholder. |
... |
Arguments to be passed to methods |
Examples
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)
[Package rvg version 0.3.3 Index]