# code to prepare `gymnastics` dataset:
library(dplyr)
gymnastics <- olympics |>
filter(year == 2016) |>
filter(sport == "Gymnastics") |>
select(-(noc:medal)) |>
unique()
usethis::use_data(gymnastics, overwrite = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.