download_dataset <- function(radical = "jhu") {
radical <- ifelse(radical == "ms_br", "ms", radical)
url <- paste0(
"https://github.com/sjlva/Covid19BR/blob/master/rds/covid_",
radical,
".rds?raw=true")
df <- readr::read_rds(url(url))
return(df)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.