"pink"
.ggplot(data = starwars,
mapping = aes(x = height, y = mass, size = birth_year)) +
geom_point(color = "#30509C")
## Warning: Removed 51 rows containing missing values (geom_point).
After editing the code, change the chunk option to eval = TRUE
.
ggplot(data = starwars,
mapping = aes(x = gender, y = height)) +
geom_---()