Description Usage Format Details Source Examples
daily summary of the Coronavirus (COVID-19) confirmed cases in Iran by region and province
1 |
A data.frame object
The dataset contains the cases in Iran by region and province
Wikipedia article "2020 coronavirus pandemic in Iran" website
1 2 3 4 5 6 7 8 9 | data(covid_iran)
require(dplyr)
# Get summary of total cases by province
covid_iran %>%
group_by(province) %>%
summarise(total = sum(cases))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.