daily summary of the Coronavirus (COVID-19) confirmed cases in South Korea by province and city

covid_south_korea

Format

A data.frame object

Source

Wikipedia article "2020 coronavirus outbreak in South Korea" website

Details

The dataset contains the daily summary of the Coronavirus confirmed cases in South Korea by province and city

Examples

data(covid_south_korea) require(dplyr) # Get summary of total cases by city covid_south_korea %>% group_by(city) %>% summarise(total_cases = sum(total))
#> # A tibble: 18 x 2 #> city total_cases #> <chr> <dbl> #> 1 busan 114 #> 2 chungbuk 46 #> 3 chungnam 128 #> 4 daegu 4913 #> 5 daejeon 46 #> 6 gangwon 47 #> 7 gwangju 29 #> 8 gyeongbuk 1114 #> 9 gyeonggi 540 #> 10 gyeongnam 112 #> 11 incheon 87 #> 12 jeju 13 #> 13 jeonbuk 17 #> 14 jeonnam 17 #> 15 quarantine_station 389 #> 16 sejong 52 #> 17 seoul 595 #> 18 ulsan 40