I am producing two graphs.
Right now they are showing up in two different panels (tabs)
ui.r
mainPanel(
tabsetPanel(
tabPanel("Summary", dataTableOutput("dis")),
tabPanel("Plot", plotOutput("plot1")),
tabPanel("Plot", plotOutput("plot2"))
)
)
server.r
output$plot1 <- renderPlot({
Plot1
})
output$plot2 <- renderPlot({
Plot1
})
I am wondering how can i show these graphs one below the other in the same panel, and not two different panels like how it is now. Thanks folks for helping.