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 with 4 variables.
Date in YYYY-MM-DD format.
Name of region.
Name of province.
Number of confirmed cases.
The dataset contains the cases in Iran by region and province.
Wikipedia contributors. 2020 coronavirus pandemic in Iran. In Wikipedia, The Free Encyclopedia. Retrieved from here.
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.