## code to prepare `cancer_clean` dataset goes here
library("datateachr")
cancer_clean <- cancer_sample %>%
mutate(malignant=ifelse(diagnosis=="M", 1, 0)) %>%
select(malignant, ends_with("_mean"))
usethis::use_data(cancer_clean, overwrite = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.