library(reticulate) library(gcookbook) library(ggplot2) library(dplyr)
hw_plot <- cars %>% ggplot(aes(x = speed, y = dist)) + geom_point()
hw_plot + theme_grey()
hw_plot + theme_bw()
hw_plot + theme_minimal()
hw_plot + theme_classic()