我有一张数字为 1-10 的表格。它看起来像这样:
现在我想为每个整数填充不同颜色的单元格。例如,所有值为 1 的单元格都应该是红色的,2 黑色的......等等。您对如何实现这一目标有任何建议吗?非常感谢。
确实存在可以执行此操作的软件包。目前接口最直接的包大概就是在condformat
使用这个condformat::rule_file_discrete
函数。不幸的是,我没有一个可行的示例,因为我condformat
需要rJava
,这与我的系统不兼容。
包pixiedust
(完全公开,我是作者)可以做到这一点,但目前还不是很直接。
library(pixiedust)
library(scales)
library(magrittr)
# Make the table (as a matrix, but a data frame would work as well)
set.seed(pi)
X <- matrix(sample(1:10,
size = 100,
replace = TRUE),
nrow = 10)
# Define 10 colors
background <- hue_pal()(10) %>%
setNames(1:10)
show_col(background)
# Convert X to a dust object
X_dust <- dust(X)
# Apply the background colors
for (i in sort(unique(as.vector(X)))){
X_dust <-
sprinkle(X_dust,
rows = X_dust$body$row[X_dust$body$value == i],
cols = X_dust$body$col[X_dust$body$value == i],
bg = background[i],
fixed = TRUE)
}
# Print the HTML code
X_dust %>%
sprinkle_print_method("html")
我目前正在开发代码,只需几行代码就可以做到这一点,但该功能还没有完全准备好发布。