Description Usage Format Details Source Examples
daily summary of the Coronavirus (COVID-19) cases by state/province.
1 |
A data.frame object
The dataset contains the daily summary of Coronavirus cases (confirmed, death, and recovered), by state/province
Johns Hopkins University Center for Systems Science and Engineering (JHU CCSE) Coronavirus website
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | data(coronavirus)
require(dplyr)
# Get top confirmed cases by state
coronavirus %>%
filter(type == "confirmed") %>%
group_by(Country.Region) %>%
summarise(total = sum(cases)) %>%
arrange(-total) %>%
head(20)
# Get the number of recovered cases in Mainland China by province
coronavirus %>%
filter(type == "recovered", Country.Region == "Mainland China") %>%
group_by(Province.State) %>%
summarise(total = sum(cases)) %>%
arrange(-total)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.