I am trying to align the boxes in shiny dashboard fluid row. I would like the category distribution box to be aligned underneath summary stats.
tabItem(h1("Data Exploration"), tabName = "dataexploration",
fluidRow(
box(title = "Generate Data Set", actionButton("data_generate", "Generate")),
box(title = "Data Frame", dataTableOutput('df')),
box(title = "Summary Stats", tableOutput('token_summary')),
box(title = "Category Distribution", plotOutput('category_dist'))
))