有没有办法改变DT
中目标细胞的颜色?或者按行和列索引的一些单元格?
例如我有:
library(DT)
set.seed(123)
options(DT.options = list(pageLength = 5))
df = as.data.frame(cbind(matrix(round(rnorm(50), 3), 10), sample(0:1, 10, TRUE)))
datatable(df)%>% formatStyle(
'V6',
backgroundColor = styleEqual(c(0, 1), c('gray', 'yellow'))
)
我可以改变行或单元格的颜色(基于当前行的单元格)
但我无法找到基于col和row索引改变颜色的方法,如: