In this module, we will learn to
library(ggplot2) library(dplyr) library(tidyr)
p <- ggplot(mtcars) + geom_point(aes(disp, mpg)) p
p + theme(axis.title.x = element_text(color = "red", size = 10))