Этот ответ и этот ответ были очень полезны для обеспечения подхода, использующего DT
, который может быть включен в ваше блестящее приложение.
library(htmltools)
library(DT)
sketch <- withTags(
table(
class = "display",
thead(
tr(
th(colspan = 1, "", style = "border-right: solid 2px;"),
th(colspan = 1, "", style = "border-right: solid 2px;"),
th(colspan = 3, "Sepal Width", style = "border-right: solid 2px;"),
th(colspan = 3, "Sepal Length")
),
tr(
th("Species", style = "border-right: solid 2px;"),
th("#", style = "border-right: solid 2px;"),
th("Longest"),
th("Avg"),
th("Shortest", style = "border-right: solid 2px;"),
th("Widest"),
th("Avg"),
th("Narrowest"),
)
)
)
)
datatable(grouped_df3, rownames = FALSE, container = sketch,
options = list(
columnDefs = list(
list(targets = "_all", className = "dt-center")
)
)) %>%
formatStyle(c(1,2,5), `border-right` = "solid 2px")
Выход