如何在R Shiny中创建具有复杂头的数据表?

前端之家收集整理的这篇文章主要介绍了如何在R Shiny中创建具有复杂头的数据表?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在 R Shiny有一个 datatable,并希望有标题 span multiple columns like below

如何在R Shiny中实现这一目标?

解决方法

Theres已经是例子http://rstudio.github.io/DT/
library(DT)
sketch = htmltools::withTags(table(
  class = 'display',thead(
    tr(
      th(rowspan = 2,'Species'),th(colspan = 2,'Sepal'),'Petal')
    ),tr(
      lapply(rep(c('Length','Width'),2),th)
    )
  )
))
datatable(iris[1:20,c(5,1:4)],container = sketch,rownames = FALSE)

原文链接:https://www.f2er.com/jquery/178090.html

猜你在找的jQuery相关文章