Open graph in Fullscreen

Let’s do a chart. But not too big as we don’t want to cluter the report.

library(ggplot2)
library(palmerpenguins)

scatter_plot <- ggplot(penguins, aes(x = flipper_length_mm, y = body_mass_g, color = species)) +
    geom_point()

scatter_plot