blob: e19dd2fe180b70b89946a836aeed5e952a05d362 [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
Hao Zhu6290fdd2017-10-24 00:10:32 -040040On 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. Please refer to the package vignette for details.
Hao Zhu457acb42017-10-14 17:37:02 -040041
Hao Zhu6290fdd2017-10-24 00:10:32 -040042<script>
43$(document).ready(function(){
44 $('[data-toggle="tooltip"]').tooltip();
45});
46</script>
Hao Zhu457acb42017-10-14 17:37:02 -040047
48```{r}
49iris[1:10, ] %>%
Hao Zhu6290fdd2017-10-24 00:10:32 -040050 mutate(
51 Species = cell_spec(Species, color = spec_color(1:10, option = "A"), link = "#",
52 tooltip = paste0("Sepal Length: ", Sepal.Length))
53 ) %>%
Hao Zhu457acb42017-10-14 17:37:02 -040054 mutate_if(is.numeric, function(x){
Hao Zhu6290fdd2017-10-24 00:10:32 -040055 cell_spec(x, "html", color = spec_color(x), font_size = spec_font_size(x), bold = T)
Hao Zhu457acb42017-10-14 17:37:02 -040056 }) %>%
Hao Zhu6290fdd2017-10-24 00:10:32 -040057 kable("html", escape = F, align = "c") %>%
Hao Zhuf6be00b2017-10-14 19:14:42 -040058 kable_styling("condensed", full_width = F)
Hao Zhu457acb42017-10-14 17:37:02 -040059```
Hao Zhu064990d2017-10-17 18:08:42 -040060