library("tidyverse")
data(penguins, package = "palmerpenguins")
penguins = penguins %>%
drop_na() %>%
select(-island, -year)
save(penguins, file = "data/penguins.RData",
compress = "xz",
version = 2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.