library(palmerpenguins)
library(ggplot2)
ggplot(penguins, aes(x = bill_length_mm,
y = bill_depth_mm,
col = island)) +
geom_point()Warning: Removed 2 rows containing missing values or values outside the scale range
(`geom_point()`).