在闪亮的面板中绘制两个图表,一个在另一个下方

Plotting two graphs, one below the other, in shiny panel

我正在生成两个图表。

现在它们出现在两个不同的面板(选项卡)中

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
 })

我想知道如何在同一个面板中一个一个地显示这些图表,而不是像现在这样在两个不同的面板中显示。感谢大家的帮助。

您可以将它们包裹在 fluidRow 中或将它们列在同一个 tabPanel

shinyApp(
    shinyUI(
        fluidPage(
            mainPanel(
                tabsetPanel(
                    tabPanel("Summary", dataTableOutput("dis")),
                    tabPanel("Plot",
                             # fluidRow(...)
                                 plotOutput("plot1"),
                                 plotOutput("plot2")
                             )
                )
            )
        )
    ),
    shinyServer(function(input, output) {
        output$plot1 <- renderPlot({
            plot(1:10, 1:10)
        })

        output$plot2 <- renderPlot({
            plot(1:10 ,10:1)
        })

        output$dis <- renderDataTable({})
    })
)

将它们包裹在 fluidRow 中可以轻松控制各个绘图属性,例如宽度,

tabPanel("Plot",
         fluidRow(
             column(8, plotOutput("plot1")),
             column(12, plotOutput("plot2"))
         ))