数据表:对每列应用不同的formatStyle

时间:2016-03-04 11:33:12

标签: r shiny

我想将formatStyle函数应用于表格中的不同列。我可以轻松地将相同的样式应用于所有列或列的某些子集,例如

divBySum <- function(x) x/sum(x)

  output$test <- DT::renderDataTable(
    datatable(mutate_each(mtcars, funs(divBySum)),
      options = list(searching = FALSE,
                     paging = FALSE,
                     dom = 't'),
      rownames = FALSE) %>%
      formatStyle(colnames(mtcars),
                  background = styleColorBar(c(0, 1), 'lightgray'),
                  backgroundSize = '98% 88%',
                  backgroundRepeat = 'no-repeat',
                  backgroundPosition = 'center') %>%
      formatPercentage(colnames(mtcars))
  )

但是,我想将不同的 formatStyle应用于每个列。例如,我想将最大条形长度定义为styleColorBar(c(0, max(x)), 'lightgray'),其中x是列,或者它们的颜色不同。

我想用一些函数来做到这一点,该函数将列名称的向量作为输入。有没有什么好的,聪明的方法呢?

1 个答案:

答案 0 :(得分:4)

您可以使用mapply来循环显示列,以添加您想要的任何颜色,这是一个示例:

data <- datatable(mtcars)    

mapply(function(column,color){
        data <<- data %>% formatStyle(column,
                                      background = styleColorBar(c(0, max(mtcars[[column]])), color),
                                      backgroundSize = '98% 88%',
                                      backgroundRepeat = 'no-repeat',
                                      backgroundPosition = 'center')
},colnames(mtcars),rep_len(c("green","red","yellow"),length.out = ncol(mtcars)))