需要在数据表的一行上应用条件格式

时间:2019-03-19 12:58:12

标签: r dt

我正在尝试使用styleInterval(在DT包的formatStyle内)将条件格式应用于数据表的一行。我在网上找到的所有示例要么用于格式化整个数据表,限制所涉及的列,要么基于单个列中的值格式化整个行。

在下面的示例中,我想将涉及的行限制为仅第一行(“ entity1”)。

entity <- c('entity1', 'entity2', 'entity3')
value1 <- c(21000, 23400, 26800)
value2 <- c(21234, 23445, 26834)
value3 <- c(21123, 234789, 26811)
value4 <- c(27000, 23400, 26811)
entity.data <- data.frame(entity, value1, value2, value3, value4)

DT::datatable(entity.data) %>%
  formatStyle(columns = 2:5,
              backgroundColor = styleInterval(cuts = c(21200,22000),
                                              values = c('red','white','green')))

我错过了使用formatStyle进行此操作的方式吗?还是需要使用其他函数/程序包来进行处理?谢谢!

1 个答案:

答案 0 :(得分:4)

使用rowCallback

library(DT)

entity <- c('entity1', 'entity2', 'entity3')
value1 <- c(21000, 23400, 26800)
value2 <- c(21234, 23445, 26834)
value3 <- c(21123, 234789, 26811)
value4 <- c(27000, 23400, 26811)
entity.data <- data.frame(entity, value1, value2, value3, value4)

rowCallback <- c(
  "function(row, dat, displayNum, index){",
  "  if(index == 0){",
  "    for(var j=2; j<dat.length; j++){",
  "      var x = dat[j];",
  "      var color = x <= 21200 ? 'red' : x <= 22000 ? 'white' : 'green';",
  "      $('td:eq('+j+')', row)", 
  "        .css('background-color', color);",
  "    }",
  "  }",
  "}"
)

datatable(entity.data, 
          options = 
            list(rowCallback = JS(rowCallback))
)

enter image description here