# Load previous version of openintro package containing previous version
# of run10 data frame. I took the last commit on 2020-06-13:
# remotes::install_github("https://github.com/OpenIntroStat/openintro@9acc44f7b4a50168362f6841c811c395e9a2220e", force = TRUE)
library(openintro)
library(usethis)
library(dplyr)
# This was named run10 in openintro and I don't know why!
# Streamlining to make everything run+year of run
run12 <- openintro::run10
# Reorder
run12 <- run12 %>%
arrange(gender, place)
# Add to package
use_data(run12, overwrite = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.