Description Usage Format Details Source Examples
Daily summary of the Coronavirus (COVID-19) confirmed cases in South Korea by province and city.
1 |
A data frame with 4 variables.
Date in YYYY-MM-DD format.
Name of city.
Name of province.
Number of confirmed cases.
The dataset contains the daily summary of the Coronavirus confirmed cases in South Korea by province and city.
Wikipedia contributors. 2020 coronavirus pandemic in South Korea. In Wikipedia, The Free Encyclopedia. Retrieved from here.
1 2 3 4 5 6 7 8 9 | data(covid_south_korea)
require(dplyr)
# Get summary of total cases by city
covid_south_korea %>%
group_by(city) %>%
summarise(total_cases = sum(total))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.