首页 > 解决方案 > 如何使用 R 中的“huxtable”库为表格中所需的单元格着色。哪种方式更优雅?

问题描述

我需要用灰色标记表格中的一些特殊单元格。像这样的东西:

```{r}
library(huxtable)
library(magrittr)
sample_df <- data.frame(matrix(1:25, nrow = 5)) 
sample_df %>% as_huxtable() %>% set_all_borders(1) %>% 
  set_background_color(row = 2, col = 1, value = "grey") %>% 
  set_background_color(row = 3, col = 2, value = "grey") %>%
  set_background_color(row = 4, col = 3, value = "grey") %>% 
  set_background_color(row = 5, col = 4, value = "grey") %>% 
  set_background_color(row = 6, col = 5, value = "grey")
```

在“knitr”作为 HTML 文档之后,它给了我以下内容(作为屏幕截图):

桌子

这就是我需要得到的。但是,我的问题是:有什么比编写这样的代码字符串更优雅的方法呢?我试着这样做:

my_fan <-  function(.data) {for (i in c(2:6))
  {set_background_color(.data, row = i, col = i-1, value = "grey")}
  .data
  }
sample_df %>% 
  as_huxtable() %>% set_all_borders %>% 
  my_fan()

...而且它根本没有给我任何结果。有任何想法吗?

标签: rr-markdownknitrhuxtable

解决方案


您可以使用老式界面和关于 R 子集的鲜为人知的事实:

sample_df <- data.frame(matrix(1:25, nrow = 5)) 
sample_df <- as_huxtable(sample_df)
background_color(sample_df)[matrix(c(2:6, 1:5), ncol = 2)] <- "grey"
sample_df

来自?Extract

当通过 [ 索引数组时,单个参数 i 可以是具有与 x 维数一样多的列的矩阵;结果是一个向量,其元素对应于 i 的每一行中的索引集。

或者,如果你想变得很酷:

diag(background_color(sample_df[-1,])) <- "grey"

我很惊讶这有效:-)


推荐阅读