This dataset, covid_new_york_df, is a data frame containing daily proportions of COVID-19 cases, hospitalizations, and deaths by borough in New York City through 2020-06-30.
data(covid_new_york_df)
A data frame with 615 observations and 5 variables:
Date of observation
Character vector indicating the borough (e.g., Manhattan, Bronx, etc.)
Integer vector representing the number of reported COVID-19 cases
Integer vector representing the number of hospitalizations
Integer vector representing the number of deaths
The dataset name has been kept as 'covid_new_york_df' to avoid confusion with other datasets in the R ecosystem. This naming convention helps distinguish this dataset as part of the infectiousR package and assists users in identifying its specific characteristics. The suffix 'df' indicates that the dataset is a data frame. The original content has not been modified in any way.