A dashboard that’s not a dashboard

Row

library(tidyverse)

ggplot(mpg, aes(x = displ, y = hwy)) +
  geom_point()

Row

Column

ggplot(mpg, aes(x = displ)) +
  geom_density()

Column

ggplot(mpg, aes(x = drv)) +
  geom_bar()