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 object
The dataset contains the daily summary of the Coronavirus confirmed cases in South Korea by province and city
Wikipedia article "2020 coronavirus outbreak in South Korea" website
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.