Below is my Slidy Presentation R Markdown file. I'd like to split my contents using the Bootstrap grid system. However, an example using the plot is not loading the grid. What could I be doing wrong?
---
title: "Slidy R PPT"
author: "myself"
date: "`r Sys.Date()`"
output: slidy_presentation
---
{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
{r script-files and libraries, include=FALSE, echo=FALSE, message=FALSE, warning=FALSE, paged.print=FALSE}
# Libraries
library(easypackages)
libraries("tidyverse","inspectdf","dlookr","kableExtra","knitr","htmlwidgets")
# Source Script
sys.source("Scripts/Analysis.R", envir = knitr::knit_global())
## Table of Contents
## Grid System Example
<div class = "row">
<div class = "col-md-6">
{r cars, warning = FALSE, echo = FALSE, dev=c('svg')}
plot(pressure)
</div>
<div class = "col-md-6">
{r pressure, warning = FALSE, echo=FALSE, dev=c('svg')}
plot(pressure)
</div>
</div>
## Slide with R Output
## Slide with Plot
Note: In the above code, I've removed ``` in the r code chunks for the purpose of formatting