library(ggplot2)
library(palmerpenguins)
<- ggplot(penguins, aes(x = flipper_length_mm, y = body_mass_g, color = species)) +
scatter_plot geom_point()
scatter_plot
Open graph in Fullscreen
Let’s do a chart. But not too big as we don’t want to cluter the report.