Cyndy Hart
unread,Jul 17, 2013, 2:59:20 PM7/17/13Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to shiny-...@googlegroups.com
Quoting the Shiny tutorial example of a ui.R example showing tabbed panels,
mainPanel(
tabsetPanel(
tabPanel("Plot", plotOutput("plot")),
tabPanel("Summary", verbatimTextOutput("summary")),
tabPanel("Table", tableOutput("contents"))
)
If I wanted to, say, have both the plot and the summary to display on the Polt tab together, how - can I - do I do that? I tried some of the obvious things,
(like including verbatimTextOutput("summary") within the parenthesis to tablPanel("Plot") to no avail.
?