library(tidyverse)
ggplot(mpg, aes(x = displ, y = hwy)) +
geom_point()
A dashboard that’s not a dashboard
Row
Row
Column
ggplot(mpg, aes(x = displ)) +
geom_density()
Column
ggplot(mpg, aes(x = drv)) +
geom_bar()
library(tidyverse)
ggplot(mpg, aes(x = displ, y = hwy)) +
geom_point()
ggplot(mpg, aes(x = displ)) +
geom_density()
ggplot(mpg, aes(x = drv)) +
geom_bar()