您可以使用DT Helper Functions来做到这一点。有一个函数可以为特定间隔 ( styleInterval()
) 设置单元格样式,或者单元格值是否等于 ( styleEqual()
)。它似乎不styleEqual()
支持条件的直接输入,但您可以先计算条件(可能为其创建另一列)然后使用它。
如上面链接的页面所述(在第 2 节“样式表单元格”下),您可以这样做,例如:
datatable(iris) %>%
formatStyle('Sepal.Length', fontWeight = styleInterval(5, c('normal', 'bold'))) %>%
formatStyle(
'Sepal.Width',
color = styleInterval(c(3.4, 3.8), c('white', 'blue', 'red')),
backgroundColor = styleInterval(3.4, c('gray', 'yellow'))
) %>%
formatStyle(
'Petal.Length',
background = styleColorBar(iris$Petal.Length, 'steelblue'),
backgroundSize = '100% 90%',
backgroundRepeat = 'no-repeat',
backgroundPosition = 'center'
) %>%
formatStyle(
'Species',
transform = 'rotateX(45deg) rotateY(20deg) rotateZ(30deg)',
backgroundColor = styleEqual(
unique(iris$Species), c('lightblue', 'lightgreen', 'lightpink')
)
)