blob: 95766c8ec6bc30f755f61ffd650e1a8970d1874d [file] [log] [blame]
Hao Zhud4f54982020-10-07 16:26:35 -04001---
2title: "In-table Plots"
3output:
4 html_document:
5 theme: cosmo
6---
7
8```{r, include=F}
9knitr::opts_chunk$set(warning = F, message = F)
10```
11
12Sometimes it's a delight to see plots in a table. Here we provide some examples and recipes on some common tasks. We will use the following packages.
13
14
15```{r}
16library(kableExtra)
17library(plotly)
18library(sparkline)
19library(tidyverse)
20```
21
22