我无法弄清楚如何根据输入数据框动态创建行并将行填充到引导样式表中。
示例...使用下面的表(dt),我想在我的 ui 中创建一个表,其中包含 4 行包含表中的数据。
我知道如何通过明确定义每一行来做到这一点,就像我在下面的第一行中所做的那样,但我真的希望能够动态地做到这一点,因为行数并不总是相同的。
感谢您的任何帮助或建议!
## app.R ##
library(shiny)
library(shinydashboard)
dt <- data.frame(1:4,1:4,1:4,1:4)
colnames(dt) <- c("Letter1","Letter2","Type1","Type2")
ui <- dashboardPage(
dashboardHeader(),
dashboardSidebar(),
dashboardBody(
box(width = NULL,title = "simple table", uiOutput("lettertypetable"))
)
)
server <- function(input, output, session) {
output$lettertypetable <- renderUI({
tags$table(class = "table",
tags$thead(tags$tr(
tags$th("Letter1"),
tags$th("letter2"),
tags$th("Type1"),
tags$th("Type2")
)),
tags$tbody(
tags$tr(
tags$td("alpha"),
tags$td("beta"),
tags$td("yello"),
tags$td("orange")
)
)
)
})
}
shinyApp(ui, server)