how do you color the cell in rmarkdown pdf output

∥☆過路亽.° 提交于 2019-12-05 04:39:52

Update

The OP's example works for me when including \usepackage[dvipsnames]{xcolor} instead. For another approach see below.

Alternative Approach

Here is another approach using the very handy condformat package. This way you don't have to include any TeX packages by hand and don't have to worry about escaping special characters etc.


We basically create a condformat_tbl object and add two formatting rules for each column.

---
output:
    pdf_document
---

```{r, include = F}
library(condformat)
cols        <- c('green', 'red', 'blue', 'orange', 
                 'yellow', 'purple', 'brown', 'white')
names(cols) <- cols # important for the colours arg in rule_fill_discrete
                    # since it matches the result of 'expression' with the names of the 'colours' vector

f   <- function(x) cut(x, c(0, seq(.2, .8, .1), Inf), labels = cols,
                       include.lowest = FALSE, right = TRUE)
tab <- data.frame(category = c('A', 'B', 'C'), 
                  groupA = c(.2, .3, .5), 
                  groupB = c(.6, .7, .9))
```


```{r, results = 'asis', echo = F}
condformat(tab) + 
  rule_fill_discrete(groupA, expression = f(groupA), colours = cols) +
  rule_fill_discrete(groupB, expression = f(groupB), colours = cols) 
```

Notice, that the value for the colours argument in rule_fill_discrete is vector of key-value pairs. The keys are the possible results of the expression.

And this is what you get:

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!