knitr::opts_chunk$set(echo = F, message = F, warning= F) library(kableExtra) library(tidyverse) library(lubridate) library(modelsummary) theme_set(theme_light())
```rHistograms", fig.ncol = 2, fig.subcap= c("MPG", "Horse Power")} plot1 <- mtcars %>% ggplot(aes(mpg)) + geom_histogram() plot2 <- mtcars %>% ggplot(aes(hp)) + geom_histogram()
plot1 plot2 ```
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.