blob: 18407b036c6de01cf8e7fb5f157f4722af9298f5 [file] [log] [blame]
Hao Zhubacd2f32017-10-11 14:06:36 -04001---
2title: "Use kableExtra with formattable"
3author: "Hao Zhu"
4date: "`r Sys.Date()`"
5output: html_document
6---
7
8I know you love `formattable`'s `color_tile` and `color_bar`. I do too. In my mind, these two features are among the best visualization methods in a tabular format. You may wonder if it's possible use it together with `kableExtra` so you can have a nested table with awesome presentation at the same time. Here is how.
9
10```{r, message=FALSE, warning=FALSE}
11library(knitr)
12library(kableExtra)
13library(formattable)
14library(dplyr)
15```
16
17```{r}
18mtcars[1:5, 1:4] %>%
19 mutate(
20 car = row.names(.),
21 mpg = color_tile("white", "orange")(mpg),
22 cyl = cell_spec(cyl, "html", angle = (1:5)*60,
23 background = "red", color = "white", align = "center"),
24 disp = ifelse(disp > 200,
25 cell_spec(disp, "html", color = "red", bold = T),
26 cell_spec(disp, "html", color = "green", italic = T)),
27 hp = color_bar("lightgreen")(hp)
28 ) %>%
29 select(car, everything()) %>%
30 kable("html", escape = F) %>%
31 kable_styling("hover", full_width = F) %>%
32 column_spec(5, width = "3cm") %>%
33 add_header_above(c(" ", "Hello" = 2, "World" = 2))
34```
35
36Here is a little bit more explanation. Both `formattable::color_tile` and `formattable::color_bar` returns a function object which can take a numeric vector. That's why you can put things like `(mpg)` after `color_tile("white", "orange")` as you can see in the `mutate` function. This way of using the function may look a little odd but is totally valid (, I think :P).
37
38Also, if you are using it in this way, make sure you put `escape = F` in `kable`.
39
40On the other hand, `cell_spec()` is a new function in `kableExtra()` to format cells _**before you pipe the table into `kable`**_. Note that you can either specify format (`html` or `latex`) in function or do that via `options(knitr.table.format)` so you don't need to do it everytime.