get_ecdc_cases.Rd
ECDC International Case Counts
get_ecdc_cases(countries = NULL)
countries | Character vector identifying the countries to extract data for. |
---|
A dataframe of International case counts published by ECDC.
Sam Abbott @seabbs
D. van Muijen @dmuijen
Kath Sherratt @kathsherratt
Haze Lee @hazealign
## Get data for france get_ecdc_cases(countries = "France")#>#> # A tibble: 174 x 11 #> day month year cases deaths country geoid countryterritor… population_2019 #> <dbl> <dbl> <dbl> <dbl> <dbl> <chr> <chr> <chr> <dbl> #> 1 31 12 2019 0 0 France FR FRA 67012883 #> 2 1 1 2020 0 0 France FR FRA 67012883 #> 3 2 1 2020 0 0 France FR FRA 67012883 #> 4 3 1 2020 0 0 France FR FRA 67012883 #> 5 4 1 2020 0 0 France FR FRA 67012883 #> 6 5 1 2020 0 0 France FR FRA 67012883 #> 7 6 1 2020 0 0 France FR FRA 67012883 #> 8 7 1 2020 0 0 France FR FRA 67012883 #> 9 8 1 2020 0 0 France FR FRA 67012883 #> 10 9 1 2020 0 0 France FR FRA 67012883 #> # … with 164 more rows, and 2 more variables: continentExp <chr>, date <date>## Code