R/covid19_england_nhscalls_2020.R
covid19_england_nhscalls_2020.Rd
This dataset contains daily numbers of reports on potential COVID-19 cases reported in England through the NHS 111 calls, 999 calls, and 111-online systems. The present dataset was last updated on 21 September 2020. See example for a command line allowing to download the latest version.
covid19_england_nhscalls_2020
A `data.frame` containing:
the system through which data were reported: 111/999 calls, or 111-online
the data of reporting
the gender of the patient
the age of the patient, in years
NHS code for the Clinical Commissioning Groups (CCGs) (finer geographic unit)
name of the Clinical Commissioning Groups (CCGs) (smaller spatial unit)
number of potential COVID-19 cases reported
the postcode of the CCG
the NHS region (larger geographic unit)
the date as the number of days since the first reporting day
the day of the week, broken down into: weekend, Monday, and the rest of the week; this is used for modelling reporting effects
Data is available at https://digital.nhs.uk/dashboards/nhs-pathways; this precise dataset adds some cleaning and additional informaion (on NHS regions) and is taken from Quentin Leclerc's github repository: https://github.com/qleclerc/nhs_pathways_report
National Health Services (NHS) for England. Additional data and cleaning by Quentin Leclerc.
if (FALSE) { # These commands will download the latest version of the data: library(tidyverse) # download data pathways <- tempfile() url <- paste0("https://github.com/qleclerc/nhs_pathways_report/", "raw/master/data/rds/pathways_latest.rds") download.file(url, pathways) pathways <- readRDS(pathways) head(pathways) }