Hi, I'm using RMarkdown to generate PowerPoint Slides.
Does anyone maybe encounter a way to combine multiple items (tables & graphs) in one slide!
And am trying to fit a text box/table onto a slide that already has a graph in it.
Not sure if this is possible, but wanted to ask.
Thanks!
Here is how my RMarkdown looks like:
---
title: ""
author: "Prepared by: Anil"
date: "07/18/2021"
output:
powerpoint_presentation:
reference_doc: template_deck.pptx
always_allow_html: true
font-family: Arial
---
###Slide#1
```{r debt, dpi=400, fig.width=8, fig.height=5, fig.align = "center", message=FALSE, warning=FALSE}
R code w/ `ggplot2` graph
###Slide#2
```{r debt, dpi=400, fig.width=8, fig.height=5, fig.align = "center", message=FALSE, warning=FALSE}
R code w/ a table
knitr::kable(
table`
)