Capítulo 10 Temas

library(reticulate)
library(gcookbook)
library(ggplot2)
library(dplyr)

10.1 Crear el gráfico base

hw_plot <- cars %>%  ggplot(aes(x = speed, y = dist)) +
  geom_point()

10.2 Tema por defecto

hw_plot +
  theme_grey()

10.3 Tema blanco y negro

hw_plot +
  theme_bw()

10.4 Tema minimal

hw_plot +
  theme_minimal()

10.5 Tema clasico

hw_plot +
  theme_classic()