动态列数量的DT Shiny中的GrandTotal

时间:2018-11-19 11:24:36

标签: r shiny dt

如何像示例中那样在Shiny应用程序的DT中添加总行

enter image description here

我在这里列举了一些主题,但是如何在Mean_price列中添加总计,它计算的总营业额/总数量

如果DT中的列数动态更改,如何添加总数?

1 个答案:

答案 0 :(得分:1)

欢迎您!

这是使用library(data.table)的解决方案:

library(data.table)
library(DT)

ui <- basicPage(
  h2("Grand total"),
  DT::dataTableOutput("mytable")
)

server <- function(input, output) {

  DT <- data.table (Product = paste("Item", seq(10)), Turnover = round(runif(10, 1000, 3000)), Qty=round(runif(10, 100, 120)), Mean_price=round(runif(10, 10, 30), digits = 2))
  totalDT <- as.data.table(c(Product = "Total", DT[, lapply(.SD, sum, na.rm=TRUE), .SDcols=c("Turnover", "Qty")]))
  totalDT[, "Mean_price" := round(Turnover/Qty, digits = 2)]

  myContainer = htmltools::withTags(table(
    tableHeader(DT),
    tableFooter(as.character(totalDT))
  ))

  output$mytable = DT::renderDataTable({
    DT::datatable(DT, options = list(pageLength = nrow(DT)), rownames = FALSE, container = myContainer)
  })
}

shinyApp(ui, server)

有关行的特定样式,请参见this

在进一步指定所需输出(页脚)后进行编辑: 您不需要创建页脚的回调函数,请参见this