This dataset, cholera_deaths_1849_tbl_df, is a tibble containing daily deaths from Cholera and Diarrhaea in England for each day of the 12 months of 1849. It includes the month, cause of death, day of month, number of deaths, date, and day of week for each observation.
data(cholera_deaths_1849_tbl_df)A tibble with 730 observations and 6 variables:
Character indicating the month of observation
Factor with 2 levels indicating cause of death (Cholera or Diarrhaea)
Character indicating the day of the month
Numeric value indicating the number of deaths
Date object indicating the exact date
Ordered factor with 7 levels indicating the day of week
The dataset name has been kept as 'cholera_deaths_1849_tbl_df' to avoid confusion with other datasets in the R ecosystem. This naming convention helps distinguish this dataset as part of the DigestiveDataSets package and assists users in identifying its specific characteristics. The suffix 'tbl_df' indicates that the dataset is a tibble. The original content has not been modified in any way.