Nothing
library(palmerpenguins)
library(ggplot2)
library(dplyr)
# exploring scatterplots
penguins |>
select(body_mass_g, ends_with("_mm")) |>
ggplot(aes(x = flipper_length_mm, y = body_mass_g)) +
geom_point(aes(color = species, shape = species), size = 2) +
scale_color_manual(values = c("darkorange", "darkorchid", "cyan4"))
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.