Penguins

ggplot(penguins, 
       aes(x = bill_length_mm, y = bill_depth_mm, color = species)) +
  geom_point() +
  scale_color_OkabeIto()
Scatterplot of penguin bill depth vs. length, colored by species. The relationship is positive for each of the three species.