Quarto In Class

Author

June Cline

library(palmerpenguins)
library(tidyverse)
g <- tibble(penguins)
ggplot(g, aes('Bill Length', 'Bill Depth')) + geom_point(aes(bill_length_mm, bill_depth_mm, colour = species, label = 'Bleh'))
Warning in geom_point(aes(bill_length_mm, bill_depth_mm, colour = species, :
Ignoring unknown aesthetics: label
Warning: Removed 2 rows containing missing values or values outside the scale range
(`geom_point()`).