Description Usage Arguments Value Examples
Add ggplot into a document object
1 | add_ggplot(mydoc, code = "", preprocessing = "", top = 2)
|
mydoc |
A document object |
code |
R code for table |
preprocessing |
preprocessing |
top |
top position of plot |
a document object
1 2 3 4 5 6 7 | 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)
read_docx() %>% add_text(title="ggplot") %>% add_ggplot(code=code)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.