ggplot(penguins, aes(x = flipper_length_mm, y = body_mass_g, color = species)) +
geom_point(alpha = 0.7) +
labs(
title = "Bigger Flippers, Heavier Penguins",
subtitle = "Relationship between flipper length and body mass",
x = "Flipper length (mm)",
y = "Body mass (g)",
color = "Species",
caption = "Data: palmerpenguins (Horst, Hill & Gorman)"
)












