## code to prepare `mathplacement` dataset goes here
library(tidyverse)
data(MathPlacement, package = 'Stat2Data')
mathplacement <- select(MathPlacement, score = PlcmtScore) %>%
mutate(score = as.numeric(score)) %>%
na.omit() %>%
as_tibble()
usethis::use_data(mathplacement, overwrite = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.