blob: d145e3198b9e0d91a519f325c0fd7f2f4144f416 [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.
Hao Zhu457acb42017-10-14 17:37:02 -040041
42***
43
44I also added a few helper functions to use together with cell_spec. One good example is `spec_color`, which gives you the ability to use viridis color map in your table. Others include `spec_font_size` and `spec_angle`.
45
46```{r}
47iris[1:10, ] %>%
48 mutate_if(is.numeric, function(x){
49 cell_spec(x, "html", bold = T, color = spec_color(x), font_size = spec_font_size(x))
50 }) %>%
51 kable("html", escape = F, align = "c") %>%
52 kable_styling(full_width = F)
53```