tabsetPanel
From shiny v0.9.1
by Winston Chang
Create a tabset panel
Create a tabset that contains tabPanel
elements. Tabsets are
useful for dividing output into multiple independently viewable sections.
Usage
tabsetPanel(..., id = NULL, selected = NULL, type = c("tabs", "pills"),
position = c("above", "below", "left", "right"))
Value
A tabset that can be passed to mainPanel
See Also
Examples
# 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"))
)
)
Community examples
Looks like there are no examples yet.