#' Get a detailed dataset of all reported case in the Netherlands
#'
#'
#' @return Returns a dataframe of results containing detalied Covid-19 cases in the Netherlands
#' @export
get_all_national_cases <- function(){
url <- 'https://data.rivm.nl/covid-19/COVID-19_casus_landelijk.json'
landelijk <- jsonlite::fromJSON(url)
tibble::as_tibble(landelijk)
landelijk
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.