library(readr)
library(dplyr)
billboard <- as_tibble(read_csv(
"data-raw/billboard.csv",
col_types = list(
year = col_skip(),
time = col_skip()
)
))
usethis::use_data(billboard, overwrite = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.