blob: 4e90de396b76860d272e2f9a513e4dc1dfed5238 [file] [log] [blame]
Hao Zhu9ce317e2017-10-12 18:19:55 -04001---
2title: "cell_formatter_pdf"
3author: "Hao"
4date: "10/11/2017"
5output: html_document
6---
7
8```{r, include=F}
9library(knitr)
10library(kableExtra)
11library(dplyr)
12```
13
14```{r}
15mtcars[1:15, 1:5] %>%
16 mutate(
17 mpg = cell_spec(mpg, "html", color = "white", background = spec_color(mpg)),
18 disp = cell_spec(disp, "html", color = spec_color(disp, option = "B"),
19 bold = T, font_size = spec_font_size(disp)),
20 hp = cell_spec(hp, "html", hover_message = paste0("cyl:\n", cyl))
21 ) %>%
22 kable("html", escape = F) %>%
23 kable_styling("condensed", full_width = F)
24```