2.5 Components of every plot

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

It’s allowable to omit the x = and y = arguments of aes. In other words, aes(displ, hwy) would be valid for this plot.