前端之家收集整理的这篇文章主要介绍了
如何在R Shiny中创建具有复杂头的数据表?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Theres已经是例子http://rstu
dio.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