
add a ggplot as a png image into an rdocx object
body_add_gg(x, value, width = 6, height = 5, style = NULL)
an rdocx object
ggplot object
height in inches
height in inches
paragraph style
library(ggplot2)
doc <- read_docx()
gg_plot <- ggplot(data = iris ) +
geom_point(mapping = aes(Sepal.Length, Petal.Length))
doc <- body_add_gg(doc, value = gg_plot, style = "centered" )
print(doc, target = "body_add_gg.docx" )
Run the code above in your browser using DataLab