gpt4 book ai didi

r - 如何在 R Shiny 中创建具有复杂标题的数据表?

转载 作者:行者123 更新时间:2023-12-02 02:46:01 24 4
gpt4 key购买 nike

我有一个datatableR Shiny并希望有 span multiple columns like below 的标题:

enter image description here

如何在 R Shiny 中实现这一点?

最佳答案

已经有示例http://rstudio.github.io/DT/

library(DT)
sketch = htmltools::withTags(table(
class = 'display',
thead(
tr(
th(rowspan = 2, 'Species'),
th(colspan = 2, 'Sepal'),
th(colspan = 2, 'Petal')
),
tr(
lapply(rep(c('Length', 'Width'), 2), th)
)
)
))
datatable(iris[1:20, c(5, 1:4)], container = sketch, rownames = FALSE)

enter image description here

关于r - 如何在 R Shiny 中创建具有复杂标题的数据表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22897852/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com