blob: fb645ad039f7369188b91a6479cf9dc9ae6240bc [file] [log] [blame]
---
title: "cell_formatter_pdf"
author: "Hao"
date: "10/11/2017"
output: html_document
---
```{r, include=F}
library(knitr)
library(kableExtra)
library(dplyr)
```
```{r}
mtcars[1:15, 1:5] %>%
mutate(
mpg = cell_spec(mpg, "html", color = "white", background = spec_color(mpg)),
disp = cell_spec(disp, "html", color = spec_color(disp, option = "B"),
bold = T, font_size = spec_font_size(disp)),
hp = cell_spec(hp, "html", hover_message = paste0("cyl:\n", cyl))
) %>%
kable("html", escape = F) %>%
kable_styling("condensed", full_width = F)
```
```{r}
iris[, 1:4] %>%
mutate_all(function(x){
cell_spec(x, "html",
color = spec_color(x, option = "A"),
font_size = spec_font_size(x),
bold = T)
}) %>%
kable("html", escape = F, booktabs = T, linesep = "", align = "c")%>%
row_spec(0, angle = 270, align = "right") %>%
kable_styling(full_width = F)
```