tabsetPanel
.tabPanel(title, ..., value = NULL)
tabsetPanel
reports that this tab is selected. If
omitted and tabsetPanel
has an id
, then the
title will be used.tabsetPanel
tabsetPanel
# Show a tabset that includes a plot, summary, and
# table view of the generated distribution
mainPanel(
tabsetPanel(
tabPanel("Plot", plotOutput("plot")),
tabPanel("Summary", verbatimTextOutput("summary")),
tabPanel("Table", tableOutput("table"))
)
)
Run the code above in your browser using DataLab