blob: b33305ac4c469996922ec8f6c5f08d637cd8915d [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
Hao Zhuf6b60e82020-10-21 18:58:19 -040012Sometimes 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.
Hao Zhud4f54982020-10-07 16:26:35 -040013
14
15```{r}
16library(kableExtra)
17library(plotly)
18library(sparkline)
19library(tidyverse)
20```
21
22