Capítulo 9 Ejes

library(reticulate)
library(gcookbook)
library(ggplot2)
library(dplyr)
ggplot(cars, aes(x = speed, y = dist)) +
  geom_boxplot()

ggplot(cars, aes(x = speed, y = dist)) +
  geom_boxplot() +
  coord_flip()