Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Conditional formatting tables in RMarkdown documents

As an example, I might want to use the following rule to color the cells:

(edited to un-trivialize)

  1. Blue if > 4
  2. No fill if <= 4 and >= 3.5
  3. Yellow if >= 3 and < 3.5
  4. Orange if < 3

Create tables with conditional formatting with RMarkdown + knitr doesn't help me because I don't just want to highlight cells satisfying one set of criteria.

Example rmd:

---
title: "Untitled"
output: html_document
---

```{r, message = FALSE, results = "asis"}
library(knitr)
library(dplyr)
head(iris) %>% kable
```

I'll take a solution utilizing DataTables if that's what it takes

like image 424
kevinykuo Avatar asked Aug 14 '14 18:08

kevinykuo


1 Answers

Hello here a solution using function FlexTable from package ReporteRs. This function is intended to create Word table but you can get the html code from FlexTable objects with as.html :

---
title: "Untitled"
output: html_document
---


```{r, results='asis', warning=FALSE, message=FALSE}
library(ReporteRs)
data(iris)
irisFT = FlexTable( iris )

vars <- c("Sepal.Length", "Sepal.Width", "Petal.Length", "Petal.Width")
for (i in vars) {
  irisFT[iris[, i] < 3, i] = cellProperties( background.color = "orange" )
  irisFT[iris[, i] >= 3 & iris[, i] < 3.5, i] = cellProperties( background.color = "yellow" )
  irisFT[iris[, i] > 4, i] = cellProperties( background.color = "#81DAF5" )
}

cat(as.html(irisFT))
```

enter image description here

For more example, please visit https://davidgohel.github.io/ReporteRs/articles/FlexTable.html

like image 65
Victorp Avatar answered Sep 17 '22 03:09

Victorp