covid19nytimes_counties_demo: Demo of US County-Level Data from the NY Times

Description Usage Format Details Source Examples

Description

demo of the daily summary of the Coronavirus (Covid-19) total cases and deaths by county

Usage

1

Format

A tibble object

Details

The dataset contains the daily summary of Coronavirus cases (total confirmed and total deaths), by county from the NY Times.

To get the latest data, use refresh_covid19nytimes_states.

Source

New York Times, "We’re Sharing Coronavirus Case Data for Every U.S. County" article and https://github.com/nytimes/covid-19-datadata repository

Examples

1
2
3
4
5
6
7
8
data(covid19nytimes_states_demo)

require(dplyr)

# Get top confirmed cases by county,state
covid19nytimes_states_demo %>%
  filter(data_type == "cases_total") %>%
  filter(value == max(value))

covid19nytimes documentation built on July 2, 2020, 4:15 a.m.