我想在我的仪表板中查看列的名称。
在我的文件ui.R中,我尝试放入row.names=TRUE
,但不起作用。
dashboardBody(
tabItems( tabItem(tabName="OP",(tableOutput("moyenne",rownames=TRUE)))))
并在我的文件中R:
shinyServer(function(input,output){
output$moyenne <- renderTable({
(moyenne)
})
谢谢
答案 0 :(得分:0)
您想将rownames = TRUE
传递给renderTable
,而不是tableOutput
:
library(shiny)
ui <- fluidPage(
tableOutput("moyenne")
)
server <- function(input, output, session) {
output$moyenne <- renderTable({
moyenne
}, rownames = TRUE)
}
shinyApp(ui, server)