在r Shiny

时间:2019-02-14 18:35:05

标签: r shiny

我想在我的仪表板中查看列的名称。

在我的文件ui.R中,我尝试放入row.names=TRUE,但不起作用。

dashboardBody( 
      tabItems( tabItem(tabName="OP",(tableOutput("moyenne",rownames=TRUE)))))

并在我的文件中R:

shinyServer(function(input,output){

 output$moyenne <- renderTable({
 (moyenne)

})

谢谢

1 个答案:

答案 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)