Hi,
I searched on Google, but couldn't find an answer.
It should be obvious, but I couldn't give a name to tabsetpanel in Shiny app.
As an example from the R, I want to give a name to tabsetpanel here:
mainPanel(
tabsetPanel("new name",
tabPanel("Plot", plotOutput("plot")),
tabPanel("Summary", verbatimTextOutput("summary")),
tabPanel("Table", tableOutput("table"))
)
)
Can anyone point out the resource to find this?
Thank you.