2014-04-06 9 views

उत्तर

2

थेरेस पहले से ही उदाहरण 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

संबंधित मुद्दे