Learn R Programming

rrtable (version 0.1.0)

add_ggplot: Add ggplot into a document object

Description

Add ggplot into a document object

Usage

add_ggplot(mydoc, code = "", top = 2)

Arguments

mydoc

A document object

code

R code for table

top

top position of plot

Value

a document object

Examples

Run this code
# NOT RUN {
require(rrtable)
require(ggplot2)
require(officer)
require(magrittr)
code <- "ggplot(mtcars, aes(x = mpg , y = wt)) + geom_point()"
read_pptx() %>% add_text(title="ggplot") %>% add_ggplot(code=code)
# }

Run the code above in your browser using DataLab