Modify the following plot to change the color of all points to "pink".

ggplot(data = starwars, 
       mapping = aes(x = height, y = mass, color = gender, size = birth_year)) +
  geom_point(color = "#30509C") +
  labs(size = "Birth year", x = "Height", y = "Mass")
## Warning: Removed 51 rows containing missing values (geom_point).

Stretch goal: Add labels for title, x and y axes, and size of points.

References

  1. Assignment Adapted from Mine Cetinkaya-Rundel’s Data Science in a Box