Add plots at bookmark location in a 'Word' document
Source:R/docx_replace.R
body_replace_gg_at_bkm.Rd
Use these functions if you want to replace a paragraph containing a bookmark with a 'ggplot' or a base plot.
Usage
body_replace_gg_at_bkm(
x,
bookmark,
value,
width = 6,
height = 5,
res = 300,
style = "Normal",
scale = 1,
keep = FALSE,
...
)
body_replace_plot_at_bkm(
x,
bookmark,
value,
width = 6,
height = 5,
res = 300,
style = "Normal",
keep = FALSE,
...
)
Arguments
- x
an rdocx object
- bookmark
bookmark id
- value
a ggplot object for body_replace_gg_at_bkm() or a set plot instructions body_replace_plot_at_bkm(), see plot_instr().
- width
height in inches
- height
height in inches
- res
resolution of the png image in ppi
- style
paragraph style
- scale
Multiplicative scaling factor, same as in ggsave
- keep
Should the bookmark be preserved? Defaults to
FALSE
, i.e.the bookmark will be lost as a side effect.- ...
Arguments to be passed to png function.
Examples
if (require("ggplot2")) {
gg_plot <- ggplot(data = iris) +
geom_point(mapping = aes(Sepal.Length, Petal.Length))
doc <- read_docx()
doc <- body_add_par(doc, "insert_plot_here")
doc <- body_bookmark(doc, "plot")
doc <- body_replace_gg_at_bkm(doc, bookmark = "plot", value = gg_plot)
print(doc, target = tempfile(fileext = ".docx"))
}
doc <- read_docx()
doc <- body_add_par(doc, "insert_plot_here")
doc <- body_bookmark(doc, "plot")
if (capabilities(what = "png")) {
doc <- body_replace_plot_at_bkm(
doc, bookmark = "plot",
value = plot_instr(
code = {
barplot(1:5, col = 2:6)
}
)
)
}
print(doc, target = tempfile(fileext = ".docx"))