blob: b33305ac4c469996922ec8f6c5f08d637cd8915d [file] [log] [blame]
---
title: "In-table Plots"
output:
html_document:
theme: cosmo
---
```{r, include=F}
knitr::opts_chunk$set(warning = F, message = F)
```
Sometimes it's a delight to see plots in a table. Here we provide some examples and recipes on some common situation. We will use the following packages.
```{r}
library(kableExtra)
library(plotly)
library(sparkline)
library(tidyverse)
```