### Make Clean Data
cats <- read.csv("data-raw/cats.csv", stringsAsFactors = F)
cats$name <- gsub("\\*", "", cats$name) #get rid of stars
cats$name <- tolower(cats$name)
cats$name
devtools::use_data(cats, overwrite = T)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.