R Shiny Layouts
问题 In my shiny dashboard, I am currently plotting 1 bar graph above, and 4 pie charts below, as follows: fluidRow( column(12, plotOutput("bar1"))), fluidRow( column(3, plotOutput("pie")), column(3, plotOutput("pie2")), column(3, plotOutput("pie3")), column(3, plotOutput("pie4"))) How would I go about plotting the bar chart alongside the 4 pie charts, with the pie charts arranged in a square? Effectively the bar chart would be column(6,... and all of the pie charts would be column(3,... but I