Description Usage Format Details Source Examples
demo of the daily summary of the Coronavirus (Covid-19) total cases and deaths by state.
1 |
A tibble object
The dataset contains the daily summary of Coronavirus cases (total confirmed and total deaths), by state from the NY Times.
To get the latest data, use refresh_covid19nytimes_states
New York Times, "We’re Sharing Coronavirus Case Data for Every U.S. County" article and https://github.com/nytimes/covid-19-datadata repository
1 2 3 4 5 6 7 8 | data(covid19nytimes_states_demo)
require(dplyr)
# Get top confirmed cases by state
covid19nytimes_states_demo %>%
filter(data_type == "cases_total") %>%
filter(value == max(value))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.