RShiny将两个图像重叠渲染

RShiny将两个图像重叠渲染,r,shiny,shinydashboard,R,Shiny,Shinydashboard,我有以下问题。 我想把两个情节放在一起但显然, 这两者总是重叠的。 第一张图片的大小应该是 我的代码: plotOutput("Video", width = 1000, height = 1000), div(style = "display:inline-block", plotOutput("farmplot"), tableOutput("summary_farm")),

我有以下问题。 我想把两个情节放在一起但显然, 这两者总是重叠的。 第一张图片的大小应该是

我的代码:

plotOutput("Video", width = 1000, height = 1000),
div(style = "display:inline-block",
        plotOutput("farmplot"),
        tableOutput("summary_farm")),
    
div(style = "display:inline-block",
        plotOutput("wildplot"),
        tableOutput("summary_wild"))
'''


非常感谢

如果用户界面使用
fluidPage()
布局,则可以使用
fluidRow()
垂直分隔元素,使用
column()
水平分隔元素。请参阅《闪亮应用程序布局指南》中的更多信息:


ui会变成这样的!如果你提供了一个最小的可重复的例子,你就有最大的机会得到一个有用的答案。也许会有帮助。
ui <- fluidPage(
  fluidRow(
    column(12,
      plotOutput("Video", width = 1000, height = 1000)
    )
  ),
  fluidRow(
    column(6,
        plotOutput("farmplot"),
        tableOutput("summary_farm")
    ), 
    column(6,
        plotOutput("wildplot"),
        tableOutput("summary_wild")
    )
  )
)