penguins %>%
ggplot(aes(x = species, y = bill_length_mm, fill = species)) +
geom_boxplot() +
scale_fill_manual(values = c("goldenrod2", "tomato", "springgreen3")) +
theme_bw() +
guides(fill = "none")Warning: Removed 2 rows containing non-finite outside the scale range
(`stat_boxplot()`).


