
Last chance! 50% off unlimited learning
Sale ends in
tabsetPanel
.tabPanel(title, ..., value = NULL, icon = NULL)
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