knitr::opts_chunk$set(echo = F, message = F, warning= F)
library(kableExtra)
library(tidyverse)
library(lubridate)
library(modelsummary)
theme_set(theme_light())

Examples

Putting side-by-side figures

```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 ```



michaeltopper1/ifc documentation built on Jan. 30, 2023, 10:08 a.m.