diff --git a/.all-contributorsrc b/.all-contributorsrc new file mode 100644 index 0000000..e75dd49 --- /dev/null +++ b/.all-contributorsrc @@ -0,0 +1,4 @@ +{ + "projectName": "NHSRdatasets", + "projectOwner": "nhs-r-community" +} diff --git a/DESCRIPTION b/DESCRIPTION index ef5d69d..b49fc64 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -2,11 +2,12 @@ Package: NHSRdatasets Type: Package Title: NHS and Healthcare-Related Data for Education and Training Date: 2022-11-08 -Version: 0.3.2 +Version: 0.3.3 Authors@R: c( - person("Gary", "Hutson", , "g.hutson@nhs.net", "aut", comment = c(ORCID="0000-0003-3534-6143")), + person("Gary", "Hutson", , , "aut", comment = c(ORCID="0000-0003-3534-6143")), person("Tom", "Jemmett", ,"thomas.jemmett@nhs.net", "aut", comment = c(ORCID="0000-0002-6943-2990")), person("Chris", "Mainey", ,"c.mainey1@nhs.net", c("aut", "cre"), comment = c(ORCID ="0000-0002-3018-6171")), + person("Fran", "Barton", ,"fbarton@alwaysdata.net", "aut", comment = c(ORCID = "0000-0002-5650-1176")), person("Zoë", "Turner", role = "aut", email = "zoe.turner3@nhs.net", comment = c(ORCID = "0000-0003-1033-9158")), person("NHS-R community", role = "cph") ) @@ -16,11 +17,9 @@ License: CC0 Language: en-GB Encoding: UTF-8 LazyData: true -RoxygenNote: 7.2.3 +RoxygenNote: 7.3.2 Depends: R (>= 3.5.0) BugReports: https://github.com/nhs-r-community/NHSRdatasets/issues -Imports: - tibble Suggests: caret, dplyr, @@ -29,9 +28,7 @@ Suggests: ggplot2, ggrepel, httr2, - janitor, knitr, - labelled, lattice, lme4, lmtest, @@ -39,14 +36,13 @@ Suggests: magrittr, MASS, ModelMetrics, - openxlsx2, rcmdcheck, readr, rmarkdown, rsample, scales, - stringi, synthpop, + tibble, tidyr, varhandle VignetteBuilder: knitr diff --git a/NEWS.md b/NEWS.md index 72731ab..deb6c7f 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,23 +1,40 @@ +# NHSRdatasets 0.3.3 + +- Moved the vignette for how ONS provisionally recorded deaths to an R script +available in the data-raw folder. +This is also available on the Quarto NHS-R Community website and +[GitHub](https://github.com/nhs-r-community/nhs-r-community/blob/main/blog/building-the-ons-mortality-dataset.qmd) +- Noted in this version the previous addition of the dataset from AphA (with kind +permission) from their CPD Survey, thanks to Fran Barton. Code detailing how the +data was extracted using the httr2 package and tidied can be found in the +[data-raw folder](https://github.com/nhs-r-community/NHSRdatasets/blob/main/data-raw/apha_cpd_survey.R). +- Noted in this version the previous addition of the dataset from European +Centre for Disease Prevention and Control for reported COVID19 infections and +deaths by day and country collected on the 14th December 2020, thanks to Chris +Mainey. + # NHSRdatasets 0.3.0 -- Added two new datasets for 'stranded patients' and synthetic early warning scores (NEWS), including vignettes, thanks to Gary Hutson. +- Added two new datasets for 'stranded patients' and synthetic early warning +scores (NEWS), including vignettes, thanks to Gary Hutson. - Removed Travis and added GitHub actions # NHSRdatasets 0.2.0 -- Added a new ONS Mortality data set, and vignette showing it's construction, thanks to Zoë Turner. +- Added a new ONS Mortality data set, and vignette showing its construction, +thanks to Zoë Turner. - Resaved .Rdata files as rda, using "gzip" compression. - Other minor documentation tweaks. - # NHSRdatasets 0.1.2 -- Added a new NHS Accident and Emergency (A&E) dataset with vignette, thanks to Tom Jemmett. +- Added a new NHS Accident and Emergency (A&E) dataset with vignette, thanks to +Tom Jemmett. - Typos resolved and cleaned some files. - Added pkgdown site. - # NHSRdatasets 0.1.1 -- This is the first release of this collaborative package for NHS and healthcare analysts to learn or teach R. +- This is the first release of this collaborative package for NHS and healthcare +analysts to learn or teach R. It will evolve over time as new contributions are released. diff --git a/R/LOS_model.R b/R/LOS_model.R index cca8470..785fd14 100644 --- a/R/LOS_model.R +++ b/R/LOS_model.R @@ -10,7 +10,7 @@ #' @format Data frame with five columns #' \describe{ #' \item{ID}{A fictional patient ID number} -#' \item{Organisation}{A factor representing one of ten fictional hospital trusts, e.g. Trust1} +#' \item{Organisation}{A factor representing one of ten fictional hospital trusts, for example Trust1} #' \item{Age}{Age in years of each fictional patient} #' \item{LOS}{In-hospital length of stay in days. The difference between admission and discharge date in dates} #' \item{Death}{Binary for death status: 0 = survived, 1= died in hospital} @@ -23,12 +23,11 @@ #' @examples #' data(LOS_model) #' -#' model1 <- glm(Death ~ Age + LOS, data=LOS_model, family="binomial") +#' model1 <- glm(Death ~ Age + LOS, data = LOS_model, family = "binomial") #' summary(model1) #' #' # Now with an Age, LOS, and Age*LOS interaction. -#' model2<- glm(Death ~ Age * LOS, data=LOS_model, family="binomial") +#' model2 <- glm(Death ~ Age * LOS, data = LOS_model, family = "binomial") #' summary(model2) #' "LOS_model" - diff --git a/R/ae_attendances.R b/R/ae_attendances.R index b5551c9..f7199b3 100644 --- a/R/ae_attendances.R +++ b/R/ae_attendances.R @@ -51,9 +51,11 @@ #' filter(any(type == "1")) %>% #' summarise_at(vars(attendances, breaches), sum) %>% #' arrange(desc(attendances)) %>% -#' mutate(performance = 1 - breaches / attendances, -#' overall_performance = 1 - sum(breaches) / sum(attendances), -#' rank = rank(-performance, ties.method = "first") / n()) %>% +#' mutate( +#' performance = 1 - breaches / attendances, +#' overall_performance = 1 - sum(breaches) / sum(attendances), +#' rank = rank(-performance, ties.method = "first") / n() +#' ) %>% #' ggplot(aes(rank, performance)) + #' geom_vline(xintercept = c(0.25, 0.5, 0.75), linetype = "dotted") + #' geom_hline(yintercept = 0.95, colour = "red") + @@ -61,11 +63,14 @@ #' geom_point() + #' scale_y_continuous(labels = percent) + #' theme_minimal() + -#' theme(panel.grid = element_blank(), -#' axis.text.x = element_blank()) + -#' labs(title = "4 Hour performance by trust", -#' subtitle = "Apr-16 through Mar-19", -#' x = "", y = "") +#' theme( +#' panel.grid = element_blank(), +#' axis.text.x = element_blank() +#' ) + +#' labs( +#' title = "4 Hour performance by trust", +#' subtitle = "Apr-16 through Mar-19", +#' x = "", y = "" +#' ) #' "ae_attendances" - diff --git a/R/apha_cpd_survey.R b/R/apha_cpd_survey.R index 4b8487f..d0d7131 100644 --- a/R/apha_cpd_survey.R +++ b/R/apha_cpd_survey.R @@ -1,21 +1,21 @@ #' AphA (Association of Professional Healthcare Analysts) CPD Survey Responses -#' +#' #' Full raw data from the AphA CPD Survey -#' +#' #' @source \url{https://www.aphanalysts.org/documents/cpd-survey-results-raw-data/} -#' +#' #' The survey of NHS and other healthcare data analysts was conducted in July #' 2022. The results data is made available in this package with the permission #' of AphA. -#' +#' #' @format This tidied raw data is available here as a tibble with 38 columns #' (blank or superfluous columns from the raw data were removed) and 237 rows #' (1 per respondent ID). -#' +#' #' Variables have been named using a "controlled language" approach informed #' by Emily Riederer's "Column Names as Contracts" #' \url{https://emilyriederer.netlify.app/post/column-name-contracts/}. -#' +#' #' \describe{ #' \item{*_id}{Columns ending in \code{"_id"} are numeric and represent a #' unique ID for that response.} @@ -33,20 +33,20 @@ #' \item{*_txt}{Columns ending in \code{"_txt"} contain free text responses and #' are in character format.} #' } -#' +#' #' Multi-part questions have column name stubs with sequential letters. For #' example, \code{"q20a_"}, \code{"q20b_"} and so on. #' For formatting consistency, questions with a single part still have a #' column name stub with the letter a, for example \code{"q01a_"}. -#' +#' #' Original survey questions (lightly edited) are provided as variable labels #' using the \code{{labelled}} package #' \url{https://larmarange.github.io/labelled/}. #' These labels provide more descriptive context for the "clean" column names. #' Variable labels can be viewed using \code{labelled::get_variable_labels #' (apha_cpd_survey)}. -#' -#' +#' +#' #' Survey press release web page: \url{https://www.aphanalysts.org/ltnws/nhs-at-risk-of-losing-a-generation-of-data-analysts/} -#' +#' "apha_cpd_survey" diff --git a/R/covid19.R b/R/covid19.R index db3f9d0..7abd2b6 100644 --- a/R/covid19.R +++ b/R/covid19.R @@ -1,11 +1,15 @@ #' International COVID-19 reported infection and death data #' -#' Reported COVID-19 infections, and deaths, collected and collated by the European Centre for Disease Prevention -#' and Control (ECDC, provided by day and country. -#' Data were collated and published up to 14th December 2020, and have been tidied so they are easily usable within the `tidyverse` of packages. +#' Reported COVID-19 infections, and deaths, collected and collated by the +#' European Centre for Disease Prevention and Control (ECDC, provided by day +#' and country). Data were collated and published up to 14th December 2020, +#' and have been tidied so they are easily usable within the `tidyverse` of +#' packages. #' #' Data sourced from \href{https://www.ecdc.europa.eu/en/publications-data/download-todays-data-geographic-distribution-covid-19-cases-worldwide}{European Centre for Disease Prevention and Control} -#' which is available under the open licence, compatible with the CC BY 4.0 license, further details available at \href{https://www.ecdc.europa.eu/en/copyright}{ECDC}. +#' which is available under the open licence, compatible with the CC BY 4.0 +#' license, further details available at +#' \href{https://www.ecdc.europa.eu/en/copyright}{ECDC}. #' #' @docType data #' @@ -14,10 +18,14 @@ #' @format Tibble with seven columns #' \describe{ #' \item{date_reported}{The date cases were reported} -#' \item{contient}{A `factor` for the geographical continent in which the reporting country is located.} -#' \item{countries_and_territories}{A `factor` for the country or territory reporting the data.} -#' \item{countries_territory_code}{A `factor` for the a three-letter country or territory code.} -#' \item{population_2019}{The reported population of the country for 2019, taken from Eurostat for Europe and the World Bank for the rest of the world.} +#' \item{contient}{A `factor` for the geographical continent in which the +#' reporting country is located.} +#' \item{countries_and_territories}{A `factor` for the country or territory +#' reporting the data.} +#' \item{countries_territory_code}{A `factor` for the a three-letter country +#' or territory code.} +#' \item{population_2019}{The reported population of the country for 2019, +#' taken from Eurostat for Europe and the World Bank for the rest of the world.} #' \item{cases}{The reported number of positive cases.} #' \item{deaths}{The reported number of deaths.} #' } @@ -36,13 +44,14 @@ #' # Create a plot of the performance for England over time #' covid19 %>% #' filter(countries_and_territories == -#' c( "United_Kingdom", "Italy", "France", "Germany", "Spain")) %>% -#' ggplot(aes(x=date_reported, y= cases, col=countries_and_territories)) + -#' geom_line()+ +#' c("United_Kingdom", "Italy", "France", "Germany", "Spain")) %>% +#' ggplot(aes(x = date_reported, y = cases, col = countries_and_territories)) + +#' geom_line() + #' scale_color_discrete("Country") + -#' scale_y_continuous(labels=comma)+ -#' labs(y="Cases", x="Date", title="Covid-19 cases for selected countries" -#' , alt="A plot of covid-19 cases in France, Germany, Italy, Spain & the UK")+ +#' scale_y_continuous(labels = comma) + +#' labs( +#' y = "Cases", x = "Date", title = "Covid-19 cases for selected countries", +#' alt = "A plot of covid-19 cases in France, Germany, Italy, Spain & the UK" +#' ) + #' theme_minimal() "covid19" - diff --git a/R/ons_mortality.R b/R/ons_mortality.R index 062669c..e124cb9 100644 --- a/R/ons_mortality.R +++ b/R/ons_mortality.R @@ -13,27 +13,28 @@ #' #' @format Data frame with five columns #' \describe{ -#' \item{category_1}{character, containing the names of the groups for counts, e.g. "Total deaths", "all ages".} -#' \item{category_2}{character, subcategory of names of groups where necessary, e.g. details of region: "East", details of age bands "15-44".} +#' \item{category_1}{character, containing the names of the groups for counts, for example "Total deaths", "all ages".} +#' \item{category_2}{character, subcategory of names of groups where necessary, for example details of region: "East", details of age bands "15-44".} #' \item{counts}{numeric, numbers of deaths in whole numbers and average numbers with decimal points. To retain the integrity of the format this column data is left as character.} #' \item{date}{date, format is yyyy-mm-dd; all dates are a Friday.} #' \item{week_no}{integer, each week in a year is numbered sequentially.} #' } #' -#' @source Collected by Zoë Turner \email{zoe.turner2@nottshc.nhs.uk}, Apr-2020 from \url{https://www.ons.gov.uk/peoplepopulationandcommunity/birthsdeathsandmarriages/deaths/datasets/weeklyprovisionalfiguresondeathsregisteredinenglandandwales} +#' @source Collected by Zoë Turner \email{zoe.turner3@nhs.net}, Apr-2020 from \url{https://www.ons.gov.uk/peoplepopulationandcommunity/birthsdeathsandmarriages/deaths/datasets/weeklyprovisionalfiguresondeathsregisteredinenglandandwales} #' #' @usage data(ons_mortality) #' #' @examples #' data(ons_mortality) #' -#'library(dplyr) -#'library(tidyr) +#' library(dplyr) +#' library(tidyr) #' -#'wideForm <- ons_mortality %>% -#' select(-week_no) %>% -#' pivot_wider(names_from = date, -#' values_from = counts -#' ) +#' wideForm <- ons_mortality %>% +#' select(-week_no) %>% +#' pivot_wider( +#' names_from = date, +#' values_from = counts +#' ) #' "ons_mortality" diff --git a/R/stranded_patient_model.R b/R/stranded_patient_model.R index 871ff62..795ec48 100644 --- a/R/stranded_patient_model.R +++ b/R/stranded_patient_model.R @@ -20,7 +20,7 @@ #' \item{frailty_index}{An initial index assessment to say if the patient is frail or not. This is needed for alignment of service provision.} #' } #' -#' @source Synthetically generated by Gary Hutson \email{g.hutson@nhs.net}, Mar-2021. +#' @source Synthetically generated by Gary Hutson, Mar-2021. #' #' @usage data(stranded_data) #' @@ -29,6 +29,6 @@ #' library(dplyr) #' data("stranded_data") #' stranded_data %>% -#' glimpse() +#' glimpse() #' "stranded_data" diff --git a/R/synthetic_news_data.R b/R/synthetic_news_data.R index 8013d02..558aa0e 100644 --- a/R/synthetic_news_data.R +++ b/R/synthetic_news_data.R @@ -23,7 +23,7 @@ #' \item{died}{Indicator to monitor patient death} #' } #' -#' @source Generated by Dr. Muhammed Faisal and created by Gary Hutson \email{g.hutson@nhs.net}, Mar-2021 +#' @source Generated by Dr. Muhammed Faisal and created by Gary Hutson, Mar-2021 #' #' @usage data(synthetic_news_data) #' @@ -32,5 +32,5 @@ #' library(dplyr) #' data("synthetic_news_data") #' synthetic_news_data %>% -#' glimpse() +#' glimpse() "synthetic_news_data" diff --git a/README.Rmd b/README.Rmd index 0ac848f..38e96a1 100644 --- a/README.Rmd +++ b/README.Rmd @@ -74,3 +74,14 @@ It's great to see the {NHSRdatasets} package and data used as it promotes the wo The data used to build the mortality dataset in this package is released under © Crown copyright and is free to use under the terms of the Open Government Licence. Any subsequent use should include a source accreditation to ONS to help people find the original releases and any statistical corrections that may have occurred since this was included in this pacakge - Source: Office for National Statistics licensed under the Open Government Licence. + +## Contributors + + + + + + + + + diff --git a/data-raw/apha_cpd_survey.R b/data-raw/apha_cpd_survey.R index 75700f8..6fef355 100644 --- a/data-raw/apha_cpd_survey.R +++ b/data-raw/apha_cpd_survey.R @@ -1,13 +1,13 @@ # Source: https://www.aphanalysts.org/documents/cpd-survey-results-raw-data/ # (Accessed 25 January 2024) -# +# # The .xlsx file cannot be directly downloaded in `R` from its URL as there is # protection on the file: it must be downloaded by submitting the form on the # web page, either manually by clicking the button on the page, or by # simulating the form submission using form headers within an {httr2} pipeline. # HTML form code, copied from above URL, and used as source for form headers: -# +# #
# # @@ -22,7 +22,7 @@ raw_data_url <- paste0( "https://www.aphanalysts.org/", "document/get/file/CPD-Survey-Results-RAW-Data.xlsx" - ) +) dl_tmp <- tempfile("apha_raw_data", fileext = ".xlsx") @@ -32,7 +32,7 @@ httr2::request(raw_data_url) |> cmdm_nonce = "c133038289", id = "14354", shortcodeId = "31fae3b9363d47608d9038cffc3fa471" - ) |> + ) |> httr2::req_perform() |> # The lines below could be omitted and the `path` argument to req_perform() # used instead; but the more verbose/explicit method seems clearer. @@ -110,7 +110,7 @@ var_labels <- c( "Are you professionally registered with the AphA? If so, at what level?", "Are you a member of an alternative association?", "As an analyst, are you aware of professional development opportunities in the NHS?", - "As an analyst, are you provided with opportunities/time to upskill during work hours, i.e. you have time to do this at work?", + "As an analyst, are you provided with opportunities/time to upskill during work hours, that is you have time to do this at work?", "Do you undertake CPD out of work hours?", "If yes, on how many days per year?", "Do you feel your manager is supportive of your professional development?", @@ -129,7 +129,7 @@ var_labels <- c( "Where do you learn from professional development opportunities? - Word of mouth recommendations", "Where do you learn from professional development opportunities? - AphA website", "Where do you learn from professional development opportunities? - Other (please specify):", - "Are there any professional development opportunities (e.g. AphA website, websites, blogs, or twitter accounts you follow) that you would recommend to your fellow colleagues? Please specify:", + "Are there any professional development opportunities (for example AphA website, websites, blogs, or twitter accounts you follow) that you would recommend to your fellow colleagues? Please specify:", "What sort of NHS organisation do you work for?", "What’s the size of your analytics team (including both full-time and part-time staff)?", "Do you feel that analytics influences important decisions in your organisation?" diff --git a/data-raw/ons-mortality.R b/data-raw/ons-mortality.R new file mode 100644 index 0000000..552f351 --- /dev/null +++ b/data-raw/ons-mortality.R @@ -0,0 +1,368 @@ +# Source and licence acknowledgement +# +# This data has been made available through Office of National Statistics under +# the [Open Government +# Licence](http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/). +# +# The main page for downloads is found on the ONS People Population and +# Community pages +# https://www.ons.gov.uk/peoplepopulationandcommunity/birthsdeathsandmarriages/deaths/datasets/weeklyprovisionalfiguresondeathsregisteredinenglandandwales +# This was original a vignette and the text and code has been moved to be a blog +# https://nhsrcommunity.nhsrcommunity.com/blog/building-the-ons-mortality-dataset.html + +# 2019 +download.file( + "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fweeklyprovisionalfiguresondeathsregisteredinenglandandwales%2f2019/publishedweek522019.xls", + destfile = "2019Mortality.xls", + method = "wininet", + mode = "wb") + +# 2018 +download.file( + "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fweeklyprovisionalfiguresondeathsregisteredinenglandandwales%2f2018/publishedweek522018withupdatedrespiratoryrow.xls", + destfile = "2018Mortality.xls", + method = "wininet", + mode = "wb") + +# 2017 +download.file( + "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fweeklyprovisionalfiguresondeathsregisteredinenglandandwales%2f2017/publishedweek522017.xls", + destfile = "2017Mortality.xls", + method = "wininet", + mode = "wb") + +# 2016 +download.file( + "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fweeklyprovisionalfiguresondeathsregisteredinenglandandwales%2f2016/publishedweek522016.xls", + destfile = "2016Mortality.xls", + method = "wininet", + mode = "wb") + +# 2015 +download.file( + "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fweeklyprovisionalfiguresondeathsregisteredinenglandandwales%2f2015/publishedweek2015.xls", + destfile = "2015Mortality.xls", + method = "wininet", + mode = "wb") + +# 2014 +download.file( + "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fweeklyprovisionalfiguresondeathsregisteredinenglandandwales%2f2014/publishedweek2014.xls", + destfile = "2014Mortality.xls", + method = "wininet", + mode = "wb") + +# 2013 +download.file( + "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fweeklyprovisionalfiguresondeathsregisteredinenglandandwales%2f2013/publishedweek2013.xls", + destfile = "2013Mortality.xls", + method = "wininet", + mode = "wb") + +# 2012 +download.file( + "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fweeklyprovisionalfiguresondeathsregisteredinenglandandwales%2f2012/publishedweek2012.xls", + destfile = "2012Mortality.xls", + method = "wininet", + mode = "wb") + +# 2011 +download.file( + "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fweeklyprovisionalfiguresondeathsregisteredinenglandandwales%2f2011/publishedweek2011.xls", + destfile = "2011Mortality.xls", + method = "wininet", + mode = "wb") + +# 2010 +download.file( + "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fweeklyprovisionalfiguresondeathsregisteredinenglandandwales%2f2010/publishedweek2010.xls", + destfile = "2010Mortality.xls", + method = "wininet", + mode = "wb") + +library(readxl) +library(dplyr) + +files_list <- list.files(path = "working_files", + pattern = "*.xls", + full.names = TRUE) + + +read_then_csv <- function(sheet, path) { + pathbase <- path %>% + basename() %>% + tools::file_path_sans_ext() + path %>% + read_excel(sheet = sheet) %>% + write_csv(paste0(pathbase, "-", sheet, ".csv")) +} + + +for(j in 1:length(files_list)){ + + path <- paste0(files_list[j]) + + path %>% + excel_sheets() %>% + set_names() %>% + map(read_then_csv, path = path) +} + + +## Loading the weekly figure worksheets + +files_list_sheets <- list.files(path = "working_files", + pattern = "Weekly", + full.names = TRUE + ) + +for(i in files_list_sheets) { + + x <- read_csv((i), col_types = cols(.default = col_character())) + + assign(i, x) +} + + +## Format data functions + +### 2010 - 2015 + +# Column names that are not related to data points to be removed. This is the same for all years' spreadsheets. +# Note that single quotes are used for the categories as one sentence includes '' in the text (4). + +remove_lookup <- c('week over the previous five years1', + 'Deaths by underlying cause2,3', + 'Footnotes', + '1 This average is based on the actual number of death registrations recorded for each corresponding week over the previous five years. Moveable public holidays, when register offices are closed, affect the number of registrations made in the published weeks and in the corresponding weeks in previous years.', + '2 Counts of deaths by underlying cause exclude deaths at age under 28 days.', + '3 Coding of deaths by underlying cause for the latest week is not yet complete.', + "4Does not include deaths where age is either missing or not yet fully coded. For this reason counts of 'Persons', 'Males' and 'Females' may not sum to 'Total Deaths, all ages'.", + '5 Does not include deaths of those resident outside England and Wales or those records where the place of residence is either missing or not yet fully coded. For this reason counts for "Deaths by Region of usual residence" may not sum to "Total deaths, all ages".', + 'Source: Office for National Statistics', + 'Deaths by age group' +) + +formatFunction <- function(file){ + + ONS <- file %>% + clean_names %>% + remove_empty(c("rows","cols")) %>% + filter(!contents %in% remove_lookup) %>% + + # useful categories are found in the column contents but also include the footnote number + mutate(Category = case_when(is.na(x2) & str_detect(contents, "Region") ~ "Region", + is.na(x2) & str_detect(contents, "Persons") ~ "Persons", + is.na(x2) & str_detect(contents, "Females") ~ "Females", + is.na(x2) & str_detect(contents, "Males") ~ "Males") + ) %>% + select(contents, Category, everything()) %>% + + # to ensure data like Persons, Males and Females + fill(Category) %>% + + # categories with Persons, Males and Females in the original column do not correspond directly to data points (wide form data) so are removed by referring to str_detect to find the word + filter(!str_detect(contents, "Persons"), + !str_detect(contents, "Males"), + !str_detect(contents, "Females")) %>% + + # the two columns for Category and contents are merged to Categories to bring the Category column first. Some categories don't have subcategories and these are preceded by NA_ with this merge + unite("Categories", Category, contents) %>% + filter(Categories != "Region_Deaths by Region of usual residence 5") %>% + + # the NA_ is removed from some of the category names + mutate(Categories = case_when(str_detect(Categories, "NA_") ~ str_replace(Categories, "NA_", ""), + TRUE ~ Categories)) + + # Push date row to column names + onsFormattedJanitor <- row_to_names(ONS, 3) + + # move data from wide to long form using pivot_longer + x <- onsFormattedJanitor %>% + pivot_longer(cols = -`Week ended`, + names_to = "allDates", + values_to = "counts") %>% + + # some spreadsheets import with Excel serial numbers for dates and others as dates, janitor is used to correct this + mutate(realDate = dmy(allDates), + ExcelSerialDate = case_when(stri_length(allDates) == 5 ~ excel_numeric_to_date(as.numeric(allDates), date_system = "modern")), + date = case_when(is.na(realDate) ~ ExcelSerialDate, + TRUE ~ realDate)) %>% + group_by(`Week ended`) %>% + + # the week number is replaced as this was lost with the moving of dates to the column headers + mutate(week_no = row_number()) %>% + ungroup() %>% + + # Category is a staging name as this is followed by a splitting of the column into category_1 and category_2 + rename(Category = `Week ended`) %>% + + # to split the columns there are various characters used as a split point ",", "-", and ":" in the respiratory category the version is denoted by "v" + mutate(category_1 = case_when(str_detect(Category, ",") ~ + substr(Category,1,str_locate(Category, ",") -1), + str_detect(Category, ":") ~ + substr(Category,1,str_locate(Category, ":") -1), + str_detect(Category, "_") ~ + substr(Category,1,str_locate(Category, "_") -1), + str_detect(Category, "respiratory") ~ + "All respiratory diseases (ICD-10 J00-J99) ICD-10"), + category_2 = case_when(str_detect(Category, ",") ~ + substr(Category,str_locate(Category, ", ") +2, str_length(Category)), + str_detect(Category, ":") ~ + substr(Category,str_locate(Category, ": ") +2, str_length(Category)), + str_detect(Category, "_") ~ + substr(Category,str_locate(Category, "_") +1, str_length(Category)), + str_detect(Category, "respiratory") ~ + substr(Category,str_locate(Category, "v"), str_length(Category)) ), + + # the data for Total deaths: average of corresponding week over the previous 5 years is split over two cells in the spreasheet + category_2 = recode(category_2, + "average of corresponding" = "average of same week over 5 years")) %>% + select(category_1, + category_2, + counts, + date, + week_no + ) %>% + + # 2011 requires this code to remove rows where there are no counts and because there are 2 rows relating to respiratory death numbers (see the Respiratory section) the previous methodology has been included in the spreadsheet with : for counts. This code does not affect other years' data/ + filter(!is.na(counts), + counts != ":") %>% + fill(category_1) + + return(x) + +} + +Mortality2010 <- formatFunction(`working_files/Weekly/2010Mortality-Weekly Figures 2010.csv`) + +# 2011 has two lines relating to respiratory, v 2001 only has one data point and the rest of the year is 2010 +Mortality2011 <- formatFunction(`working_files/Weekly/2011Mortality-Weekly Figures 2011.csv`) %>% + mutate(category_2 = case_when(is.na(category_2) & category_1 == "All respiratory diseases (ICD-10 J00-J99) ICD-10" ~ "v 2010", + TRUE ~ category_2)) + +Mortality2012 <- formatFunction(`working_files/Weekly/2012Mortality-Weekly Figures 2012.csv`) +Mortality2013 <- formatFunction(`working_files/Weekly/2013Mortality-Weekly Figures 2013.csv`) +Mortality2014 <- formatFunction(`working_files/Weekly/2014Mortality-Weekly Figures 2014.csv`) +Mortality2015 <- formatFunction(`working_files/Weekly/2015Mortality-Weekly Figures 2015.csv`) + + +#### Format data 2016 - 2019 + +formatFunction2016 <- function(file){ + + ONS <- file %>% + clean_names %>% + + # An extra column has been added for region codes (not included in the dataset) meaning contents are now found in the janitor generated column name x2 + mutate(x2 = case_when(is.na(x2) ~ contents, + TRUE ~ x2)) %>% + remove_empty(c("rows","cols")) %>% + select(-contents) %>% + filter(!x2 %in% remove_lookup) %>% + + # Region has changed to region + mutate(Category = case_when(is.na(x3) & str_detect(x2, "region") ~ "Region", + is.na(x3) & str_detect(x2, "Persons") ~ "Persons", + is.na(x3) & str_detect(x2, "Females") ~ "Females", + is.na(x3) & str_detect(x2, "Males") ~ "Males", + TRUE ~ NA_character_) + ) %>% + select(x2, Category, everything()) %>% + fill(Category) %>% + filter(!str_detect(x2, 'Persons'), + !str_detect(x2, 'Males'), + !str_detect(x2, 'Females')) %>% + unite("Categories", Category, x2) %>% + filter(Categories != 'Region_Deaths by Region of usual residence 5') %>% + mutate(Categories = case_when(str_detect(Categories, "NA_") ~ str_replace(Categories, "NA_", ""), + TRUE ~ Categories)) + + # Push date row to column names + onsFormattedJanitor <- row_to_names(ONS, 3) + + # move data from wide to long form using pivot_longer + x <- onsFormattedJanitor %>% + pivot_longer(cols = -`Week ended`, + names_to = "allDates", + values_to = "counts") %>% + mutate(realDate = dmy(allDates), + ExcelSerialDate = case_when(stri_length(allDates) == 5 ~ excel_numeric_to_date(as.numeric(allDates), date_system = "modern")), + date = case_when(is.na(realDate) ~ ExcelSerialDate, + TRUE ~ realDate)) %>% + group_by(`Week ended`) %>% + mutate(week_no = row_number()) %>% + ungroup() %>% + rename(Category = `Week ended`) %>% + mutate(category_1 = case_when(str_detect(Category, ",") ~ + substr(Category,1,str_locate(Category, ",") -1), + str_detect(Category, ":") ~ + substr(Category,1,str_locate(Category, ":") -1), + str_detect(Category, "_") ~ + substr(Category,1,str_locate(Category, "_") -1), + str_detect(Category, "respiratory") ~ + "All respiratory diseases (ICD-10 J00-J99) ICD-10"), + category_2 = case_when(str_detect(Category, ",") ~ + substr(Category,str_locate(Category, ", ") +2, str_length(Category)), + str_detect(Category, ":") ~ + substr(Category,str_locate(Category, ": ") +2, str_length(Category)), + str_detect(Category, "_") ~ + substr(Category,str_locate(Category, "_") +1, str_length(Category)), + str_detect(Category, "respiratory") ~ + substr(Category,str_locate(Category, "v"), str_length(Category)) ), + category_2 = recode(category_2, + "average of corresponding" = "average of same week over 5 years")) %>% + select(category_1, + category_2, + counts, + date, + week_no + ) %>% + filter(!is.na(counts)) + + return(x) + +} + + +Mortality2016 <- formatFunction2016(`working_files/Weekly/2016Mortality-Weekly figures 2016.csv`) +Mortality2017 <- formatFunction2016(`working_files/Weekly/2017Mortality-Weekly figures 2017.csv`) +Mortality2018 <- formatFunction2016(`working_files/Weekly/2018Mortality-Weekly figures 2018.csv`) +Mortality2019 <- formatFunction2016(`working_files/Weekly/2019Mortality-Weekly figures 2019.csv`) + + +## Bind together + +ons_mortality <- do.call("rbind", list( + Mortality2010, + Mortality2011, + Mortality2012, + Mortality2013, + Mortality2014, + Mortality2015, + Mortality2016, + Mortality2017, + Mortality2018, + Mortality2019)) + + +## Load the data + +data("ons_mortality") + +## Respiratory + +ons_mortality %>% + mutate(year = year(date)) %>% + select(year, category_1, category_2) %>% + group_by(year, category_1, category_2) %>% + filter(category_1 == 'All respiratory diseases (ICD-10 J00-J99) ICD-10') %>% + slice(1) + +ons_mortality %>% + select(category_1, category_2) %>% + group_by(category_1, category_2) %>% + filter(category_1 %in% c('Persons','Females','Males')) %>% + slice(1) + +unlink("working_files", recursive = TRUE) diff --git a/man/LOS_model.Rd b/man/LOS_model.Rd index e15dc38..fda7dad 100644 --- a/man/LOS_model.Rd +++ b/man/LOS_model.Rd @@ -8,7 +8,7 @@ Data frame with five columns \describe{ \item{ID}{A fictional patient ID number} -\item{Organisation}{A factor representing one of ten fictional hospital trusts, e.g. Trust1} +\item{Organisation}{A factor representing one of ten fictional hospital trusts, for example Trust1} \item{Age}{Age in years of each fictional patient} \item{LOS}{In-hospital length of stay in days. The difference between admission and discharge date in dates} \item{Death}{Binary for death status: 0 = survived, 1= died in hospital} @@ -27,11 +27,11 @@ Data were generate to learn Generalized Linear Models (GLM) concepts, modelling \examples{ data(LOS_model) -model1 <- glm(Death ~ Age + LOS, data=LOS_model, family="binomial") +model1 <- glm(Death ~ Age + LOS, data = LOS_model, family = "binomial") summary(model1) # Now with an Age, LOS, and Age*LOS interaction. -model2<- glm(Death ~ Age * LOS, data=LOS_model, family="binomial") +model2 <- glm(Death ~ Age * LOS, data = LOS_model, family = "binomial") summary(model2) } diff --git a/man/ae_attendances.Rd b/man/ae_attendances.Rd index ebc23f9..3dcc5ee 100644 --- a/man/ae_attendances.Rd +++ b/man/ae_attendances.Rd @@ -56,9 +56,11 @@ ae_attendances \%>\% filter(any(type == "1")) \%>\% summarise_at(vars(attendances, breaches), sum) \%>\% arrange(desc(attendances)) \%>\% - mutate(performance = 1 - breaches / attendances, - overall_performance = 1 - sum(breaches) / sum(attendances), - rank = rank(-performance, ties.method = "first") / n()) \%>\% + mutate( + performance = 1 - breaches / attendances, + overall_performance = 1 - sum(breaches) / sum(attendances), + rank = rank(-performance, ties.method = "first") / n() + ) \%>\% ggplot(aes(rank, performance)) + geom_vline(xintercept = c(0.25, 0.5, 0.75), linetype = "dotted") + geom_hline(yintercept = 0.95, colour = "red") + @@ -66,11 +68,15 @@ ae_attendances \%>\% geom_point() + scale_y_continuous(labels = percent) + theme_minimal() + - theme(panel.grid = element_blank(), - axis.text.x = element_blank()) + - labs(title = "4 Hour performance by trust", - subtitle = "Apr-16 through Mar-19", - x = "", y = "") + theme( + panel.grid = element_blank(), + axis.text.x = element_blank() + ) + + labs( + title = "4 Hour performance by trust", + subtitle = "Apr-16 through Mar-19", + x = "", y = "" + ) } \keyword{a&e} diff --git a/man/covid19.Rd b/man/covid19.Rd index a37d9ac..3e08d65 100644 --- a/man/covid19.Rd +++ b/man/covid19.Rd @@ -41,13 +41,15 @@ library(scales) # Create a plot of the performance for England over time covid19 \%>\% filter(countries_and_territories == - c( "United_Kingdom", "Italy", "France", "Germany", "Spain")) \%>\% - ggplot(aes(x=date_reported, y= cases, col=countries_and_territories)) + - geom_line()+ + c("United_Kingdom", "Italy", "France", "Germany", "Spain")) \%>\% + ggplot(aes(x = date_reported, y = cases, col = countries_and_territories)) + + geom_line() + scale_color_discrete("Country") + - scale_y_continuous(labels=comma)+ - labs(y="Cases", x="Date", title="Covid-19 cases for selected countries" - , alt="A plot of covid-19 cases in France, Germany, Italy, Spain & the UK")+ + scale_y_continuous(labels = comma) + + labs( + y = "Cases", x = "Date", title = "Covid-19 cases for selected countries", + alt = "A plot of covid-19 cases in France, Germany, Italy, Spain & the UK" + ) + theme_minimal() } \keyword{coronavirus} diff --git a/man/ons_mortality.Rd b/man/ons_mortality.Rd index 93f2f37..7d31a6c 100644 --- a/man/ons_mortality.Rd +++ b/man/ons_mortality.Rd @@ -7,15 +7,15 @@ \format{ Data frame with five columns \describe{ -\item{category_1}{character, containing the names of the groups for counts, e.g. "Total deaths", "all ages".} -\item{category_2}{character, subcategory of names of groups where necessary, e.g. details of region: "East", details of age bands "15-44".} +\item{category_1}{character, containing the names of the groups for counts, for example "Total deaths", "all ages".} +\item{category_2}{character, subcategory of names of groups where necessary, for example details of region: "East", details of age bands "15-44".} \item{counts}{numeric, numbers of deaths in whole numbers and average numbers with decimal points. To retain the integrity of the format this column data is left as character.} \item{date}{date, format is yyyy-mm-dd; all dates are a Friday.} \item{week_no}{integer, each week in a year is numbered sequentially.} } } \source{ -Collected by Zoë Turner \email{zoe.turner2@nottshc.nhs.uk}, Apr-2020 from \url{https://www.ons.gov.uk/peoplepopulationandcommunity/birthsdeathsandmarriages/deaths/datasets/weeklyprovisionalfiguresondeathsregisteredinenglandandwales} +Collected by Zoë Turner \email{zoe.turner3@nhs.net}, Apr-2020 from \url{https://www.ons.gov.uk/peoplepopulationandcommunity/birthsdeathsandmarriages/deaths/datasets/weeklyprovisionalfiguresondeathsregisteredinenglandandwales} } \usage{ data(ons_mortality) @@ -35,10 +35,11 @@ library(dplyr) library(tidyr) wideForm <- ons_mortality \%>\% - select(-week_no) \%>\% - pivot_wider(names_from = date, - values_from = counts - ) + select(-week_no) \%>\% + pivot_wider( + names_from = date, + values_from = counts + ) } \keyword{England} diff --git a/man/stranded_data.Rd b/man/stranded_data.Rd index c7ee498..f39b016 100644 --- a/man/stranded_data.Rd +++ b/man/stranded_data.Rd @@ -19,7 +19,7 @@ Tibble with nine columns (1 x outcome and 8 predictors) } } \source{ -Synthetically generated by Gary Hutson \email{g.hutson@nhs.net}, Mar-2021. +Synthetically generated by Gary Hutson, Mar-2021. } \usage{ data(stranded_data) @@ -32,7 +32,7 @@ library(magrittr) library(dplyr) data("stranded_data") stranded_data \%>\% - glimpse() + glimpse() } \keyword{datasets} diff --git a/man/synthetic_news_data.Rd b/man/synthetic_news_data.Rd index a71e97c..a04aa89 100644 --- a/man/synthetic_news_data.Rd +++ b/man/synthetic_news_data.Rd @@ -22,7 +22,7 @@ Tibble with twelve columns } } \source{ -Generated by Dr. Muhammed Faisal and created by Gary Hutson \email{g.hutson@nhs.net}, Mar-2021 +Generated by Dr. Muhammed Faisal and created by Gary Hutson, Mar-2021 } \usage{ data(synthetic_news_data) @@ -36,7 +36,7 @@ library(magrittr) library(dplyr) data("synthetic_news_data") synthetic_news_data \%>\% - glimpse() + glimpse() } \keyword{datasets} \keyword{synthetic_news_data} diff --git a/vignettes/LOS_model.Rmd b/vignettes/LOS_model.Rmd index 86a2320..6332fcc 100644 --- a/vignettes/LOS_model.Rmd +++ b/vignettes/LOS_model.Rmd @@ -1,7 +1,6 @@ --- title: "LOS_model: A simulated hospital length-of-stay dataset" author: "Chris Mainey" -date: "`r Sys.Date()`" output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{LOS_model: A simulated hospital length-of-stay dataset} @@ -21,7 +20,7 @@ This vignette details why the `LOS_model` dataset was created, how to load it, a The data were created specifically for regression tutorials, simulating a small set of data on hospital in-patient spells. The data are 10 sets of 30 simulated patient records, representing 10 different hospitals ("Trusts"). The dataset contains: - __ID:__ an integer value patient number -- __Organisation:__ A factor, containing hospital name, e.g. "Trust1" +- __Organisation:__ A factor, containing hospital name, for example "Trust1" - __Age:__ an integer representing patient age in years - __LOS:__ 'Length of Stay,' an integer representing the number of days a patient was in hospital - __Death:__ an integer flag (0 or 1) representing whether a patient died @@ -47,11 +46,11 @@ prop.table(table(LOS_model$Death)) Now lets look at the distributions of Age and LOS. We might expect Age to be normally distributed, but this would be unrealistic, as elderly patient represent higher proportions of the total in-patients. It could be uniform, it could be bi-modal (or have more peaks), but nothing is particularly clear. LOS is highly right-skewed. This means that the high values will affect the mean, dragging it out, and the median would be a better estimation of the centre of the distribution. This shows that most patients don't stay very long, but a few patients stay notably longer. ```{R VisageLOS} -ggplot(LOS_model, aes(x=Age)) + - geom_histogram(alpha=0.5, col=1, fill=12, bins=20)+ +ggplot(LOS_model, aes(x = Age)) + + geom_histogram(alpha = 0.5, col = 1, fill = 12, bins = 20) + ggtitle("Distribution of Age") -ggplot(LOS_model, aes(x=LOS)) + - geom_histogram(alpha=0.5, col=1, fill=13, bins=20)+ +ggplot(LOS_model, aes(x = LOS)) + + geom_histogram(alpha = 0.5, col = 1, fill = 13, bins = 20) + ggtitle("Distribution of Length-of-Stay") ``` @@ -70,7 +69,7 @@ Where $\mu$ is the expectation of Y, and $g$ is the link function The Ordinary Least Squares (OLS) fitting technique used in linear regression, is not a good fit here as our data are not necessarily distributed like that. Here we can use 'maximum-likelihood estimation' (MLE). MLE is related to probability and can be used to identify the parameters that were most likely to have produced our data (the largest likelihood value, or 'maximum likelihood'). -MLE is an iterative process, and is actually performed on the log-likelihood. The model is iteratively refitted to maximise the log-likelihood. Our model is said to 'converge' when we can't improve it any more (usually changes in the log-likelihood < 1e-8). __If you get convergence-related error messages, it means the modelling function can't settle on, or reach the MLE. This often means that the scale of you model predictors is mismatched (e.g. one is binary (0,1), and another is on log scale), or there correlations in your data.__ +MLE is an iterative process, and is actually performed on the log-likelihood. The model is iteratively refitted to maximise the log-likelihood. Our model is said to 'converge' when we can't improve it any more (usually changes in the log-likelihood < 1e-8). __If you get convergence-related error messages, it means the modelling function can't settle on, or reach the MLE. This often means that the scale of you model predictors is mismatched (for example one is binary (0,1), and another is on log scale), or there correlations in your data.__
@@ -93,12 +92,11 @@ Let's fit a generalized linear model, firstly for `Death`, and secondly for `LOS `Death` is a binary variable recorded in our `LOS_model` dataset. This cannot be linear and is usually modelled using the `binomial` family argument, and the `logit` link function. This link function is the default in `R` for `binomial` regressions, and is commonly referred to as __Logistic Regression__. We'll fit this using the `glm` function. Rather than fitting `Death` as such, the link function makes this the log-odds of death. ```{r glm1, collapse=TRUE} -glm_binomial <- glm(Death ~ Age + LOS, data=LOS_model, family="binomial") +glm_binomial <- glm(Death ~ Age + LOS, data = LOS_model, family = "binomial") summary(glm_binomial) ModelMetrics::auc(glm_binomial) - ``` Using the `summary` function, we can see our model output, including: @@ -109,7 +107,7 @@ Using the `summary` function, we can see our model output, including: - Information on fit statistics - We also used the `ModelMetrics` package to calculate the `auc`. This is suggests that ~66% of the variation in our data can be explained by our model. -If we consider the logic of the model above, it is telling us that LOS is a significant predictor for the log-odds of death, but that age is not. This seems unlikely, unless Age and LOS are not independent. If this is the case, e.g. elderly patients stay longer or that shorter staying elderly patients are more likely to have died, the effects of LOS may be obscuring the effects of Age. This is referred to as confounding. We can examine this using an __interaction__ term. +If we consider the logic of the model above, it is telling us that LOS is a significant predictor for the log-odds of death, but that age is not. This seems unlikely, unless Age and LOS are not independent. If this is the case, for example elderly patients stay longer or that shorter staying elderly patients are more likely to have died, the effects of LOS may be obscuring the effects of Age. This is referred to as confounding. We can examine this using an __interaction__ term. ### Interactions @@ -118,12 +116,11 @@ If we consider the logic of the model above, it is telling us that LOS is a sign We can add these to our models with `*` to include the interaction and the independent terms, or `:` if you just want the interaction without the independent terms: ```{r glm2} -glm_binomial2<- glm(Death ~ Age + LOS + Age*LOS, data=LOS_model, family="binomial") +glm_binomial2 <- glm(Death ~ Age + LOS + Age * LOS, data = LOS_model, family = "binomial") summary(glm_binomial2) ModelMetrics::auc(glm_binomial2) - ``` Now our model is suggesting that Age, LOS and their interaction are significant. This suggests that, as well as their own effects, their combination is important, and their effects confound each other. @@ -135,9 +132,9 @@ Now our model is suggesting that Age, LOS and their interaction are significant. Now we have built a model, we can use it to predict our expected $y$, the probability of death per patient in this case. We can supply a new dataset to fit it to, using `newdata`, or omitting this fits our model to the original dataset. Using a `glm`, we have built a model via a link function, so we need to decide what scale to make our predictions on: the `link` scale (the log-odds of death in this case) or the `response` (the probability of death in this case). ```{r glm5} -LOS_model$preds <- predict(glm_binomial2, type="response") +LOS_model$preds <- predict(glm_binomial2, type = "response") -head(LOS_model,5) +head(LOS_model, 5) ``` We have added our predictions back into the original `data.frame` using the column name `preds`, and patient ID 1 has a risk of death of 0.136 or 13.6% probability of death. These predictions can be used in many different applications, but common uses of them are identifying the highest risk patients for clinical audit, comparing ratios of the observed deaths and expected deaths (sum of the probability), or risk-adjusted control chart monitoring. @@ -146,29 +143,25 @@ We have added our predictions back into the original `data.frame` using the colu ## Length of Stay (LOS) -LOS, the time a patient is in hospital, is another variable to examine in the dataset. This is a count, and is therefore bounded at zero (can't have counts < 0), can only take integer values (e.g. 2 or 3, but not 2.5) and is heavily right-skewed, as most patient are only admitted for one or two days, but rarely patients are in for much longer. We'll apply a similar modelling approach to the last example, but the `family` argument and link function must be different. We will use the `Poisson` distribution and the natural logarithm link function, the standard choices for count data[5]. +LOS, the time a patient is in hospital, is another variable to examine in the dataset. This is a count, and is therefore bounded at zero (can't have counts < 0), can only take integer values (for example 2 or 3, but not 2.5) and is heavily right-skewed, as most patient are only admitted for one or two days, but rarely patients are in for much longer. We'll apply a similar modelling approach to the last example, but the `family` argument and link function must be different. We will use the `Poisson` distribution and the natural logarithm link function, the standard choices for count data[5]. ```{r glm3} - -glm_poisson <- glm(LOS ~ Age * Death, data=LOS_model, family="poisson" ) +glm_poisson <- glm(LOS ~ Age * Death, data = LOS_model, family = "poisson") summary(glm_poisson) - ``` We can't use the `AUC` value here, as that is related to categories. We can only make comparisons between models or in terms of prediction error. Lets fit the same model without the interaction and see if it is different using the `AIC` or the likelihood ratio test (that tell you the same thing): ```{r glm4} - -glm_poisson2 <- glm(LOS ~ Age + Death, data=LOS_model, family="poisson" ) +glm_poisson2 <- glm(LOS ~ Age + Death, data = LOS_model, family = "poisson") AIC(glm_poisson) AIC(glm_poisson2) # anova(glm_poisson2, glm_poisson, test="Chisq") will do the same thing without using the lmtest package lmtest::lrtest(glm_poisson, glm_poisson2) - ``` Our `AIC` is lower for the interaction model, and the likelihood ratio test suggest the reduced model is significantly worse. @@ -179,9 +172,7 @@ One of the downfalls of a Poisson models that it's variance is fixed. This is a We can test for this, by comparing the ratio of the sum of the squared Pearson residuals over the degrees of freedom. If this value is 1, then the variance is as expected ('equidispersion'), but if it is >1, then we have OD. ```{r od} - sum(residuals(glm_poisson,type="pearson") ^2)/ df.residual(glm_poisson) - - +sum(residuals(glm_poisson, type = "pearson")^2) / df.residual(glm_poisson) ``` __Our model is overdispersed, with residual variance around 1.4 times what the Poisson distribution expects.__ @@ -201,20 +192,18 @@ There are various different ways to deal with this, and this vignette demonstrat So lets try some of them out. To fit a quasi-Poisson model, we simply change the family. Note the dispersion parameter matches the calculation above: ```{r quasi} -quasi<-glm(LOS ~ Age * Death, data=LOS_model, family="quasipoisson" ) +quasi <- glm(LOS ~ Age * Death, data = LOS_model, family = "quasipoisson") summary(quasi) - ``` For a negative binomial model, two options are `glm.nb` from the `MASS` package, or `glmmTMB` function from the package of the same name. Note that the function from `MASS` does not take a `family` argument. The dispersion factor here is quadratic to the mean, so don't compare it directly to the scale factor above. ```{r nb, warning=FALSE, message=FALSE} library(MASS) -nb <- glm.nb(LOS ~ Age * Death, data=LOS_model,) +nb <- glm.nb(LOS ~ Age * Death, data = LOS_model, ) summary(nb) - ``` @@ -223,14 +212,13 @@ Finally, using the random-intercept model, fitted with `glmer` from the `lme4` p ```{r glmm, warning=FALSE} library(lme4) -glmm <- glmer(LOS ~ scale(Age) * Death + (1|Organisation), data=LOS_model, family="poisson") +glmm <- glmer(LOS ~ scale(Age) * Death + (1 | Organisation), data = LOS_model, family = "poisson") summary(glmm) ``` ```{r confint} confint(glmm) - ``` These models are significantly more complicated. `Confint` can be use to calculate the confidence intervals above by profiling the likelihood (provided you have the `MASS` package installed). This allow you to assess the significance of the random-effects. Our CI butts up to zero here, and the AIC is slightly worse than the `glm`. This suggests it is not well-modelled with the normally distributed random-intercept. The NB model appears to perform better. diff --git a/vignettes/ae_attendances.Rmd b/vignettes/ae_attendances.Rmd index 94eb823..5331b59 100644 --- a/vignettes/ae_attendances.Rmd +++ b/vignettes/ae_attendances.Rmd @@ -2,7 +2,6 @@ title: "ae_attendances dataset" author: - '[Tom Jemmett][tj_email], [The Strategy Unit][su_web]' -date: "15/08/2019" output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{ae_attendances dataset} @@ -59,7 +58,7 @@ data("ae_attendances") # format for display ae_attendances %>% # set the period column to show in Month-Year format - mutate_at(vars(period), format, "%b-%y") %>% + mutate_at(vars(period), format, "%b-%y") %>% # set the numeric columns to have a comma at the 1000's place mutate_at(vars(attendances, breaches, admissions), comma) %>% # show the first 10 rows @@ -77,9 +76,9 @@ england_performance <- ae_attendances %>% mutate(performance = 1 - breaches / attendances) # format for display -england_performance %>% +england_performance %>% # same format options as above - mutate_at(vars(period), format, "%b-%y") %>% + mutate_at(vars(period), format, "%b-%y") %>% mutate_at(vars(attendances, breaches), comma) %>% # this time show the performance column as a percentage mutate_at(vars(performance), percent) %>% @@ -95,10 +94,12 @@ ggplot(england_performance, aes(period, performance)) + geom_line() + geom_point() + scale_y_continuous(labels = percent) + - labs(x = "Month of attendance", - y = "% of attendances that met the 4 hour standard", - title = "NHS England A&E 4 Hour Performance", - caption = "Source: NHS England Statistical Work Areas (OGL v3.0)") + labs( + x = "Month of attendance", + y = "% of attendances that met the 4 hour standard", + title = "NHS England A&E 4 Hour Performance", + caption = "Source: NHS England Statistical Work Areas (OGL v3.0)" + ) ``` We can clearly see the "Winter Pressures" where performance drops. @@ -114,13 +115,15 @@ ae_attendances %>% geom_line() + geom_point() + scale_y_continuous(labels = percent) + - #facet_wrap(vars(type), nrow = 1) + + # facet_wrap(vars(type), nrow = 1) + theme(legend.position = "bottom") + - labs(x = "Month of attendance", - y = "% of attendances that met the 4 hour standard", - title = "NHS England A&E 4 Hour Performance", - subtitle = "By Department Type", - caption = "Source: NHS England Statistical Work Areas (OGL v3.0)") + labs( + x = "Month of attendance", + y = "% of attendances that met the 4 hour standard", + title = "NHS England A&E 4 Hour Performance", + subtitle = "By Department Type", + caption = "Source: NHS England Statistical Work Areas (OGL v3.0)" + ) ``` From this it appears as if only the type 1 departments have the seasonal @@ -143,7 +146,7 @@ performance_by_trust <- ae_attendances %>% # format for display performance_by_trust %>% - mutate_at(vars(period), format, "%b-%y") %>% + mutate_at(vars(period), format, "%b-%y") %>% mutate_at(vars(attendances, breaches), comma) %>% mutate_at(vars(performance), percent) %>% head(10) %>% @@ -171,19 +174,23 @@ tail(performance_by_trust_ranking, 5) performance_by_trust %>% ungroup() %>% mutate_at(vars(org_code), fct_relevel, performance_by_trust_ranking) %>% - filter(org_code %in% c(head(performance_by_trust_ranking, 5), - tail(performance_by_trust_ranking, 5))) %>% + filter(org_code %in% c( + head(performance_by_trust_ranking, 5), + tail(performance_by_trust_ranking, 5) + )) %>% ggplot(aes(period, performance)) + geom_line() + geom_point() + scale_y_continuous(labels = percent) + facet_wrap(vars(org_code), nrow = 2) + theme(legend.position = "bottom") + - labs(x = "Month of attendance", - y = "% of attendances that met the 4 hour standard", - title = "NHS England A&E 4 Hour Performance", - subtitle = "Bottom 5/Top 5 over the whole 3 years", - caption = "Source: NHS England Statistical Work Areas (OGL v3.0)") + labs( + x = "Month of attendance", + y = "% of attendances that met the 4 hour standard", + title = "NHS England A&E 4 Hour Performance", + subtitle = "Bottom 5/Top 5 over the whole 3 years", + caption = "Source: NHS England Statistical Work Areas (OGL v3.0)" + ) ``` ## Benchmarking @@ -204,31 +211,39 @@ ae_attendances %>% group_by(org_code) %>% filter(any(type == 1)) %>% summarise_at(vars(attendances, breaches), sum) %>% - mutate(performance = 1 - breaches/attendances, - overall_performance = 1 - sum(breaches)/sum(attendances), - org_code = fct_reorder(org_code, -performance)) %>% + mutate( + performance = 1 - breaches / attendances, + overall_performance = 1 - sum(breaches) / sum(attendances), + org_code = fct_reorder(org_code, -performance) + ) %>% # arrange(performance) %>% # lets highlight the organsiations that are at the lower and upper quartile # and at the median. First "tile" the data into 4 groups, then we use the # lag function to check to see if the value changes between rows. We will get # NA for the first row, so replace this with FALSE - mutate(highlight = ntile(n = 4), - highlight = replace_na(highlight != lag(highlight), FALSE)) %>% - + mutate( + highlight = ntile(n = 4), + highlight = replace_na(highlight != lag(highlight), FALSE) + ) %>% ggplot(aes(org_code, performance)) + geom_hline(aes(yintercept = overall_performance)) + geom_point(aes(fill = highlight), show.legend = FALSE, pch = 21) + geom_text_repel(aes(label = ifelse(highlight, as.character(org_code), NA)), - na.rm = TRUE) + - scale_fill_manual(values = c("TRUE" = "black", - "FALSE" = NA)) + + na.rm = TRUE + ) + + scale_fill_manual(values = c( + "TRUE" = "black", + "FALSE" = NA + )) + scale_y_continuous(labels = percent) + theme_minimal() + - theme(panel.grid = element_blank(), - axis.text.x = element_blank(), - axis.line = element_line(), - axis.ticks.y = element_line()) + theme( + panel.grid = element_blank(), + axis.text.x = element_blank(), + axis.line = element_line(), + axis.ticks.y = element_line() + ) ``` [//]: <> (URL's / References --------------------------------------------------) diff --git a/vignettes/ons_mortality.Rmd b/vignettes/ons_mortality.Rmd deleted file mode 100644 index ed4e64e..0000000 --- a/vignettes/ons_mortality.Rmd +++ /dev/null @@ -1,530 +0,0 @@ ---- -title: "Building the ONS mortality dataset" -author: '[Zoë Turner](mailto:zoe.turner@nhs.net)' -date: "23/04/2020" -output: rmarkdown::html_vignette -vignette: > - %\VignetteIndexEntry{Building the ONS mortality dataset} - %\VignetteEngine{knitr::rmarkdown} - %\VignetteEncoding{UTF-8} ---- - -```{r setup, include = FALSE} - -knitr::opts_chunk$set(echo=TRUE, warning=FALSE, message=FALSE, eval=FALSE) - -``` - -This vignette details why and how the `ons_mortality` dataset was created. - -The data were pulled together from the weekly xls spreadsheets provided by the Office of National Statistics (ONS) from 2010 to 2019 for training purposes and is a static data set. - -Data is released every Friday and includes provisionally registered deaths for England and Wales for: - -- Total, all deaths -- regions of usual residence -- age bands (persons and for males/females) -- by underlying cause 'All respiratory diseases' (the methodology has changed over the years, see the subsection for more information) - -### Further notes taken from the spreadsheet: - -1 This average is based on the actual number of death registrations recorded for each corresponding week over the previous five years. Moveable public holidays, when register offices are closed, affect the number of registrations made in the published weeks and in the corresponding weeks in previous years. - -2 Counts of deaths by underlying cause exclude deaths at age under 28 days. - -3 Coding of deaths by underlying cause for the latest week is not yet complete. - -4 Does not include deaths where age is either missing or not yet fully coded. For this reason counts of 'Persons', 'Males' and 'Females' may not sum to 'Total Deaths, all ages'. - -5 Does not include deaths of those resident outside England and Wales or those records where the place of residence is either missing or not yet fully coded. For this reason counts for "Deaths by Region of usual residence" may not sum to "Total deaths, all ages". - - -### Later confirmation of deaths - -Aggregate numbers of deaths are later confirmed and released in by [ONS monthly](https://www.ons.gov.uk/peoplepopulationandcommunity/birthsdeathsandmarriages/deaths/datasets/monthlyfiguresondeathsregisteredbyareaofusualresidence). Numbers are released at a lower geographical level to the weekly data. - -## Preparation of data - -In order to prepare this data for analysis the worksheet for weekly figures was extracted and the data was moved to long form and merged together over the available years. This was extracted in April 2020 when full previous years' data was available. - -The dataset contains: - -- __category_1:__ character, containing the names of the groups for counts, e.g. "Total deaths", "all ages". -- __category_2:__ character, subcategory of names of groups where necessary, e.g. details of region: "East", details of age bands "15-44". -- __counts:__ numeric, numbers of deaths in whole numbers and average numbers with decimal points. To retain the integrity of the format this column data is left as character. -- __date:__ date, format is yyyy-mm-dd; all dates are a Friday. -- __week_no:__ integer, each week in a year is numbered sequentially. - -# Source and licence acknowledgement - -This data has been made available through Office of National Statistics under the [Open Government -Licence](http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/). - -The main page for downloads is found on the [ONS People Population and Community pages](https://www.ons.gov.uk/peoplepopulationandcommunity/birthsdeathsandmarriages/deaths/datasets/weeklyprovisionalfiguresondeathsregisteredinenglandandwales). - -## Creating the dataset - -Spreadsheets are in xls format from 2010 to 2019. - -Each week is released with a new file name listing the week number and all weeks for that year are included in the spreadsheet. Counts for weeks ahead are missing and listed as NA. - -When a year has passed it is renamed to the year name and does not change. - - -```{r webscraping} -# 2019 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fweeklyprovisionalfiguresondeathsregisteredinenglandandwales%2f2019/publishedweek522019.xls", - destfile = "2019Mortality.xls", - method = "wininet", - mode = "wb") - -# 2018 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fweeklyprovisionalfiguresondeathsregisteredinenglandandwales%2f2018/publishedweek522018withupdatedrespiratoryrow.xls", - destfile = "2018Mortality.xls", - method = "wininet", - mode = "wb") - -# 2017 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fweeklyprovisionalfiguresondeathsregisteredinenglandandwales%2f2017/publishedweek522017.xls", - destfile = "2017Mortality.xls", - method = "wininet", - mode = "wb") - -# 2016 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fweeklyprovisionalfiguresondeathsregisteredinenglandandwales%2f2016/publishedweek522016.xls", - destfile = "2016Mortality.xls", - method = "wininet", - mode = "wb") - -# 2015 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fweeklyprovisionalfiguresondeathsregisteredinenglandandwales%2f2015/publishedweek2015.xls", - destfile = "2015Mortality.xls", - method = "wininet", - mode = "wb") - -# 2014 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fweeklyprovisionalfiguresondeathsregisteredinenglandandwales%2f2014/publishedweek2014.xls", - destfile = "2014Mortality.xls", - method = "wininet", - mode = "wb") - -# 2013 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fweeklyprovisionalfiguresondeathsregisteredinenglandandwales%2f2013/publishedweek2013.xls", - destfile = "2013Mortality.xls", - method = "wininet", - mode = "wb") - -# 2012 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fweeklyprovisionalfiguresondeathsregisteredinenglandandwales%2f2012/publishedweek2012.xls", - destfile = "2012Mortality.xls", - method = "wininet", - mode = "wb") - -# 2011 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fweeklyprovisionalfiguresondeathsregisteredinenglandandwales%2f2011/publishedweek2011.xls", - destfile = "2011Mortality.xls", - method = "wininet", - mode = "wb") - -# 2010 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fweeklyprovisionalfiguresondeathsregisteredinenglandandwales%2f2010/publishedweek2010.xls", - destfile = "2010Mortality.xls", - method = "wininet", - mode = "wb") - -``` - -## Extracting worksheets to csv - -The data can be found in the worksheet called Weekly figures "date/year". Other worksheets in spreadsheets 2010 to 2019 are: - -- Contents -- Information -- Terms and conditions -- Weekly figures -- Related publications - -The following code finds the tab name and then creates a csv file for each tab/worksheet. - -```{r extracting worksheets} - -library(readxl) -library(dplyr) - -files_list <- list.files(path = "working_files", - pattern = "*.xls", - full.names = TRUE) - - -read_then_csv <- function(sheet, path) { - pathbase <- path %>% - basename() %>% - tools::file_path_sans_ext() - path %>% - read_excel(sheet = sheet) %>% - write_csv(paste0(pathbase, "-", sheet, ".csv")) -} - - -for(j in 1:length(files_list)){ - - path <- paste0(files_list[j]) - - path %>% - excel_sheets() %>% - set_names() %>% - map(read_then_csv, path = path) -} - -``` - - - -## Loading the weekly figure worksheets - -From 2010 to 2015 the tab name was Weekly Figures then it changed capitalisation to Weekly figures. - -```{r load_files} - -files_list_sheets <- list.files(path = "working_files", - pattern = "Weekly", - full.names = TRUE - ) - -for(i in files_list_sheets) { - - x <- read_csv((i), col_types = cols(.default = col_character())) - - assign(i, x) -} - -``` - -## Format data functions - -Two functions were required to format the spreadsheets as there were changes to the layout from 2016. - -Packages used: - -- __janitor:__ a specific package for cleaning data from Excel used here to remove the blank lines and columns, convert Excel serial numbers to dates and to format all column headers by removing spaces in those header names and removing capitalisation. -- __dplyr:__ specifically dplyr for data manipulation (already loaded earlier). -- __tidyr:__ for pivoting data from wide to long. -- __stringi:__ a package to works with strings and was used to find certain characters or words. -- __lubridate:__ a package to work with dates and used here to format dates to the same format. - -### 2010 - 2015 - -```{r format function 2010 to 2015} - -library(janitor) -library(tidyr) -library(stringi) -library(lubridate) - -# Column names that are not related to data points to be removed. This is the same for all years' spreadsheets. -# Note that single quotes are used for the categories as one sentence includes '' in the text (4). - -remove_lookup <- c('week over the previous five years1', - 'Deaths by underlying cause2,3', - 'Footnotes', - '1 This average is based on the actual number of death registrations recorded for each corresponding week over the previous five years. Moveable public holidays, when register offices are closed, affect the number of registrations made in the published weeks and in the corresponding weeks in previous years.', - '2 Counts of deaths by underlying cause exclude deaths at age under 28 days.', - '3 Coding of deaths by underlying cause for the latest week is not yet complete.', - "4Does not include deaths where age is either missing or not yet fully coded. For this reason counts of 'Persons', 'Males' and 'Females' may not sum to 'Total Deaths, all ages'.", - '5 Does not include deaths of those resident outside England and Wales or those records where the place of residence is either missing or not yet fully coded. For this reason counts for "Deaths by Region of usual residence" may not sum to "Total deaths, all ages".', - 'Source: Office for National Statistics', - 'Deaths by age group' -) - -formatFunction <- function(file){ - -ONS <- file %>% - clean_names %>% - remove_empty(c("rows","cols")) %>% - filter(!contents %in% remove_lookup) %>% - - # useful categories are found in the column contents but also include the footnote number - mutate(Category = case_when(is.na(x2) & str_detect(contents, "Region") ~ "Region", - is.na(x2) & str_detect(contents, "Persons") ~ "Persons", - is.na(x2) & str_detect(contents, "Females") ~ "Females", - is.na(x2) & str_detect(contents, "Males") ~ "Males") - ) %>% - select(contents, Category, everything()) %>% - - # to ensure data like Persons, Males and Females - fill(Category) %>% - - # categories with Persons, Males and Females in the original column do not correspond directly to data points (wide form data) so are removed by referring to str_detect to find the word - filter(!str_detect(contents, "Persons"), - !str_detect(contents, "Males"), - !str_detect(contents, "Females")) %>% - - # the two columns for Category and contents are merged to Categories to bring the Category column first. Some categories don't have subcategories and these are preceded by NA_ with this merge - unite("Categories", Category, contents) %>% - filter(Categories != "Region_Deaths by Region of usual residence 5") %>% - - # the NA_ is removed from some of the category names - mutate(Categories = case_when(str_detect(Categories, "NA_") ~ str_replace(Categories, "NA_", ""), - TRUE ~ Categories)) - - # Push date row to column names -onsFormattedJanitor <- row_to_names(ONS, 3) - - # move data from wide to long form using pivot_longer -x <- onsFormattedJanitor %>% - pivot_longer(cols = -`Week ended`, - names_to = "allDates", - values_to = "counts") %>% - - # some spreadsheets import with Excel serial numbers for dates and others as dates, janitor is used to correct this - mutate(realDate = dmy(allDates), - ExcelSerialDate = case_when(stri_length(allDates) == 5 ~ excel_numeric_to_date(as.numeric(allDates), date_system = "modern")), - date = case_when(is.na(realDate) ~ ExcelSerialDate, - TRUE ~ realDate)) %>% - group_by(`Week ended`) %>% - - # the week number is replaced as this was lost with the moving of dates to the column headers - mutate(week_no = row_number()) %>% - ungroup() %>% - - # Category is a staging name as this is followed by a splitting of the column into category_1 and category_2 - rename(Category = `Week ended`) %>% - - # to split the columns there are various characters used as a split point ",", "-", and ":" in the respiratory category the version is denoted by "v" - mutate(category_1 = case_when(str_detect(Category, ",") ~ - substr(Category,1,str_locate(Category, ",") -1), - str_detect(Category, ":") ~ - substr(Category,1,str_locate(Category, ":") -1), - str_detect(Category, "_") ~ - substr(Category,1,str_locate(Category, "_") -1), - str_detect(Category, "respiratory") ~ - "All respiratory diseases (ICD-10 J00-J99) ICD-10"), - category_2 = case_when(str_detect(Category, ",") ~ - substr(Category,str_locate(Category, ", ") +2, str_length(Category)), - str_detect(Category, ":") ~ - substr(Category,str_locate(Category, ": ") +2, str_length(Category)), - str_detect(Category, "_") ~ - substr(Category,str_locate(Category, "_") +1, str_length(Category)), - str_detect(Category, "respiratory") ~ - substr(Category,str_locate(Category, "v"), str_length(Category)) ), - - # the data for Total deaths: average of corresponding week over the previous 5 years is split over two cells in the spreasheet - category_2 = recode(category_2, - "average of corresponding" = "average of same week over 5 years")) %>% - select(category_1, - category_2, - counts, - date, - week_no - ) %>% - - # 2011 requires this code to remove rows where there are no counts and because there are 2 rows relating to respiratory death numbers (see the Respiratory section) the previous methodology has been included in the spreadsheet with : for counts. This code does not affect other years' data/ - filter(!is.na(counts), - counts != ":") %>% - fill(category_1) - -return(x) - -} - -Mortality2010 <- formatFunction(`working_files/Weekly/2010Mortality-Weekly Figures 2010.csv`) - -# 2011 has two lines relating to respiratory, v 2001 only has one data point and the rest of the year is 2010 -Mortality2011 <- formatFunction(`working_files/Weekly/2011Mortality-Weekly Figures 2011.csv`) %>% - mutate(category_2 = case_when(is.na(category_2) & category_1 == "All respiratory diseases (ICD-10 J00-J99) ICD-10" ~ "v 2010", - TRUE ~ category_2)) - -Mortality2012 <- formatFunction(`working_files/Weekly/2012Mortality-Weekly Figures 2012.csv`) -Mortality2013 <- formatFunction(`working_files/Weekly/2013Mortality-Weekly Figures 2013.csv`) -Mortality2014 <- formatFunction(`working_files/Weekly/2014Mortality-Weekly Figures 2014.csv`) -Mortality2015 <- formatFunction(`working_files/Weekly/2015Mortality-Weekly Figures 2015.csv`) - -``` - -#### Format data 2016 - 2019 - -```{r format function 2016 to 2019} - -formatFunction2016 <- function(file){ - - ONS <- file %>% - clean_names %>% - - # An extra column has been added for region codes (not included in the dataset) meaning contents are now found in the janitor generated column name x2 - mutate(x2 = case_when(is.na(x2) ~ contents, - TRUE ~ x2)) %>% - remove_empty(c("rows","cols")) %>% - select(-contents) %>% - filter(!x2 %in% remove_lookup) %>% - - # Region has changed to region - mutate(Category = case_when(is.na(x3) & str_detect(x2, "region") ~ "Region", - is.na(x3) & str_detect(x2, "Persons") ~ "Persons", - is.na(x3) & str_detect(x2, "Females") ~ "Females", - is.na(x3) & str_detect(x2, "Males") ~ "Males", - TRUE ~ NA_character_) - ) %>% - select(x2, Category, everything()) %>% - fill(Category) %>% - filter(!str_detect(x2, 'Persons'), - !str_detect(x2, 'Males'), - !str_detect(x2, 'Females')) %>% - unite("Categories", Category, x2) %>% - filter(Categories != 'Region_Deaths by Region of usual residence 5') %>% - mutate(Categories = case_when(str_detect(Categories, "NA_") ~ str_replace(Categories, "NA_", ""), - TRUE ~ Categories)) - - # Push date row to column names - onsFormattedJanitor <- row_to_names(ONS, 3) - - # move data from wide to long form using pivot_longer - x <- onsFormattedJanitor %>% - pivot_longer(cols = -`Week ended`, - names_to = "allDates", - values_to = "counts") %>% - mutate(realDate = dmy(allDates), - ExcelSerialDate = case_when(stri_length(allDates) == 5 ~ excel_numeric_to_date(as.numeric(allDates), date_system = "modern")), - date = case_when(is.na(realDate) ~ ExcelSerialDate, - TRUE ~ realDate)) %>% - group_by(`Week ended`) %>% - mutate(week_no = row_number()) %>% - ungroup() %>% - rename(Category = `Week ended`) %>% - mutate(category_1 = case_when(str_detect(Category, ",") ~ - substr(Category,1,str_locate(Category, ",") -1), - str_detect(Category, ":") ~ - substr(Category,1,str_locate(Category, ":") -1), - str_detect(Category, "_") ~ - substr(Category,1,str_locate(Category, "_") -1), - str_detect(Category, "respiratory") ~ - "All respiratory diseases (ICD-10 J00-J99) ICD-10"), - category_2 = case_when(str_detect(Category, ",") ~ - substr(Category,str_locate(Category, ", ") +2, str_length(Category)), - str_detect(Category, ":") ~ - substr(Category,str_locate(Category, ": ") +2, str_length(Category)), - str_detect(Category, "_") ~ - substr(Category,str_locate(Category, "_") +1, str_length(Category)), - str_detect(Category, "respiratory") ~ - substr(Category,str_locate(Category, "v"), str_length(Category)) ), - category_2 = recode(category_2, - "average of corresponding" = "average of same week over 5 years")) %>% - select(category_1, - category_2, - counts, - date, - week_no - ) %>% - filter(!is.na(counts)) - - return(x) - -} - - -Mortality2016 <- formatFunction2016(`working_files/Weekly/2016Mortality-Weekly figures 2016.csv`) -Mortality2017 <- formatFunction2016(`working_files/Weekly/2017Mortality-Weekly figures 2017.csv`) -Mortality2018 <- formatFunction2016(`working_files/Weekly/2018Mortality-Weekly figures 2018.csv`) -Mortality2019 <- formatFunction2016(`working_files/Weekly/2019Mortality-Weekly figures 2019.csv`) - -``` - -## Bind together - -```{r bind together} - -ons_mortality <- do.call("rbind", list( - Mortality2010, - Mortality2011, - Mortality2012, - Mortality2013, - Mortality2014, - Mortality2015, - Mortality2016, - Mortality2017, - Mortality2018, - Mortality2019)) - -``` - -## Load the data - -```{r load, warning=FALSE, message=FALSE} - -library(NHSRdatasets) -library(dplyr) - -data("ons_mortality") - -``` - -## Respiratory - -Deaths by underlying cause of respiratory diseases All respiratory diseases (ICD-10 J00-J99) appear as: - -```{r respiratory categories} - -ons_mortality %>% - mutate(year = year(date)) %>% - select(year, category_1, category_2) %>% - group_by(year, category_1, category_2) %>% - filter(category_1 == 'All respiratory diseases (ICD-10 J00-J99) ICD-10') %>% - slice(1) - -``` - -Notes from the spreadsheets in relation to these methodology changes: - -### 2011 - -* Respiratory deaths for 2011 are coded to the new version of ICD-10 while for 2010 they are coded to the previous version. Week 1 2011 has been coded to both versions to give an indication of the impact of the change. - -### 2014 - -* For deaths registered from January 2014, cause of death is coded to the ICD-10 classification using IRIS software. Further information about the implementation of the software is available on the ONS website. - -* All deaths registered in week 2 were dual-coded using both ICD-10 v2010 (NCHS) and ICD-10 v2013 (IRIS). An information note providing the preliminary findings on the impact of the implementation of IRIS software for ICD-10 cause of death coding on mortality statistics in England and Wales is available on the ONS website. - -### 2015 - -* For deaths registered from January 2014, cause of death is coded to the ICD-10 classification using IRIS software. Further information about the [implementation of the software](https://webarchive.nationalarchives.gov.uk/20160106020045/http://www.ons.gov.uk/ons/guide-method/user-guidance/health-and-life-events/Changes-to-cause-of-death-coding-in-England-and-Wales/index.html) is available on the ONS website. - -## Age bands - -Numbers are provided for categories: Persons, Females and Males. - -As detailed in the notes, if the age is missing or not coded at the time of release then the counts of 'Persons', 'Males' and 'Females' may not sum to 'Total Deaths, all ages'. - -Note that these age bands were changed in 2020 releases. - -```{r age bands} - -ons_mortality %>% - select(category_1, category_2) %>% - group_by(category_1, category_2) %>% - filter(category_1 %in% c('Persons','Females','Males')) %>% - slice(1) - -``` - - -## Remove working_files folder - -```{r removefiles} -unlink("working_files", recursive = TRUE) -``` - - -# Citations - -The data used to build the mortality dataset in this package is released under © Crown copyright and is free to use under the terms of the Open Government Licence. -Any subsequent use should include a source accreditation to ONS - Source: Office for National Statistics licensed under the Open Government Licence. diff --git a/vignettes/stranded_model.Rmd b/vignettes/stranded_model.Rmd index 8615e53..c906f4d 100644 --- a/vignettes/stranded_model.Rmd +++ b/vignettes/stranded_model.Rmd @@ -1,7 +1,6 @@ --- title: "Stranded Model Tutorial" author: "Gary Hutson" -date: "`r Sys.Date()`" output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{Stranded Model Tutorial} @@ -23,7 +22,7 @@ The dataset contains: - __stranded.label:__ a character metric to indicate whether the patient is stranded, or not - __age:__ Integer - the age of the patient on admission to hospital - __care.home.referral:__ Integer - flag to indicate referred from care home -- __medicallysafe:__ Integer - flag to indicate whether the patient is medically safe e.g. safe to be discharged but hasn't been +- __medicallysafe:__ Integer - flag to indicate whether the patient is medically safe for example safe to be discharged but hasn't been - __hcop:__ Integer - flag to indicate whether the patient is in a Health Care for Older People area - __mental_health_care:__ Integer - flag to indicate mental health care provision - __period_of_previous_care:__ Integer - flag to indicate previous periods of care @@ -52,27 +51,24 @@ This is good, it shows a relatively even split between the not stranded and stra The next step will be to decide which features need to be engineered for our machine learning model. We will drop the admit_date and recode the frailty index, and perhaps allocate the age into age bands. ```{r feature_engineering} - -stranded_data <- stranded_data %>% - dplyr::mutate(stranded.label=factor(stranded.label)) %>% +stranded_data <- stranded_data %>% + dplyr::mutate(stranded.label = factor(stranded.label)) %>% dplyr::select(everything(), -c(admit_date)) - - ``` -Next, I will select the categorical variables and make these into dummy variables, i.e. a numerical encoding of a categorical variable: +Next, I will select the categorical variables and make these into dummy variables, that is a numerical encoding of a categorical variable: ```{r dummy_encode} cats <- select_if(stranded_data, is.character) -cat_dummy <- varhandle::to.dummy(cats$frailty_index, "frail_ind") -#Converts the frailty index column to dummy encoding and sets a column called "frail_ind" prefix -cat_dummy <- cat_dummy %>% - as.data.frame() %>% - dplyr::select(-frail_ind.No_index_item) #Drop the field of interest +cat_dummy <- varhandle::to.dummy(cats$frailty_index, "frail_ind") +# Converts the frailty index column to dummy encoding and sets a column called "frail_ind" prefix +cat_dummy <- cat_dummy %>% + as.data.frame() %>% + dplyr::select(-frail_ind.No_index_item) # Drop the field of interest # Drop the frailty index from the stranded data frame and bind on our new encoding categorical variables -stranded_data <- stranded_data %>% - dplyr::select(-frailty_index) %>% - bind_cols(cat_dummy) %>% na.omit(.) - +stranded_data <- stranded_data %>% + dplyr::select(-frailty_index) %>% + bind_cols(cat_dummy) %>% + na.omit(.) ``` The data is now ready for splitting into a simple train and validation split, to do the machine learning on the set. @@ -82,10 +78,9 @@ The data is now ready for splitting into a simple train and validation split, to The next step is to create a simple hold out train/test split: ```{r train_test_split} -split <- rsample::initial_split(stranded_data, prop = 3/4) +split <- rsample::initial_split(stranded_data, prop = 3 / 4) train <- rsample::training(split) test <- rsample::testing(split) - ``` @@ -95,10 +90,11 @@ The next step will be to create a stranded classification model, in CARET: ```{r class_model} set.seed(123) -glm_class_mod <- caret::train(factor(stranded.label) ~ ., data = train, - method = "glm") +glm_class_mod <- caret::train(factor(stranded.label) ~ ., + data = train, + method = "glm" +) print(glm_class_mod) - ``` This is a very basic model and could be improved by model choice, hyperparameter selection, different resampling strategies, etc. @@ -110,14 +106,14 @@ Next, we will use the test dataset to see how our model will perform in the wild ```{r predicting} preds <- predict(glm_class_mod, newdata = test) # Predict class -pred_prob <- predict(glm_class_mod, newdata = test, type="prob") #Predict probs +pred_prob <- predict(glm_class_mod, newdata = test, type = "prob") # Predict probs # Join prediction on to actual test data frame and evaluate in confusion matrix predicted <- data.frame(preds, pred_prob) -test <- test %>% - bind_cols(predicted) %>% - dplyr::rename(pred_class=preds) +test <- test %>% + bind_cols(predicted) %>% + dplyr::rename(pred_class = preds) glimpse(test) ``` @@ -127,13 +123,11 @@ glimpse(test) The final step is to evaluate the model: ```{r evaluation} - -caret::confusionMatrix(test$stranded.label, test$pred_class, positive="Stranded") - +caret::confusionMatrix(test$stranded.label, test$pred_class, positive = "Stranded") ``` The model performs relatively well and could be improved by better predictors, a bigger sample and class imbalance techniques. ## Conclusion -This dataset can be used for a number of classification problems and can be the NHS's equivalent to the iris dataset for classification, albeit this only works for binary classification problems. \ No newline at end of file +This dataset can be used for a number of classification problems and can be the NHS's equivalent to the iris dataset for classification, albeit this only works for binary classification problems. diff --git a/vignettes/synthetic_news_data.Rmd b/vignettes/synthetic_news_data.Rmd index d49e0c1..7cf0a15 100644 --- a/vignettes/synthetic_news_data.Rmd +++ b/vignettes/synthetic_news_data.Rmd @@ -1,7 +1,6 @@ --- title: "Synthetic NEWS Data" author: "Dr Muhammad Faisal, Gary Hutson, and Professor Mohammed A Mohammed" -date: "`r Sys.Date()`" output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{Synthetic NEWS Data} @@ -49,11 +48,10 @@ Synthetic data can be generated from new data, utilising the above methodology, ```{r observed_data_generation} library(readr) library(dplyr) -df <- suppressWarnings(read_csv("https://raw.githubusercontent.com/StatsGary/SyntheticNEWSData/main/observed_news_data.csv") %>% +df <- suppressWarnings(read_csv("https://raw.githubusercontent.com/StatsGary/SyntheticNEWSData/main/observed_news_data.csv") %>% dplyr::select(everything(), -X1)) glimpse(df) - ``` This reads in the observed NEWS data from the GitHub repository. Now, we will utilise the `synthpop` package to create a synthetically generated dataset. @@ -63,36 +61,37 @@ This reads in the observed NEWS data from the GitHub repository. Now, we will ut As stated, now we will use the real observed data and generate a synthetic set, utilising the equations and process mapped out in the preceding sections: ```{r synth} -library(synthpop) -syn_df <- syn(df,seed=4321) +library(synthpop) +syn_df <- syn(df, seed = 4321) #### synthetic data synthetic_news_data <- syn_df$syn glimpse(synthetic_news_data) - ``` ```{r visuals} library(ggplot2) -#Create temperature tibbles to compare observed vs synthetically generated labels -obs <- tibble(label="observed_data", value = df$temp) -synth <- tibble(label="synthetic_data",value = synthetic_news_data$temp) +# Create temperature tibbles to compare observed vs synthetically generated labels +obs <- tibble(label = "observed_data", value = df$temp) +synth <- tibble(label = "synthetic_data", value = synthetic_news_data$temp) -#Merge the frames together to get a comparison -merged <- obs %>% +# Merge the frames together to get a comparison +merged <- obs %>% bind_rows(synth) -#Create the plot -plot <- merged %>% +# Create the plot +plot <- merged %>% ggplot(aes(value, fill = label)) + - geom_histogram(alpha = 0.9, position = 'identity') + theme_minimal() + - scale_fill_manual(values=c("#BCBDC1", "#2061AC")) + - labs(title="Observed vs Synthetically NEWS values", - subtitle="Based on NEWS Temperature score", - x="NEWS Temperature Score", y="Score frequency") + + geom_histogram(alpha = 0.9, position = "identity") + + theme_minimal() + + scale_fill_manual(values = c("#BCBDC1", "#2061AC")) + + labs( + title = "Observed vs Synthetically NEWS values", + subtitle = "Based on NEWS Temperature score", + x = "NEWS Temperature Score", y = "Score frequency" + ) + theme(legend.position = "none") print(plot) - ``` diff --git a/working_files/Monthly/Monthly2006Mortality-Figures for 2006.csv b/working_files/Monthly/Monthly2006Mortality-Figures for 2006.csv deleted file mode 100644 index 3c9c68c..0000000 --- a/working_files/Monthly/Monthly2006Mortality-Figures for 2006.csv +++ /dev/null @@ -1,502 +0,0 @@ -"Monthly figures on deaths registered by area of usual residence, 2006",...2,...3,...4,...5,...6,...7,...8,...9,...10,...11,...12,...13,...14,...15,England and Wales -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Area Codes,NA,NA,NA,Jan-06,Feb-06,Mar-06,Apr-06,May-06,Jun-06,Jul-06,Aug-06,Sep-06,Oct-06,Nov-06,Dec-06 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,TOTAL REGISTRATIONS 1,NA,NA,49124,42664,49207,40645,42425,40797,38870,39140,36594,40390,42326,40417 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,ENGLAND AND WALES,NA,NA,49005,42582,49110,40543,42332,40684,38765,39029,36504,40290,42226,40339 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -921,ENGLAND,NA,NA,46008,39896,46096,38019,39770,38134,36282,36590,34206,37857,39657,37811 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -A,NORTH EAST,NA,NA,2570,2194,2517,2221,2381,2136,2030,2078,1929,2218,2268,2328 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00EH,NA,Darlington UA,NA,104,93,125,90,104,89,61,81,83,94,88,92 -00EB,NA,Hartlepool UA,NA,73,81,93,76,80,78,71,89,87,85,94,83 -00EC,NA,Middlesbrough UA,NA,140,129,112,108,121,102,113,108,114,112,118,105 -00EE,NA,Redcar and Cleveland UA,NA,149,120,131,110,128,89,123,137,112,140,117,121 -00EF,NA,Stockton-on-Tees UA,NA,151,133,164,147,162,119,144,144,119,160,145,153 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -20,NA,Durham,NA,531,463,510,460,456,413,404,394,364,433,451,451 -20UB,NA,NA,Chester-le-Street,46,43,50,41,49,51,47,43,35,38,37,46 -20UD,NA,NA,Derwentside,107,91,117,90,102,65,90,67,84,78,85,67 -20UE,NA,NA,Durham,85,63,60,62,64,54,62,78,42,61,66,80 -20UF,NA,NA,Easington,97,90,98,82,79,85,71,64,69,98,97,98 -20UG,NA,NA,Sedgefield,96,81,81,96,70,83,63,88,66,76,89,81 -20UH,NA,NA,Teesdale,32,24,30,19,23,23,16,18,22,17,23,23 -20UJ,NA,NA,Wear Valley,68,71,74,70,69,52,55,36,46,65,54,56 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -35,NA,Northumberland,NA,294,270,308,293,283,269,243,241,219,277,304,282 -35UB,NA,NA,Alnwick,30,25,44,29,22,29,22,29,21,36,34,33 -35UC,NA,NA,Berwick-upon-Tweed,23,23,25,29,26,24,24,17,23,23,21,28 -35UD,NA,NA,Blyth Valley,74,64,66,80,70,73,61,51,53,62,80,79 -35UE,NA,NA,Castle Morpeth,55,38,55,32,43,42,41,36,44,43,39,50 -35UF,NA,NA,Tynedale,53,59,48,51,52,52,51,48,32,60,68,46 -35UG,NA,NA,Wansbeck,59,61,70,72,70,49,44,60,46,53,62,46 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2D,NA,Tyne and Wear (Met County),NA,1128,905,1074,937,1047,977,871,884,831,917,951,1041 -00CH,NA,NA,Gateshead,212,166,179,143,183,153,175,159,159,166,168,189 -00CJ,NA,NA,Newcastle upon Tyne,272,212,286,252,236,242,195,202,176,186,234,246 -00CK,NA,NA,North Tyneside,177,179,197,192,195,204,146,172,140,170,174,203 -00CL,NA,NA,South Tyneside,178,130,152,118,146,147,133,130,130,129,145,161 -00CM,NA,NA,Sunderland,289,218,260,232,287,231,222,221,226,266,230,242 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -B,NORTH WEST,NA,NA,6797,5832,6628,5756,6013,5662,5450,5445,5223,5674,5780,5566 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00EX,NA,Blackburn with Darwen UA,NA,143,89,129,99,99,117,107,91,93,101,103,114 -00EY,NA,Blackpool UA,NA,197,130,166,146,178,158,152,160,131,185,153,165 -00ET,NA,Halton UA,NA,122,98,108,116,103,98,98,88,95,92,84,93 -00EU,NA,Warrington UA,NA,170,170,189,161,165,135,165,151,148,138,162,154 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -13,NA,Cheshire,NA,668,623,700,589,582,527,501,519,481,542,513,514 -13UB,NA,NA,Chester,100,97,129,91,86,110,103,106,75,93,97,102 -13UC,NA,NA,Congleton,90,69,84,72,84,71,49,69,60,75,67,68 -13UD,NA,NA,Crewe and Nantwich,118,117,122,111,103,94,84,93,82,95,82,81 -13UE,NA,NA,Ellesmere Port & Neston,80,90,87,69,68,60,69,49,53,59,54,52 -13UG,NA,NA,Macclesfield,166,141,155,135,141,112,103,101,125,133,122,115 -13UH,NA,NA,Vale Royal,114,109,123,111,100,80,93,101,86,87,91,96 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -16,NA,Cumbria,NA,526,465,483,413,505,423,401,418,433,440,450,427 -16UB,NA,NA,Allerdale,105,104,86,94,93,91,81,85,96,99,99,76 -16UC,NA,NA,Barrow-in-Furness,64,72,75,54,85,52,60,70,69,61,50,67 -16UD,NA,NA,Carlisle,111,105,101,90,94,72,73,86,73,80,103,90 -16UE,NA,NA,Copeland,69,59,73,45,70,59,66,47,58,65,48,59 -16UF,NA,NA,Eden,46,43,46,40,51,43,29,47,33,45,43,34 -16UG,NA,NA,South Lakeland,131,82,102,90,112,106,92,83,104,90,107,101 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2A,NA,Greater Manchester (Met County),NA,2404,2129,2314,1995,2167,2061,1996,1949,1936,2037,2012,1975 -00BL,NA,NA,Bolton,261,222,212,217,216,220,186,187,202,213,195,190 -00BM,NA,NA,Bury,178,147,163,144,150,145,141,159,150,144,151,162 -00BN,NA,NA,Manchester,391,341,350,304,368,319,352,309,321,333,316,295 -00BP,NA,NA,Oldham,202,179,225,197,199,181,170,176,164,178,167,176 -00BQ,NA,NA,Rochdale,172,173,211,162,174,150,152,151,154,165,164,164 -00BR,NA,NA,Salford,239,183,213,200,220,212,218,177,175,205,201,193 -00BS,NA,NA,Stockport,253,211,262,236,238,224,209,217,193,200,227,204 -00BT,NA,NA,Tameside,215,209,186,151,191,197,182,149,196,187,204,187 -00BU,NA,NA,Trafford,203,208,198,153,157,161,141,158,140,164,159,157 -00BW,NA,NA,Wigan,290,256,294,231,254,252,245,266,241,248,228,247 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -30,NA,Lancashire,NA,1155,934,1182,974,1027,935,921,929,866,940,1054,981 -30UD,NA,NA,Burnley,84,85,93,93,76,82,78,84,75,87,71,80 -30UE,NA,NA,Chorley,79,71,75,72,79,58,65,83,71,91,87,69 -30UF,NA,NA,Fylde,101,75,109,85,83,84,79,65,66,70,88,80 -30UG,NA,NA,Hyndburn,86,68,91,75,84,57,71,72,62,65,64,69 -30UH,NA,NA,Lancaster,137,115,149,107,131,129,114,107,130,107,121,130 -30UJ,NA,NA,Pendle,92,79,80,74,69,66,69,49,52,73,79,81 -30UK,NA,NA,Preston,100,103,138,97,110,97,92,111,80,89,119,104 -30UL,NA,NA,Ribble Valley,55,42,48,44,45,48,46,42,50,46,33,50 -30UM,NA,NA,Rossendale,79,41,61,51,53,41,41,56,40,49,72,42 -30UN,NA,NA,South Ribble,92,72,101,93,84,84,91,79,61,70,93,80 -30UP,NA,NA,West Lancashire,105,86,92,92,108,70,86,81,78,88,122,84 -30UQ,NA,NA,Wyre,145,97,145,91,105,119,89,100,101,105,105,112 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2B,NA,Merseyside (Met County),NA,1412,1194,1357,1263,1187,1208,1109,1140,1040,1199,1249,1143 -00BX,NA,NA,Knowsley,141,125,136,121,123,119,103,119,115,129,134,134 -00BY,NA,NA,Liverpool,476,395,435,420,348,377,364,342,328,392,383,353 -00CA,NA,NA,Sefton,305,258,281,290,277,251,235,206,220,247,262,231 -00BZ,NA,NA,St. Helens,179,147,162,139,137,149,145,143,112,139,156,143 -00CB,NA,NA,Wirral,311,269,343,293,302,312,262,330,265,292,314,282 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -D,YORKSHIRE AND THE HUMBER,NA,NA,4789,4081,4636,3986,4193,4010,3792,3905,3660,4068,4235,4046 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00FB,NA,East Riding of Yorkshire UA,NA,336,291,330,266,300,272,267,260,261,282,287,250 -00FA,NA,"Kingston upon Hull, City of UA",NA,270,229,255,211,224,199,195,198,171,192,227,211 -00FC,NA,North East Lincolnshire UA,NA,142,122,170,131,157,126,123,145,116,137,153,137 -00FD,NA,North Lincolnshire UA,NA,149,125,153,118,149,125,127,131,126,153,137,137 -00FF,NA,York UA,NA,174,150,151,147,155,137,131,120,126,129,158,129 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -36,NA,North Yorkshire,NA,584,539,586,469,527,490,475,442,445,519,515,502 -36UB,NA,NA,Craven,58,55,68,54,41,40,43,53,54,51,48,62 -36UC,NA,NA,Hambleton,79,82,75,68,60,67,68,51,59,61,72,60 -36UD,NA,NA,Harrogate,147,123,156,99,155,132,149,112,126,128,130,107 -36UE,NA,NA,Richmondshire,42,40,30,42,33,26,32,31,28,43,42,39 -36UF,NA,NA,Ryedale,54,48,64,45,45,47,38,32,27,43,51,50 -36UG,NA,NA,Scarborough,142,126,130,115,135,122,103,106,105,117,112,118 -36UH,NA,NA,Selby,62,65,63,46,58,56,42,57,46,76,60,66 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2C,NA,South Yorkshire (Met County),NA,1247,998,1175,1033,1069,1018,964,1052,962,1025,1044,1068 -00CC,NA,NA,Barnsley,245,203,210,202,197,181,186,203,167,202,208,201 -00CE,NA,NA,Doncaster,284,230,259,232,281,204,228,243,242,245,247,254 -00CF,NA,NA,Rotherham,244,203,233,216,198,216,184,194,172,197,196,211 -00CG,NA,NA,Sheffield,474,362,473,383,393,417,366,412,381,381,393,402 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2F,NA,West Yorkshire (Met County),NA,1887,1627,1816,1611,1612,1643,1510,1557,1453,1631,1714,1612 -00CX,NA,NA,Bradford,414,383,407,362,372,367,344,348,318,382,401,388 -00CY,NA,NA,Calderdale,168,155,156,156,142,142,132,159,138,172,181,159 -00CZ,NA,NA,Kirklees,364,311,357,305,286,311,277,283,275,304,324,293 -00DA,NA,NA,Leeds,634,527,594,542,562,540,512,522,466,519,537,492 -00DB,NA,NA,Wakefield,307,251,302,246,250,283,245,245,256,254,271,280 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E,EAST MIDLANDS,NA,NA,3977,3559,4036,3460,3444,3379,3313,3280,2947,3409,3593,3411 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00FK,NA,Derby UA,NA,208,198,213,201,194,200,175,161,145,194,179,177 -00FN,NA,Leicester UA,NA,294,230,234,205,198,179,227,195,178,230,222,184 -00FY,NA,Nottingham UA,NA,233,200,225,199,197,202,200,174,170,197,193,218 -00FP,NA,Rutland UA,NA,28,20,24,17,23,27,28,22,20,23,25,29 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -17,NA,Derbyshire,NA,736,626,733,666,654,652,573,602,570,642,650,628 -17UB,NA,NA,Amber Valley,117,80,132,108,111,98,93,92,83,107,104,98 -17UC,NA,NA,Bolsover,77,64,86,77,74,65,71,60,54,51,68,69 -17UD,NA,NA,Chesterfield,96,99,119,97,99,88,70,98,80,103,92,103 -17UF,NA,NA,Derbyshire Dales,75,59,80,72,53,59,46,67,76,62,72,67 -17UG,NA,NA,Erewash,101,83,94,88,101,106,96,86,81,99,92,105 -17UH,NA,NA,High Peak,84,74,73,72,68,77,56,59,64,81,80,61 -17UJ,NA,NA,North East Derbyshire,118,104,89,90,85,90,79,85,78,83,88,77 -17UK,NA,NA,South Derbyshire,68,63,60,62,63,69,62,55,54,56,54,48 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -31,NA,Leicestershire,NA,528,526,536,440,472,451,456,454,396,454,511,443 -31UB,NA,NA,Blaby,64,73,70,65,56,50,66,55,62,57,70,57 -31UC,NA,NA,Charnwood,135,118,143,102,114,109,103,124,89,124,126,103 -31UD,NA,NA,Harborough,57,42,65,43,68,55,52,59,48,56,66,44 -31UE,NA,NA,Hinckley and Bosworth,98,93,90,75,79,90,80,81,66,58,77,80 -31UG,NA,NA,Melton,46,56,50,30,36,35,37,36,29,38,37,32 -31UH,NA,NA,North West Leicestershire,87,92,71,69,73,57,69,61,62,75,80,87 -31UJ,NA,NA,Oadby and Wigston,41,52,47,56,46,55,49,38,40,46,55,40 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -32,NA,Lincolnshire,NA,713,646,739,610,619,599,569,622,564,562,644,647 -32UB,NA,NA,Boston,68,70,76,65,65,55,53,52,52,44,54,53 -32UC,NA,NA,East Lindsey,192,163,203,155,148,156,126,125,116,130,150,139 -32UD,NA,NA,Lincoln,84,80,74,66,74,64,62,88,66,66,63,90 -32UE,NA,NA,North Kesteven,95,80,89,83,66,90,92,79,73,71,100,91 -32UF,NA,NA,South Holland,91,84,77,76,69,76,68,87,82,74,80,71 -32UG,NA,NA,South Kesteven,122,100,119,98,113,103,94,115,105,105,127,116 -32UH,NA,NA,West Lindsey,61,69,101,67,84,55,74,76,70,72,70,87 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -34,NA,Northamptonshire,NA,547,500,598,469,453,468,457,463,378,457,518,447 -34UB,NA,NA,Corby,46,53,50,46,43,50,54,40,39,40,50,24 -34UC,NA,NA,Daventry,65,45,47,66,52,47,52,47,36,49,57,47 -34UD,NA,NA,East Northamptonshire,76,82,79,53,62,46,56,50,46,63,66,60 -34UE,NA,NA,Kettering,70,74,93,64,62,66,56,69,51,72,63,59 -34UF,NA,NA,Northampton,154,130,188,132,138,145,140,146,117,134,171,141 -34UG,NA,NA,South Northamptonshire,64,59,81,63,50,52,48,63,42,46,54,51 -34UH,NA,NA,Wellingborough,72,57,60,45,46,62,51,48,47,53,57,65 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -37,NA,Nottinghamshire,NA,690,613,734,653,634,601,628,587,526,650,651,638 -37UB,NA,NA,Ashfield,112,91,104,102,103,76,87,85,85,100,109,112 -37UC,NA,NA,Bassetlaw,110,103,113,101,104,101,90,79,68,103,100,94 -37UD,NA,NA,Broxtowe,100,87,101,107,82,84,98,78,65,76,79,82 -37UE,NA,NA,Gedling,95,80,109,88,93,90,89,88,95,98,90,94 -37UF,NA,NA,Mansfield,96,92,96,92,83,80,93,73,77,90,88,95 -37UG,NA,NA,Newark and Sherwood,101,84,117,92,96,98,96,105,75,101,95,93 -37UJ,NA,NA,Rushcliffe,76,76,94,71,73,72,75,79,61,82,90,68 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -F,NA,WEST MIDLANDS,NA,5166,4358,5163,4193,4492,4197,4059,4008,3832,4171,4363,4118 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00GA,NA,"Herefordshire, County of UA",NA,178,146,172,155,160,145,145,144,149,149,167,153 -00GL,NA,Stoke-on-Trent UA,NA,263,189,285,196,240,203,169,172,193,218,217,195 -00GF,NA,Telford and Wrekin UA,NA,114,108,120,115,108,102,99,99,89,134,107,97 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -39,NA,Shropshire,NA,310,249,273,243,219,254,205,226,214,232,263,246 -39UB,NA,NA,Bridgnorth,45,50,40,44,36,43,37,45,32,48,45,54 -39UC,NA,NA,North Shropshire,61,57,71,49,55,42,43,40,53,67,52,48 -39UD,NA,NA,Oswestry,48,25,40,31,43,38,28,29,25,27,45,22 -39UE,NA,NA,Shrewsbury and Atcham,99,79,81,84,56,83,70,72,69,58,72,79 -39UF,NA,NA,South Shropshire,57,38,41,35,29,48,27,40,35,32,49,43 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -41,NA,Staffordshire,NA,817,724,761,664,739,608,647,636,574,653,656,625 -41UB,NA,NA,Cannock Chase,87,80,68,86,81,76,75,65,57,69,74,85 -41UC,NA,NA,East Staffordshire,80,95,97,101,98,79,84,82,83,101,88,76 -41UD,NA,NA,Lichfield,106,79,83,79,93,64,75,78,64,60,79,79 -41UE,NA,NA,Newcastle-under-Lyme,135,106,98,81,119,94,95,102,98,107,92,82 -41UF,NA,NA,South Staffordshire,108,103,115,96,106,83,91,105,75,82,97,75 -41UG,NA,NA,Stafford,121,114,126,102,118,98,92,97,89,92,102,102 -41UH,NA,NA,Staffordshire Moorlands,116,101,109,81,74,78,78,69,70,90,68,89 -41UK,NA,NA,Tamworth,64,46,65,38,50,36,57,38,38,52,56,37 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -44,NA,Warwickshire,NA,542,411,551,424,416,413,400,388,372,371,411,377 -44UB,NA,NA,North Warwickshire,68,48,63,56,59,46,53,47,40,48,40,45 -44UC,NA,NA,Nuneaton and Bedworth,142,99,137,113,114,105,99,95,76,79,107,85 -44UD,NA,NA,Rugby,89,78,104,64,66,79,75,66,62,66,64,58 -44UE,NA,NA,Stratford-on-Avon,122,94,135,92,96,95,81,104,110,84,105,107 -44UF,NA,NA,Warwick,121,92,112,99,81,88,92,76,84,94,95,82 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2E,NA,West Midlands (Met County),NA,2413,2067,2525,1967,2140,2042,1968,1961,1851,1966,2103,2008 -00CN,NA,NA,Birmingham,841,754,896,689,751,705,750,665,650,710,746,708 -00CQ,NA,NA,Coventry,261,219,291,220,263,239,244,227,203,210,261,240 -00CR,NA,NA,Dudley,308,255,313,227,250,251,223,234,232,217,245,264 -00CS,NA,NA,Sandwell,323,268,338,223,277,244,226,260,250,264,272,255 -00CT,NA,NA,Solihull,193,147,174,144,153,177,140,153,123,152,140,129 -00CU,NA,NA,Walsall,236,206,256,226,226,228,202,225,191,206,227,205 -00CW,NA,NA,Wolverhampton,251,218,257,238,220,198,183,197,202,207,212,207 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -47,NA,Worcestershire,NA,529,464,476,429,470,430,426,382,390,448,439,417 -47UB,NA,NA,Bromsgrove,92,81,72,92,95,67,68,64,62,86,72,70 -47UC,NA,NA,Malvern Hills,89,70,84,77,78,69,77,58,63,76,59,74 -47UD,NA,NA,Redditch,71,57,58,49,58,56,52,41,60,49,55,53 -47UE,NA,NA,Worcester,71,78,67,61,63,66,61,44,66,68,68,58 -47UF,NA,NA,Wychavon,114,91,122,79,101,91,81,87,75,91,98,81 -47UG,NA,NA,Wyre Forest,92,87,73,71,75,81,87,88,64,78,87,81 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -G,NA,EAST,NA,5083,4494,5130,4212,4409,4174,3933,4004,3724,4075,4379,4229 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00KA,NA,Luton UA,NA,119,113,146,122,126,104,106,101,112,136,124,132 -00JA,NA,Peterborough UA,NA,139,128,123,116,101,145,108,103,89,125,132,118 -00KF,NA,Southend-on-Sea UA,NA,180,184,175,168,187,170,132,160,131,132,183,143 -00KG,NA,Thurrock UA,NA,113,75,116,93,95,95,89,89,81,89,100,103 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -09,NA,Bedfordshire,NA,315,265,326,279,288,238,246,235,230,249,263,280 -09UC,NA,NA,Mid Bedfordshire,92,79,107,81,81,80,73,77,65,63,72,84 -09UD,NA,NA,Bedford,124,113,127,115,119,93,94,90,94,109,123,125 -09UE,NA,NA,South Bedfordshire,99,73,92,83,88,65,79,68,71,77,68,71 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -12,NA,Cambridgeshire,NA,495,453,482,386,396,409,353,362,358,379,419,410 -12UB,NA,NA,Cambridge,95,83,87,86,63,58,75,64,65,67,87,73 -12UC,NA,NA,East Cambridgeshire,53,59,59,53,51,57,47,48,50,47,55,49 -12UD,NA,NA,Fenland,99,94,111,83,77,83,80,92,80,78,72,93 -12UE,NA,NA,Huntingdonshire,137,117,133,99,115,111,81,89,87,99,113,111 -12UG,NA,NA,South Cambridgeshire,111,100,92,65,90,100,70,69,76,88,92,84 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -22,NA,Essex,NA,1268,1096,1247,1037,1097,1030,991,1056,903,1002,1061,1043 -22UB,NA,NA,Basildon,142,122,159,113,138,125,114,124,125,111,126,127 -22UC,NA,NA,Braintree,107,108,124,114,119,99,89,115,75,95,104,106 -22UD,NA,NA,Brentwood,70,55,74,48,58,61,56,51,48,50,54,49 -22UE,NA,NA,Castle Point,91,71,80,76,62,64,87,67,64,78,74,70 -22UF,NA,NA,Chelmsford,135,98,110,99,98,84,85,89,87,113,91,94 -22UG,NA,NA,Colchester,164,132,129,113,116,111,112,109,101,92,117,117 -22UH,NA,NA,Epping Forest,129,115,127,105,113,105,100,87,61,94,95,101 -22UJ,NA,NA,Harlow,47,47,56,45,58,55,51,51,45,47,48,57 -22UK,NA,NA,Maldon,57,52,62,41,49,38,34,58,46,48,62,55 -22UL,NA,NA,Rochford,77,52,73,59,63,71,53,71,47,60,50,53 -22UN,NA,NA,Tendring,185,183,197,177,177,160,161,183,161,164,180,159 -22UQ,NA,NA,Uttlesford,64,61,56,47,46,57,49,51,43,50,60,55 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -26,NA,Hertfordshire,NA,898,807,895,711,789,725,727,713,647,707,738,693 -26UB,NA,NA,Broxbourne,66,68,70,65,51,54,39,48,51,52,67,57 -26UC,NA,NA,Dacorum,117,110,111,91,102,98,96,80,79,103,92,99 -26UD,NA,NA,East Hertfordshire,104,94,100,67,78,77,80,86,72,69,89,73 -26UE,NA,NA,Hertsmere,93,83,84,67,77,79,66,73,65,71,79,62 -26UF,NA,NA,North Hertfordshire,126,85,113,96,118,97,111,96,77,91,99,87 -26UG,NA,NA,St Albans,108,99,106,84,93,70,93,77,74,86,88,79 -26UH,NA,NA,Stevenage,61,59,55,53,56,58,60,53,47,49,46,47 -26UJ,NA,NA,Three Rivers,77,60,88,62,69,58,65,52,59,54,48,62 -26UK,NA,NA,Watford,56,61,65,60,49,48,53,59,58,56,59,52 -26UL,NA,NA,Welwyn Hatfield,90,88,103,66,96,86,64,89,65,76,71,75 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -33,NA,Norfolk,NA,897,804,920,713,782,722,654,661,678,697,765,747 -33UB,NA,NA,Breckland,137,92,159,112,125,108,97,108,119,124,123,103 -33UC,NA,NA,Broadland,122,136,112,101,101,117,108,95,120,102,103,109 -33UD,NA,NA,Great Yarmouth,119,115,115,97,103,74,69,79,87,90,89,96 -33UE,NA,NA,King's Lynn and West Norfolk,167,134,163,130,133,116,126,120,122,123,150,137 -33UF,NA,NA,North Norfolk,131,126,131,103,117,102,81,97,88,98,114,102 -33UG,NA,NA,Norwich,110,108,126,85,101,114,79,74,69,88,99,108 -33UH,NA,NA,South Norfolk,111,93,114,85,102,91,94,88,73,72,87,92 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -42,NA,Suffolk,NA,659,569,700,587,548,536,527,524,495,559,594,560 -42UB,NA,NA,Babergh,78,80,79,78,62,61,72,58,65,70,86,70 -42UC,NA,NA,Forest Heath,39,27,49,37,26,37,41,39,28,31,33,37 -42UD,NA,NA,Ipswich,109,84,117,90,78,108,94,95,80,91,93,94 -42UE,NA,NA,Mid Suffolk,64,78,80,64,72,61,60,64,55,75,78,66 -42UF,NA,NA,St Edmundsbury,108,62,108,77,75,67,74,59,87,72,70,76 -42UG,NA,NA,Suffolk Coastal,130,94,129,139,103,107,93,113,91,114,125,106 -42UH,NA,NA,Waveney,131,144,138,102,132,95,93,96,89,106,109,111 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -H,NA,LONDON,NA,4945,4437,5082,3984,4358,4231,4029,4094,3709,4059,4276,4000 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -1B,NA,Inner London,NA,1610,1494,1664,1325,1451,1427,1346,1319,1219,1394,1408,1274 -00AG,NA,NA,Camden,128,99,139,89,108,112,108,104,101,84,110,83 -00AA,NA,NA,City of London,2,2,2,4,3,3,2,6,0,2,2,4 -00AM,NA,NA,Hackney,114,108,124,108,112,107,104,95,89,115,103,69 -00AN,NA,NA,Hammersmith and Fulham,86,70,88,52,59,77,77,66,62,85,66,85 -00AP,NA,NA,Haringey,128,108,101,98,119,95,83,94,95,112,109,87 -00AU,NA,NA,Islington,108,89,127,102,91,96,99,79,87,91,100,95 -00AW,NA,NA,Kensington and Chelsea,69,81,77,59,82,76,67,57,77,57,51,57 -00AY,NA,NA,Lambeth,165,139,169,126,134,163,127,124,134,115,140,122 -00AZ,NA,NA,Lewisham,174,155,161,140,143,140,134,144,108,132,136,129 -00BB,NA,NA,Newham,128,123,133,116,137,133,116,107,92,134,136,119 -00BE,NA,NA,Southwark,135,145,142,117,121,124,113,110,100,127,130,112 -00BG,NA,NA,Tower Hamlets,118,122,113,108,101,76,106,106,83,93,89,83 -00BJ,NA,NA,Wandsworth,159,167,168,124,149,139,115,139,124,143,142,145 -00BK,NA,NA,Westminster,96,86,120,82,92,86,95,88,67,104,94,84 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -1C,NA,Outer London,NA,3335,2943,3418,2659,2907,2804,2683,2775,2490,2665,2868,2726 -00AB,NA,NA,Barking and Dagenham,142,111,154,111,135,124,113,112,102,121,121,128 -00AC,NA,NA,Barnet,240,235,229,179,192,202,214,206,170,208,203,183 -00AD,NA,NA,Bexley,179,178,202,156,158,149,133,152,147,147,162,141 -00AE,NA,NA,Brent,134,128,132,124,149,116,123,107,101,126,146,116 -00AF,NA,NA,Bromley,240,207,244,215,225,206,181,203,198,234,223,222 -00AH,NA,NA,Croydon,257,213,268,181,219,226,213,194,207,195,217,192 -00AJ,NA,NA,Ealing,201,144,188,131,154,179,159,160,119,160,149,148 -00AK,NA,NA,Enfield,196,201,223,184,180,162,164,170,165,157,183,152 -00AL,NA,NA,Greenwich,155,123,164,164,173,143,139,151,125,144,151,156 -00AQ,NA,NA,Harrow,140,139,159,108,129,141,119,135,113,132,122,128 -00AR,NA,NA,Havering,220,194,215,179,189,189,161,173,177,163,169,169 -00AS,NA,NA,Hillingdon,199,137,187,145,152,149,145,175,139,154,164,170 -00AT,NA,NA,Hounslow,152,151,172,122,107,126,115,120,106,103,127,98 -00AX,NA,NA,Kingston upon Thames,127,90,123,81,83,98,82,96,85,75,85,100 -00BA,NA,NA,Merton,124,126,128,102,104,105,122,106,93,89,94,99 -00BC,NA,NA,Redbridge,167,176,202,122,157,156,152,173,125,130,179,136 -00BD,NA,NA,Richmond upon Thames,139,106,124,105,122,95,100,105,99,105,114,109 -00BF,NA,NA,Sutton,164,144,148,126,117,107,108,111,99,93,130,131 -00BH,NA,NA,Waltham Forest,159,140,156,124,162,131,140,126,120,129,129,148 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -J,NA,SOUTH EAST,NA,7624,6560,7709,6020,6244,6083,5798,5702,5421,6042,6345,5948 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00MA,NA,Bracknell Forest UA,NA,70,43,71,60,55,62,62,48,56,51,57,62 -00ML,NA,Brighton and Hove UA,NA,246,218,240,204,207,174,190,179,166,191,202,181 -00MW,NA,Isle of Wight UA,NA,163,148,163,149,149,157,113,135,119,130,124,128 -00LC,NA,Medway UA,NA,229,186,227,164,161,180,151,154,178,178,188,167 -00MG,NA,Milton Keynes UA,NA,116,110,139,123,107,112,111,116,104,111,125,128 -00MR,NA,Portsmouth UA,NA,185,158,179,128,150,167,146,131,129,127,138,112 -00MC,NA,Reading UA,NA,109,103,97,90,87,74,88,82,63,99,78,73 -00MD,NA,Slough UA,NA,67,60,71,78,73,69,59,48,40,66,79,68 -00MS,NA,Southampton UA,NA,181,179,199,149,153,151,167,141,135,154,137,146 -00MB,NA,West Berkshire UA,NA,119,102,100,80,97,105,85,80,75,70,93,94 -00ME,NA,Windsor and Maidenhead UA,NA,107,102,126,88,81,90,116,79,101,88,121,81 -00MF,NA,Wokingham UA,NA,91,85,104,83,77,88,72,91,64,98,84,83 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -11,NA,Buckinghamshire,NA,366,350,423,288,315,340,297,315,255,294,331,296 -11UB,NA,NA,Aylesbury Vale,125,115,139,98,102,112,87,116,98,97,107,106 -11UC,NA,NA,Chiltern,93,72,95,63,65,71,77,60,57,66,65,49 -11UE,NA,NA,South Bucks,47,55,60,43,52,49,48,47,39,42,55,47 -11UF,NA,NA,Wycombe,101,108,129,84,96,108,85,92,61,89,104,94 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -21,NA,East Sussex,NA,660,562,707,490,520,497,467,467,458,514,556,513 -21UC,NA,NA,Eastbourne,126,114,129,104,108,101,93,79,98,111,108,110 -21UD,NA,NA,Hastings,127,110,108,73,77,92,71,77,75,88,102,97 -21UF,NA,NA,Lewes,102,98,107,78,82,85,84,78,66,90,89,88 -21UG,NA,NA,Rother,145,100,167,99,118,99,101,123,98,103,116,108 -21UH,NA,NA,Wealden,160,140,196,136,135,120,118,110,121,122,141,110 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -24,NA,Hampshire,NA,1147,952,1124,896,889,911,884,851,817,918,959,879 -24UB,NA,NA,Basingstoke and Deane,120,89,138,86,95,81,89,81,78,69,86,89 -24UC,NA,NA,East Hampshire,105,93,94,79,72,103,93,88,81,105,91,82 -24UD,NA,NA,Eastleigh,93,75,100,76,55,85,67,86,85,88,86,88 -24UE,NA,NA,Fareham,109,85,78,94,84,75,74,90,63,93,83,72 -24UF,NA,NA,Gosport,78,68,88,74,69,58,58,46,67,52,61,50 -24UG,NA,NA,Hart,63,41,50,41,55,46,36,33,32,38,41,39 -24UH,NA,NA,Havant,127,97,120,88,100,95,99,85,91,111,104,86 -24UJ,NA,NA,New Forest,198,173,199,141,179,169,143,137,122,150,181,156 -24UL,NA,NA,Rushmoor,61,61,75,48,50,53,64,52,46,41,48,44 -24UN,NA,NA,Test Valley,104,72,83,83,60,69,76,75,85,88,89,80 -24UP,NA,NA,Winchester,89,98,99,86,70,77,85,78,67,83,89,93 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -29,NA,Kent,NA,1393,1154,1401,1141,1110,1064,983,1011,968,1141,1117,1039 -29UB,NA,NA,Ashford,91,77,110,96,84,68,75,62,62,74,69,68 -29UC,NA,NA,Canterbury,162,141,150,136,122,118,107,129,120,131,129,122 -29UD,NA,NA,Dartford,62,65,84,59,50,65,57,44,53,55,72,66 -29UE,NA,NA,Dover,103,90,114,114,112,89,97,104,77,93,85,96 -29UG,NA,NA,Gravesham,86,64,90,64,67,60,60,68,62,76,78,58 -29UH,NA,NA,Maidstone,145,114,148,107,109,112,85,94,88,102,123,92 -29UK,NA,NA,Sevenoaks,105,73,97,81,99,66,75,61,72,90,69,75 -29UL,NA,NA,Shepway,142,103,114,104,92,84,90,77,76,93,113,87 -29UM,NA,NA,Swale,119,116,117,86,100,107,93,99,81,101,92,114 -29UN,NA,NA,Thanet,185,168,187,138,139,144,117,145,128,155,142,105 -29UP,NA,NA,Tonbridge and Malling,94,56,95,71,69,75,61,74,68,75,78,74 -29UQ,NA,NA,Tunbridge Wells,99,87,95,85,67,76,66,54,81,96,67,82 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -38,NA,Oxfordshire,NA,476,430,523,401,451,379,406,422,392,415,385,434 -38UB,NA,NA,Cherwell,92,74,110,91,92,62,82,99,81,76,82,89 -38UC,NA,NA,Oxford,95,93,101,73,84,72,93,92,71,93,82,84 -38UD,NA,NA,South Oxfordshire,112,75,111,95,102,86,90,86,99,88,86,85 -38UE,NA,NA,Vale of White Horse,95,100,107,87,85,75,65,78,74,92,69,91 -38UF,NA,NA,West Oxfordshire,82,88,94,55,88,84,76,67,67,66,66,85 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -43,NA,Surrey,NA,959,861,943,737,839,779,718,700,703,707,765,748 -43UB,NA,NA,Elmbridge,100,111,89,74,94,72,76,84,76,88,85,81 -43UC,NA,NA,Epsom and Ewell,59,68,74,44,47,55,59,38,48,55,39,49 -43UD,NA,NA,Guildford,89,104,103,80,84,83,74,80,71,84,82,78 -43UE,NA,NA,Mole Valley,83,72,70,73,72,64,47,58,58,50,73,61 -43UF,NA,NA,Reigate and Banstead,142,111,111,95,131,109,100,103,85,71,100,108 -43UG,NA,NA,Runnymede,66,59,75,57,70,62,44,53,58,51,60,57 -43UH,NA,NA,Spelthorne,89,57,86,63,74,62,72,70,45,59,62,61 -43UJ,NA,NA,Surrey Heath,65,54,57,49,47,48,44,42,52,48,39,51 -43UK,NA,NA,Tandridge,80,69,60,56,68,70,53,38,56,59,64,51 -43UL,NA,NA,Waverley,109,88,128,90,83,103,92,88,97,82,94,95 -43UM,NA,NA,Woking,77,68,90,56,69,51,57,46,57,60,67,56 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -45,NA,West Sussex,NA,940,757,872,671,723,684,683,652,598,690,806,716 -45UB,NA,NA,Adur,80,63,66,63,58,54,56,55,58,55,67,56 -45UC,NA,NA,Arun,234,176,240,174,186,172,177,154,152,167,178,137 -45UD,NA,NA,Chichester,140,124,136,83,116,105,106,113,96,98,120,118 -45UE,NA,NA,Crawley,68,63,76,60,65,69,66,60,42,63,80,70 -45UF,NA,NA,Horsham,138,91,100,86,90,86,88,87,77,96,112,97 -45UG,NA,NA,Mid Sussex,113,125,125,84,94,82,92,79,81,97,113,118 -45UH,NA,NA,Worthing,167,115,129,121,114,116,98,104,92,114,136,120 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -K,NA,SOUTH WEST,NA,5057,4381,5195,4187,4236,4262,3878,4074,3761,4141,4418,4165 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00HA,NA,Bath and North East Somerset UA,NA,177,116,158,123,144,117,108,135,124,117,119,127 -00HN,NA,Bournemouth UA,NA,197,179,208,156,138,156,126,147,140,159,166,157 -00HB,NA,"Bristol, City of UA",NA,344,284,358,256,316,276,287,304,243,280,286,271 -00HC,NA,North Somerset UA,NA,187,180,255,175,174,168,159,189,167,163,172,143 -00HG,NA,Plymouth UA,NA,214,196,258,180,206,174,186,164,205,189,195,180 -00HP,NA,Poole UA,NA,163,130,167,133,124,124,113,107,99,111,131,143 -00HD,NA,South Gloucestershire UA,NA,176,161,185,163,172,168,166,164,125,148,180,131 -00HX,NA,Swindon UA,NA,132,134,140,146,114,134,116,135,118,132,142,136 -00HH,NA,Torbay UA,NA,149,133,204,130,139,134,105,116,125,128,179,129 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -15,NA,Cornwall and Isles of Scilly,NA,546,490,578,455,439,502,461,437,438,449,457,425 -15UB,NA,NA,Caradon,82,89,81,77,72,76,81,67,73,65,71,75 -15UC,NA,NA,Carrick,101,83,107,80,82,88,71,68,86,87,84,77 -15UD,NA,NA,Kerrier,88,92,113,71,74,76,86,89,73,76,76,70 -15UE,NA,NA,North Cornwall,95,71,90,71,74,84,81,78,57,81,65,69 -15UF,NA,NA,Penwith,82,64,69,62,54,74,61,56,73,50,74,52 -15UG,NA,NA,Restormel,96,90,116,90,82,100,79,78,76,89,85,80 -15UH,NA,NA,Isles of Scilly,2,1,2,4,1,4,2,1,0,1,2,2 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -18,NA,Devon,NA,803,681,768,669,619,658,587,655,597,663,703,670 -18UB,NA,NA,East Devon,186,158,158,160,132,150,132,128,153,163,160,162 -18UC,NA,NA,Exeter,104,82,94,79,94,77,87,70,63,80,82,71 -18UD,NA,NA,Mid Devon,64,65,71,64,40,53,51,70,56,56,63,50 -18UE,NA,NA,North Devon,100,95,103,87,57,97,85,91,66,82,97,96 -18UG,NA,NA,South Hams,83,80,84,69,83,64,62,75,72,75,77,73 -18UH,NA,NA,Teignbridge,149,102,140,126,96,120,93,115,109,104,121,115 -18UK,NA,NA,Torridge,67,55,62,43,62,56,39,59,50,53,56,59 -18UL,NA,NA,West Devon,50,44,56,41,55,41,38,47,28,50,47,44 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -19,NA,Dorset,NA,465,385,444,371,381,409,358,360,316,374,398,398 -19UC,NA,NA,Christchurch,69,33,61,57,61,51,50,55,39,50,56,43 -19UD,NA,NA,East Dorset,104,87,96,68,82,86,66,76,67,80,77,78 -19UE,NA,NA,North Dorset,58,71,63,53,46,56,54,41,43,39,60,52 -19UG,NA,NA,Purbeck,51,40,50,40,47,44,33,41,30,40,41,39 -19UH,NA,NA,West Dorset,108,106,106,87,90,111,93,92,87,109,99,127 -19UJ,NA,NA,Weymouth and Portland,75,48,68,66,55,61,62,55,50,56,65,59 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -23,NA,Gloucestershire,NA,564,484,545,454,481,462,433,465,410,447,508,457 -23UB,NA,NA,Cheltenham,86,94,111,92,118,90,87,91,71,99,108,82 -23UC,NA,NA,Cotswold,74,72,73,68,63,76,63,65,66,66,67,58 -23UD,NA,NA,Forest of Dean,95,66,85,62,67,51,60,83,56,61,82,83 -23UE,NA,NA,Gloucester,106,74,99,80,74,81,67,75,85,84,65,79 -23UF,NA,NA,Stroud,122,104,110,97,88,97,91,91,83,80,115,97 -23UG,NA,NA,Tewkesbury,81,74,67,55,71,67,65,60,49,57,71,58 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -40,NA,Somerset,NA,526,485,543,437,440,430,400,406,369,446,428,459 -40UB,NA,NA,Mendip,98,95,116,73,70,85,76,92,58,73,86,87 -40UC,NA,NA,Sedgemoor,107,113,116,97,88,94,80,89,77,105,86,92 -40UD,NA,NA,South Somerset,167,141,149,142,144,134,106,112,131,151,133,143 -40UE,NA,NA,Taunton Deane,105,99,120,90,100,77,103,77,74,79,83,93 -40UF,NA,NA,West Somerset,49,37,42,35,38,40,35,36,29,38,40,44 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -46,NA,Wiltshire,NA,414,343,384,339,349,350,273,290,285,335,354,339 -46UB,NA,NA,Kennet,75,57,70,51,55,57,48,54,45,55,57,57 -46UC,NA,NA,North Wiltshire,106,107,102,102,99,111,72,91,76,80,92,95 -46UD,NA,NA,Salisbury,108,92,110,93,93,99,75,66,86,97,87,110 -46UF,NA,NA,West Wiltshire,125,87,102,93,102,83,78,79,78,103,118,77 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -924,WALES,NA,NA,2997,2686,3014,2524,2562,2550,2483,2439,2298,2433,2569,2528 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00NA,NA,Isle of Anglesey / Ynys Mon,NA,56,68,81,78,49,68,52,56,52,78,51,63 -00NC,NA,Gwynedd / Gwynedd,NA,125,97,127,115,104,100,102,99,85,105,119,93 -00NE,NA,Conwy / Conwy,NA,174,111,171,114,118,127,121,120,122,114,118,108 -00NG,NA,Denbighshire / Sir Ddinbych,NA,109,93,119,90,98,96,100,88,89,90,97,108 -00NJ,NA,Flintshire / Sir y Fflint,NA,133,110,126,123,112,124,114,99,99,102,127,116 -00NL,NA,Wrexham / Wrecsam,NA,121,125,124,119,99,105,100,114,97,94,112,113 -00NN,NA,Powys / Powys,NA,143,127,135,120,121,113,112,128,90,114,143,110 -00NQ,NA,Ceredigion / Ceredigion,NA,61,71,82,54,61,54,42,55,59,49,55,64 -00NS,NA,Pembrokeshire / Sir Benfro,NA,138,96,125,109,113,117,109,110,96,91,118,103 -00NU,NA,Carmarthenshire / Sir Gaerfyrddin,NA,228,193,196,194,162,179,209,162,150,154,165,198 -00NX,NA,Swansea / Abertawe,NA,225,233,245,193,229,197,201,196,181,191,199,214 -00NZ,NA,Neath Port Talbot / Castell-nedd Port Talbot,NA,142,143,142,133,155,133,115,114,127,115,137,134 -00PB,NA,Bridgend / Pen-y-bont ar Ogwr,NA,135,117,171,121,114,119,113,103,98,126,119,118 -00PD,NA,The Vale of Glamorgan / Bro Morgannwg,NA,113,107,125,87,114,117,105,113,97,90,75,100 -00PT,NA,Cardiff / Caerdydd,NA,261,245,226,221,207,215,248,203,204,181,228,224 -00PF,NA,"Rhondda, Cynon, Taff / Rhondda, Cynon, Taf",NA,246,206,220,187,180,222,168,198,174,221,210,205 -00PH,NA,Merthyr Tydfil / Merthyr Tudful,NA,49,59,54,41,41,43,49,44,55,41,48,42 -00PK,NA,Caerphilly / Caerffili,NA,166,142,155,133,152,127,112,130,122,137,130,129 -00PL,NA,Blaenau Gwent / Blaenau Gwent,NA,84,65,70,61,67,58,56,79,56,62,70,69 -00PM,NA,Torfaen / Tor-faen,NA,76,89,81,73,68,65,80,66,74,77,68,76 -00PP,NA,Monmouthshire / Sir Fynwy,NA,88,74,94,59,88,65,75,62,61,85,73,58 -00PR,NA,Newport / Casnewydd,NA,124,115,145,99,110,106,100,100,110,116,107,83 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,Non-residents of E&W,NA,119,82,97,102,93,113,105,111,90,100,100,78 -Footnotes:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -1,This may include records where the place of usual residence is missing. All sub divisions of Total Registrations exclude these.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA diff --git a/working_files/Monthly/Monthly2006Mortality-Notes.csv b/working_files/Monthly/Monthly2006Mortality-Notes.csv deleted file mode 100644 index e69de29..0000000 diff --git a/working_files/Monthly/Monthly2006Mortality.xls b/working_files/Monthly/Monthly2006Mortality.xls deleted file mode 100644 index c008368..0000000 Binary files a/working_files/Monthly/Monthly2006Mortality.xls and /dev/null differ diff --git a/working_files/Monthly/Monthly2007Mortality-Figures for 2007.csv b/working_files/Monthly/Monthly2007Mortality-Figures for 2007.csv deleted file mode 100644 index 40862ce..0000000 --- a/working_files/Monthly/Monthly2007Mortality-Figures for 2007.csv +++ /dev/null @@ -1,503 +0,0 @@ -"Monthly figures on deaths registered by area of usual residence, 2007",...2,...3,...4,...5,...6,...7,...8,...9,...10,...11,...12,...13,...14,...15,England and Wales -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Area Codes 1,NA,NA,NA,Jan-07,Feb-07,Mar-07,Apr-07,May-07,Jun-07,Jul-07,Aug-07,Sep-07,Oct-07,Nov-07,Dec-07 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,TOTAL REGISTRATIONS 2,NA,NA,50305,44669,44358,41416,41579,38028,39729,39048,35215,42935,42832,43938 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,ENGLAND AND WALES,NA,NA,50201,44579,44281,41315,41479,37934,39618,38921,35118,42820,42756,43847 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -921,ENGLAND,NA,NA,47048,41673,41572,38579,38803,35492,37046,36450,32898,40050,40043,41067 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -A,NORTH EAST,NA,NA,2736,2300,2447,2165,2192,1959,2131,2007,1890,2320,2237,2349 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00EH,NA,Darlington UA,NA,122,79,88,96,86,87,74,80,84,101,92,82 -00EB,NA,Hartlepool UA,NA,105,93,100,88,78,60,83,82,76,79,81,82 -00EC,NA,Middlesbrough UA,NA,147,131,123,121,105,110,108,104,94,120,130,126 -00EE,NA,Redcar and Cleveland UA,NA,139,113,124,111,125,114,108,112,90,136,131,117 -00EF,NA,Stockton-on-Tees UA,NA,158,163,173,149,154,123,157,116,106,156,149,142 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -20,NA,Durham,NA,550,457,510,417,434,393,367,388,384,444,426,454 -20UB,NA,NA,Chester-le-Street,52,45,46,34,44,43,29,41,40,46,40,35 -20UD,NA,NA,Derwentside,98,86,102,90,82,79,76,65,78,82,71,68 -20UE,NA,NA,Durham,79,71,86,50,59,42,53,58,59,67,58,72 -20UF,NA,NA,Easington,120,99,85,87,87,78,81,79,65,90,90,95 -20UG,NA,NA,Sedgefield,107,79,90,71,85,77,58,67,63,66,79,78 -20UH,NA,NA,Teesdale,21,23,26,21,13,20,20,22,16,24,28,20 -20UJ,NA,NA,Wear Valley,73,54,75,64,64,54,50,56,63,69,60,86 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -35,NA,Northumberland,NA,333,315,306,279,304,269,267,252,234,280,278,298 -35UB,NA,NA,Alnwick,36,39,30,41,25,28,29,30,23,23,34,32 -35UC,NA,NA,Berwick-upon-Tweed,31,38,34,21,34,25,26,23,21,16,35,24 -35UD,NA,NA,Blyth Valley,93,66,81,67,70,80,64,53,53,88,68,75 -35UE,NA,NA,Castle Morpeth,61,50,38,40,52,46,42,37,33,40,37,54 -35UF,NA,NA,Tynedale,57,60,55,51,58,38,44,53,54,59,46,54 -35UG,NA,NA,Wansbeck,55,62,68,59,65,52,62,56,50,54,58,59 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2D,NA,Tyne and Wear (Met County),NA,1182,949,1023,904,906,803,967,873,822,1004,950,1048 -00CH,NA,NA,Gateshead,210,155,175,162,145,126,180,165,145,162,182,184 -00CJ,NA,NA,Newcastle upon Tyne,277,251,258,196,191,185,190,209,200,252,217,239 -00CK,NA,NA,North Tyneside,212,150,182,193,186,165,196,158,151,192,173,202 -00CL,NA,NA,South Tyneside,189,145,153,143,141,120,142,132,118,154,125,151 -00CM,NA,NA,Sunderland,294,248,255,210,243,207,259,209,208,244,253,272 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -B,NORTH WEST,NA,NA,7136,6309,6282,5803,5768,5323,5592,5342,4966,5996,6006,5989 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00EX,NA,Blackburn with Darwen UA,NA,138,115,132,106,115,103,98,102,86,142,112,119 -00EY,NA,Blackpool UA,NA,199,170,175,178,140,138,144,137,139,129,188,139 -00ET,NA,Halton UA,NA,122,111,99,100,84,77,101,88,86,107,100,102 -00EU,NA,Warrington UA,NA,183,174,157,155,157,138,149,156,142,164,150,189 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -13,NA,Cheshire,NA,731,608,596,563,498,516,554,493,508,546,588,573 -13UB,NA,NA,Chester,134,110,122,97,83,86,76,99,88,93,101,93 -13UC,NA,NA,Congleton,98,73,60,85,71,80,82,64,56,71,66,74 -13UD,NA,NA,Crewe and Nantwich,117,112,104,90,84,95,94,78,105,91,87,93 -13UE,NA,NA,Ellesmere Port & Neston,86,74,59,46,68,62,70,53,53,64,77,76 -13UG,NA,NA,Macclesfield,176,133,134,126,95,121,123,110,123,134,142,140 -13UH,NA,NA,Vale Royal,120,106,117,119,97,72,109,89,83,93,115,97 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -16,NA,Cumbria,NA,541,523,506,473,427,432,422,412,364,437,479,502 -16UB,NA,NA,Allerdale,118,107,96,89,76,95,89,85,69,81,103,101 -16UC,NA,NA,Barrow-in-Furness,67,77,71,75,69,65,61,48,61,64,71,65 -16UD,NA,NA,Carlisle,111,104,92,97,82,81,92,86,60,106,100,96 -16UE,NA,NA,Copeland,83,83,77,60,53,58,41,59,47,52,65,69 -16UF,NA,NA,Eden,53,42,52,55,47,51,38,40,30,46,41,51 -16UG,NA,NA,South Lakeland,109,110,118,97,100,82,101,94,97,88,99,120 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2A,NA,Greater Manchester (Met County),NA,2559,2202,2207,2052,2120,1918,1935,1936,1770,2144,2025,2040 -00BL,NA,NA,Bolton,289,241,229,241,228,242,214,212,195,235,205,236 -00BM,NA,NA,Bury,186,154,165,171,132,107,128,137,128,154,150,154 -00BN,NA,NA,Manchester,385,345,330,323,329,270,315,274,326,332,304,279 -00BP,NA,NA,Oldham,233,205,183,172,167,165,173,183,153,190,199,183 -00BQ,NA,NA,Rochdale,187,167,184,152,178,173,168,177,117,172,167,168 -00BR,NA,NA,Salford,259,197,219,176,208,178,164,180,164,201,216,190 -00BS,NA,NA,Stockport,291,226,239,223,209,212,203,204,182,243,206,215 -00BT,NA,NA,Tameside,231,184,217,201,209,180,157,181,123,204,175,187 -00BU,NA,NA,Trafford,172,197,165,148,174,127,161,146,135,171,143,151 -00BW,NA,NA,Wigan,326,286,276,245,286,264,252,242,247,242,260,277 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -30,NA,Lancashire,NA,1190,1077,1076,1027,987,916,962,903,851,1034,1064,1036 -30UD,NA,NA,Burnley,98,101,79,81,75,83,76,72,56,72,86,85 -30UE,NA,NA,Chorley,87,68,90,69,71,70,79,55,70,83,82,91 -30UF,NA,NA,Fylde,109,100,70,77,77,85,75,80,70,80,79,81 -30UG,NA,NA,Hyndburn,75,92,59,78,72,59,69,65,50,75,72,60 -30UH,NA,NA,Lancaster,122,154,160,143,134,115,121,104,107,108,132,130 -30UJ,NA,NA,Pendle,87,58,64,86,71,76,57,58,77,72,74,57 -30UK,NA,NA,Preston,129,117,111,103,99,90,102,106,84,112,98,101 -30UL,NA,NA,Ribble Valley,64,45,59,45,39,42,42,43,37,52,49,51 -30UM,NA,NA,Rossendale,61,56,59,50,62,41,47,44,50,59,83,51 -30UN,NA,NA,South Ribble,87,78,102,73,81,84,81,88,78,94,99,107 -30UP,NA,NA,West Lancashire,121,88,101,94,95,70,86,79,78,98,97,111 -30UQ,NA,NA,Wyre,150,120,122,128,111,101,127,109,94,129,113,111 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2B,NA,Merseyside (Met County),NA,1473,1329,1334,1149,1240,1085,1227,1115,1020,1293,1300,1289 -00BX,NA,NA,Knowsley,144,130,140,107,121,100,117,124,109,140,111,140 -00BY,NA,NA,Liverpool,438,397,423,371,397,294,375,345,314,381,406,399 -00CA,NA,NA,Sefton,317,300,319,247,250,216,306,265,191,285,295,249 -00BZ,NA,NA,St. Helens,181,179,154,146,164,140,132,128,136,164,168,177 -00CB,NA,NA,Wirral,393,323,298,278,308,335,297,253,270,323,320,324 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -D,YORKSHIRE AND THE HUMBER,NA,NA,5024,4543,4326,4263,4079,3830,3940,3886,3518,4254,4229,4525 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00FB,NA,East Riding of Yorkshire UA,NA,341,321,322,295,269,265,286,273,231,280,295,299 -00FA,NA,"Kingston upon Hull, City of UA",NA,242,255,214,196,195,228,183,220,186,219,206,211 -00FC,NA,North East Lincolnshire UA,NA,150,149,145,182,157,128,132,112,126,145,135,151 -00FD,NA,North Lincolnshire UA,NA,166,149,120,131,124,130,139,122,114,131,138,157 -00FF,NA,York UA,NA,151,153,148,132,139,130,133,133,114,136,148,150 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -36,NA,North Yorkshire,NA,620,551,517,566,518,428,481,459,447,499,515,597 -36UB,NA,NA,Craven,76,45,40,54,48,43,45,48,46,42,53,70 -36UC,NA,NA,Hambleton,76,96,78,92,67,49,59,56,49,66,64,76 -36UD,NA,NA,Harrogate,151,155,124,135,142,104,128,116,129,122,139,133 -36UE,NA,NA,Richmondshire,36,27,34,45,48,26,40,27,30,35,34,47 -36UF,NA,NA,Ryedale,50,48,56,50,47,50,52,54,44,53,57,67 -36UG,NA,NA,Scarborough,142,117,113,129,108,100,104,105,97,117,108,131 -36UH,NA,NA,Selby,89,63,72,61,58,56,53,53,52,64,60,73 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2C,NA,South Yorkshire (Met County),NA,1405,1223,1107,1098,1064,974,1060,1007,897,1153,1082,1103 -00CC,NA,NA,Barnsley,262,233,214,221,192,185,209,172,165,198,195,215 -00CE,NA,NA,Doncaster,337,296,233,254,257,232,237,215,188,263,262,257 -00CF,NA,NA,Rotherham,268,223,217,216,207,182,218,219,170,225,203,232 -00CG,NA,NA,Sheffield,538,471,443,407,408,375,396,401,374,467,422,399 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2F,NA,West Yorkshire (Met County),NA,1949,1742,1753,1663,1613,1547,1526,1560,1403,1691,1710,1857 -00CX,NA,NA,Bradford,427,429,390,370,358,359,324,348,343,405,397,404 -00CY,NA,NA,Calderdale,206,134,162,154,160,145,152,143,123,148,156,172 -00CZ,NA,NA,Kirklees,373,348,348,319,308,301,292,300,275,299,323,357 -00DA,NA,NA,Leeds,649,555,579,525,535,511,495,532,432,546,559,634 -00DB,NA,NA,Wakefield,294,276,274,295,252,231,263,237,230,293,275,290 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E,EAST MIDLANDS,NA,NA,4020,3786,3687,3322,3437,3101,3254,3228,2897,3566,3497,3616 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00FK,NA,Derby UA,NA,215,237,197,155,181,174,174,144,177,206,181,198 -00FN,NA,Leicester UA,NA,223,232,248,182,196,164,192,186,191,213,214,220 -00FY,NA,Nottingham UA,NA,257,211,209,191,186,169,211,203,178,218,242,236 -00FP,NA,Rutland UA,NA,27,30,35,28,35,27,21,24,19,24,30,26 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -17,NA,Derbyshire,NA,759,722,649,647,617,582,584,608,508,651,647,650 -17UB,NA,NA,Amber Valley,114,109,108,98,98,82,84,98,77,92,104,93 -17UC,NA,NA,Bolsover,90,84,75,68,52,53,71,72,60,63,73,85 -17UD,NA,NA,Chesterfield,92,104,81,90,81,92,76,84,69,103,95,102 -17UF,NA,NA,Derbyshire Dales,83,66,60,70,70,64,63,61,54,65,42,54 -17UG,NA,NA,Erewash,104,98,97,93,87,90,85,81,67,95,98,90 -17UH,NA,NA,High Peak,87,93,73,73,54,63,52,66,59,73,59,80 -17UJ,NA,NA,North East Derbyshire,127,101,83,87,102,77,95,80,72,98,104,89 -17UK,NA,NA,South Derbyshire,62,67,72,68,73,61,58,66,50,62,72,57 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -31,NA,Leicestershire,NA,541,501,459,442,464,420,423,412,365,442,424,478 -31UB,NA,NA,Blaby,77,73,58,50,59,64,50,64,69,58,51,65 -31UC,NA,NA,Charnwood,124,117,116,101,115,81,111,85,60,116,105,98 -31UD,NA,NA,Harborough,70,61,56,55,54,71,65,51,55,46,72,69 -31UE,NA,NA,Hinckley and Bosworth,89,79,84,87,78,77,64,70,47,80,71,78 -31UG,NA,NA,Melton,52,48,22,37,40,30,34,27,34,31,28,47 -31UH,NA,NA,North West Leicestershire,79,74,72,75,78,55,65,72,60,69,66,72 -31UJ,NA,NA,Oadby and Wigston,50,49,51,37,40,42,34,43,40,42,31,49 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -32,NA,Lincolnshire,NA,657,719,671,599,647,566,607,641,521,642,620,661 -32UB,NA,NA,Boston,49,76,61,59,70,56,65,75,51,46,58,75 -32UC,NA,NA,East Lindsey,147,168,164,158,137,131,148,151,122,144,123,137 -32UD,NA,NA,Lincoln,81,73,71,64,87,70,57,73,55,72,75,79 -32UE,NA,NA,North Kesteven,90,104,99,65,84,80,84,72,74,92,86,99 -32UF,NA,NA,South Holland,97,122,77,83,78,79,81,79,61,81,83,89 -32UG,NA,NA,South Kesteven,108,108,116,89,119,87,113,105,95,134,118,110 -32UH,NA,NA,West Lindsey,85,68,83,81,72,63,59,86,63,73,77,72 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -34,NA,Northamptonshire,NA,575,442,500,445,500,436,434,440,393,504,476,493 -34UB,NA,NA,Corby,58,23,46,49,37,33,32,38,30,45,38,49 -34UC,NA,NA,Daventry,62,45,57,53,82,51,49,45,44,51,57,52 -34UD,NA,NA,East Northamptonshire,72,67,61,57,65,67,55,56,50,76,59,64 -34UE,NA,NA,Kettering,82,62,73,55,60,67,64,71,61,75,67,60 -34UF,NA,NA,Northampton,183,139,156,134,149,125,139,133,117,128,140,153 -34UG,NA,NA,South Northamptonshire,56,51,58,44,56,45,43,44,38,66,52,57 -34UH,NA,NA,Wellingborough,62,55,49,53,51,48,52,53,53,63,63,58 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -37,NA,Nottinghamshire,NA,766,692,719,633,611,563,608,570,545,666,663,654 -37UB,NA,NA,Ashfield,120,109,114,92,108,80,89,100,79,91,102,97 -37UC,NA,NA,Bassetlaw,127,112,111,106,85,63,95,77,97,98,88,101 -37UD,NA,NA,Broxtowe,106,83,107,73,79,88,82,75,67,80,104,107 -37UE,NA,NA,Gedling,99,97,117,107,84,87,96,89,80,99,96,86 -37UF,NA,NA,Mansfield,102,105,82,83,90,78,74,73,69,106,88,97 -37UG,NA,NA,Newark and Sherwood,127,101,106,87,91,87,92,98,85,98,105,80 -37UJ,NA,NA,Rushcliffe,85,85,82,85,74,80,80,58,68,94,80,86 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -F,NA,WEST MIDLANDS,NA,5170,4735,4630,4307,4319,3981,4025,3965,3539,4316,4365,4579 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00GA,NA,"Herefordshire, County of UA",NA,187,166,182,183,167,163,145,166,124,159,151,181 -00GL,NA,Stoke-on-Trent UA,NA,267,253,244,201,240,217,219,215,172,237,217,196 -00GF,NA,Telford and Wrekin UA,NA,123,109,123,110,129,97,110,94,90,98,98,121 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -39,NA,Shropshire,NA,270,289,259,242,242,235,230,227,190,272,277,275 -39UB,NA,NA,Bridgnorth,51,55,36,45,44,46,26,37,30,57,38,47 -39UC,NA,NA,North Shropshire,71,50,58,53,46,48,52,44,37,59,52,58 -39UD,NA,NA,Oswestry,30,39,39,32,30,29,37,35,23,27,45,32 -39UE,NA,NA,Shrewsbury and Atcham,75,89,91,72,81,71,74,75,68,80,98,95 -39UF,NA,NA,South Shropshire,43,56,35,40,41,41,41,36,32,49,44,43 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -41,NA,Staffordshire,NA,768,723,719,665,660,619,627,647,530,676,674,722 -41UB,NA,NA,Cannock Chase,77,73,87,74,74,72,66,64,46,76,65,75 -41UC,NA,NA,East Staffordshire,92,102,77,104,89,88,73,97,61,74,97,100 -41UD,NA,NA,Lichfield,99,93,84,84,73,62,84,65,79,64,87,88 -41UE,NA,NA,Newcastle-under-Lyme,120,129,105,97,124,104,110,106,81,108,104,121 -41UF,NA,NA,South Staffordshire,114,95,100,83,93,78,75,72,70,87,89,93 -41UG,NA,NA,Stafford,120,108,124,100,88,95,90,120,85,136,101,96 -41UH,NA,NA,Staffordshire Moorlands,102,84,90,85,69,73,86,71,67,84,86,95 -41UK,NA,NA,Tamworth,44,39,52,38,50,47,43,52,41,47,45,54 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -44,NA,Warwickshire,NA,518,434,453,405,399,391,397,350,347,432,400,482 -44UB,NA,NA,North Warwickshire,61,63,59,45,44,57,59,42,41,47,41,63 -44UC,NA,NA,Nuneaton and Bedworth,114,84,108,86,93,79,94,72,83,99,116,103 -44UD,NA,NA,Rugby,83,67,73,70,70,71,58,60,42,84,73,74 -44UE,NA,NA,Stratford-on-Avon,146,127,121,105,90,96,99,99,89,115,84,115 -44UF,NA,NA,Warwick,114,93,92,99,102,88,87,77,92,87,86,127 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2E,NA,West Midlands (Met County),NA,2492,2277,2167,2022,2007,1860,1860,1850,1695,2003,2077,2147 -00CN,NA,NA,Birmingham,856,800,762,700,729,688,660,643,670,702,739,755 -00CQ,NA,NA,Coventry,272,242,251,231,239,207,237,224,183,245,223,238 -00CR,NA,NA,Dudley,357,291,297,254,224,217,225,223,209,239,261,274 -00CS,NA,NA,Sandwell,328,303,250,279,275,232,250,231,186,263,256,280 -00CT,NA,NA,Solihull,167,147,169,166,166,131,126,116,128,155,152,145 -00CU,NA,NA,Walsall,259,246,213,199,210,209,175,206,155,182,206,226 -00CW,NA,NA,Wolverhampton,253,248,225,193,164,176,187,207,164,217,240,229 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -47,NA,Worcestershire,NA,545,484,483,479,475,399,437,416,391,439,471,455 -47UB,NA,NA,Bromsgrove,111,87,90,75,84,69,83,84,69,72,90,91 -47UC,NA,NA,Malvern Hills,91,82,83,77,67,66,75,82,64,71,87,57 -47UD,NA,NA,Redditch,65,50,52,46,57,47,57,44,39,47,65,47 -47UE,NA,NA,Worcester,86,71,67,85,67,66,59,54,62,74,73,85 -47UF,NA,NA,Wychavon,97,113,97,97,100,74,93,73,81,104,83,94 -47UG,NA,NA,Wyre Forest,95,81,94,99,100,77,70,79,76,71,73,81 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -G,NA,EAST,NA,5227,4475,4520,4215,4321,3789,4051,4028,3652,4375,4346,4564 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00KA,NA,Luton UA,NA,152,98,126,95,122,102,116,112,114,133,115,134 -00JA,NA,Peterborough UA,NA,162,131,122,104,117,101,97,113,96,118,116,149 -00KF,NA,Southend-on-Sea UA,NA,204,168,166,161,156,135,127,133,127,179,169,152 -00KG,NA,Thurrock UA,NA,130,108,89,103,91,79,101,78,84,101,107,107 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -09,NA,Bedfordshire,NA,311,300,290,273,264,246,255,255,207,252,261,357 -09UC,NA,NA,Mid Bedfordshire,77,89,84,74,85,64,70,85,53,74,70,103 -09UD,NA,NA,Bedford,150,117,127,112,95,99,99,92,85,102,118,144 -09UE,NA,NA,South Bedfordshire,84,94,79,87,84,83,86,78,69,76,73,110 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -12,NA,Cambridgeshire,NA,476,450,430,384,389,359,370,392,333,417,400,420 -12UB,NA,NA,Cambridge,81,90,52,60,73,53,72,68,55,70,81,90 -12UC,NA,NA,East Cambridgeshire,85,61,59,48,62,59,52,49,38,62,57,59 -12UD,NA,NA,Fenland,92,96,93,94,84,77,66,83,83,80,70,90 -12UE,NA,NA,Huntingdonshire,124,122,132,109,88,92,110,111,84,117,91,90 -12UG,NA,NA,South Cambridgeshire,94,81,94,73,82,78,70,81,73,88,101,91 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -22,NA,Essex,NA,1285,1095,1150,1083,1068,897,991,956,943,1091,1081,1122 -22UB,NA,NA,Basildon,157,136,144,133,120,90,101,108,118,115,113,112 -22UC,NA,NA,Braintree,116,100,100,88,98,82,110,89,94,124,103,115 -22UD,NA,NA,Brentwood,77,69,60,49,58,45,55,46,49,58,55,58 -22UE,NA,NA,Castle Point,109,68,84,73,64,49,78,78,69,76,76,79 -22UF,NA,NA,Chelmsford,127,85,109,112,103,98,89,90,81,117,99,128 -22UG,NA,NA,Colchester,131,104,132,115,131,93,105,95,94,103,126,113 -22UH,NA,NA,Epping Forest,133,119,103,104,102,92,88,70,104,95,114,121 -22UJ,NA,NA,Harlow,48,50,54,63,65,41,45,59,40,53,59,55 -22UK,NA,NA,Maldon,51,54,45,48,53,51,41,46,38,62,52,51 -22UL,NA,NA,Rochford,82,51,65,56,65,61,68,49,59,55,61,43 -22UN,NA,NA,Tendring,189,189,197,186,164,140,160,184,158,179,168,187 -22UQ,NA,NA,Uttlesford,65,70,57,56,45,55,51,42,39,54,55,60 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -26,NA,Hertfordshire,NA,951,763,740,723,754,658,725,672,578,765,793,741 -26UB,NA,NA,Broxbourne,82,52,57,57,62,51,70,51,49,63,55,49 -26UC,NA,NA,Dacorum,113,100,84,68,84,86,103,76,74,98,103,112 -26UD,NA,NA,East Hertfordshire,103,85,87,80,86,73,85,72,72,81,85,80 -26UE,NA,NA,Hertsmere,100,76,83,90,70,56,74,68,68,67,95,75 -26UF,NA,NA,North Hertfordshire,138,114,111,88,78,87,86,103,64,97,98,82 -26UG,NA,NA,St Albans,100,103,70,72,98,72,80,86,57,88,103,88 -26UH,NA,NA,Stevenage,55,62,65,41,68,44,53,36,53,74,48,58 -26UJ,NA,NA,Three Rivers,78,54,65,75,62,65,60,62,39,54,67,59 -26UK,NA,NA,Watford,76,55,58,70,65,58,42,45,45,56,63,54 -26UL,NA,NA,Welwyn Hatfield,106,62,60,82,81,66,72,73,57,87,76,84 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -33,NA,Norfolk,NA,888,768,828,692,756,702,748,735,645,721,726,766 -33UB,NA,NA,Breckland,136,122,130,118,126,104,104,126,95,114,140,101 -33UC,NA,NA,Broadland,136,106,117,104,93,107,104,128,99,99,92,126 -33UD,NA,NA,Great Yarmouth,122,89,97,71,92,86,87,74,95,92,85,103 -33UE,NA,NA,King's Lynn and West Norfolk,161,138,162,119,133,128,149,142,103,128,128,136 -33UF,NA,NA,North Norfolk,119,121,124,98,111,115,113,82,92,103,85,98 -33UG,NA,NA,Norwich,95,93,101,76,98,77,89,92,76,82,88,96 -33UH,NA,NA,South Norfolk,119,99,97,106,103,85,102,91,85,103,108,106 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -42,NA,Suffolk,NA,668,594,579,597,604,510,521,582,525,598,578,616 -42UB,NA,NA,Babergh,95,62,83,76,78,61,63,69,67,87,74,104 -42UC,NA,NA,Forest Heath,48,48,35,36,45,32,38,50,36,53,36,32 -42UD,NA,NA,Ipswich,90,101,99,101,93,75,87,101,87,102,85,88 -42UE,NA,NA,Mid Suffolk,92,60,54,68,86,56,73,58,68,81,85,69 -42UF,NA,NA,St Edmundsbury,76,79,67,83,70,63,58,76,83,68,79,89 -42UG,NA,NA,Suffolk Coastal,123,109,115,103,109,94,94,121,91,94,109,112 -42UH,NA,NA,Waveney,144,135,126,130,123,129,108,107,93,113,110,122 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -H,NA,LONDON,NA,5079,4314,4401,4128,4213,3830,4003,3915,3551,4149,4388,4294 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -1B,NA,Inner London,NA,1758,1448,1450,1327,1380,1292,1326,1279,1211,1380,1504,1440 -00AG,NA,NA,Camden,124,118,94,110,110,87,108,90,106,109,93,111 -00AA,NA,NA,City of London,11,2,5,5,2,3,4,3,4,1,5,7 -00AM,NA,NA,Hackney,132,102,92,73,82,99,86,78,59,108,97,117 -00AN,NA,NA,Hammersmith and Fulham,106,84,99,81,87,56,78,72,62,91,79,82 -00AP,NA,NA,Haringey,141,110,90,103,112,89,118,101,91,111,102,113 -00AU,NA,NA,Islington,122,97,94,80,92,81,91,97,92,100,108,98 -00AW,NA,NA,Kensington and Chelsea,100,82,64,67,74,65,73,68,57,72,81,56 -00AY,NA,NA,Lambeth,154,125,137,118,123,118,109,115,121,113,139,117 -00AZ,NA,NA,Lewisham,166,146,139,144,136,123,125,124,117,153,164,151 -00BB,NA,NA,Newham,152,124,105,104,107,113,114,102,91,105,138,118 -00BE,NA,NA,Southwark,158,111,156,119,118,120,135,114,114,113,134,117 -00BG,NA,NA,Tower Hamlets,114,103,105,91,101,97,81,92,75,89,119,111 -00BJ,NA,NA,Wandsworth,178,141,170,142,138,136,125,132,144,133,136,138 -00BK,NA,NA,Westminster,100,103,100,90,98,105,79,91,78,82,109,104 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -1C,NA,Outer London,NA,3321,2866,2951,2801,2833,2538,2677,2636,2340,2769,2884,2854 -00AB,NA,NA,Barking and Dagenham,137,116,123,107,110,83,114,97,100,124,116,126 -00AC,NA,NA,Barnet,253,204,190,196,201,196,202,196,171,204,194,210 -00AD,NA,NA,Bexley,190,182,175,131,139,125,162,157,117,166,170,177 -00AE,NA,NA,Brent,168,135,130,132,128,117,129,132,107,128,140,122 -00AF,NA,NA,Bromley,289,228,232,242,227,190,223,201,173,236,252,238 -00AH,NA,NA,Croydon,216,197,203,212,171,227,187,197,156,193,194,197 -00AJ,NA,NA,Ealing,166,154,194,137,179,146,155,145,121,140,147,164 -00AK,NA,NA,Enfield,211,172,169,161,198,157,126,154,145,184,180,165 -00AL,NA,NA,Greenwich,139,149,166,161,148,141,145,153,127,135,149,152 -00AQ,NA,NA,Harrow,144,116,141,109,132,104,137,124,105,109,114,143 -00AR,NA,NA,Havering,228,182,198,194,187,164,175,171,172,185,198,195 -00AS,NA,NA,Hillingdon,193,162,149,159,155,108,147,166,121,156,170,161 -00AT,NA,NA,Hounslow,123,129,121,124,149,110,133,100,113,125,129,114 -00AX,NA,NA,Kingston upon Thames,131,107,83,87,102,89,86,75,88,91,98,79 -00BA,NA,NA,Merton,134,112,138,106,117,91,100,103,82,112,98,98 -00BC,NA,NA,Redbridge,206,153,175,151,151,138,131,131,126,127,180,149 -00BD,NA,NA,Richmond upon Thames,127,105,110,111,79,93,94,91,90,97,100,103 -00BF,NA,NA,Sutton,127,132,126,131,118,128,103,127,118,131,131,139 -00BH,NA,NA,Waltham Forest,139,131,128,150,142,131,128,116,108,126,124,122 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -J,NA,SOUTH EAST,NA,7470,6488,6508,6090,6241,5669,5920,5929,5236,6520,6483,6665 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00MA,NA,Bracknell Forest UA,NA,63,61,60,48,52,57,54,53,51,71,54,61 -00ML,NA,Brighton and Hove UA,NA,233,216,203,205,183,188,177,187,180,192,175,227 -00MW,NA,Isle of Wight UA,NA,161,139,123,143,150,134,130,121,108,151,161,145 -00LC,NA,Medway UA,NA,184,173,194,142,180,156,152,176,131,187,173,206 -00MG,NA,Milton Keynes UA,NA,135,118,123,137,123,106,133,110,112,107,145,139 -00MR,NA,Portsmouth UA,NA,172,154,167,124,142,119,144,114,123,135,149,163 -00MC,NA,Reading UA,NA,104,100,87,83,84,77,82,86,72,79,88,119 -00MD,NA,Slough UA,NA,94,79,70,50,57,65,57,67,60,62,68,71 -00MS,NA,Southampton UA,NA,189,169,156,139,128,129,146,137,122,152,171,161 -00MB,NA,West Berkshire UA,NA,104,91,81,81,112,87,92,94,92,93,90,86 -00ME,NA,Windsor and Maidenhead UA,NA,126,104,98,108,72,79,80,92,68,90,85,124 -00MF,NA,Wokingham UA,NA,90,73,71,83,74,81,76,88,69,87,84,77 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -11,NA,Buckinghamshire,NA,384,333,314,314,298,274,293,285,230,328,312,358 -11UB,NA,NA,Aylesbury Vale,119,114,108,106,102,89,95,85,74,120,126,135 -11UC,NA,NA,Chiltern,82,66,63,64,57,47,57,54,43,64,54,73 -11UE,NA,NA,South Bucks,47,56,46,50,45,48,40,40,39,47,32,41 -11UF,NA,NA,Wycombe,136,97,97,94,94,90,101,106,74,97,100,109 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -21,NA,East Sussex,NA,593,536,590,515,528,466,497,468,444,505,488,529 -21UC,NA,NA,Eastbourne,136,101,122,100,106,90,96,101,83,108,99,106 -21UD,NA,NA,Hastings,76,78,92,91,100,65,87,91,77,85,74,89 -21UF,NA,NA,Lewes,103,108,94,72,84,93,86,74,71,85,87,97 -21UG,NA,NA,Rother,149,99,131,127,100,105,109,106,89,101,109,120 -21UH,NA,NA,Wealden,129,150,151,125,138,113,119,96,124,126,119,117 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -24,NA,Hampshire,NA,1184,973,1001,931,934,821,886,944,842,1006,1015,1036 -24UB,NA,NA,Basingstoke and Deane,127,82,95,92,105,84,85,92,90,100,100,110 -24UC,NA,NA,East Hampshire,83,110,90,84,87,66,73,81,82,90,101,86 -24UD,NA,NA,Eastleigh,99,88,107,88,68,67,64,98,74,92,87,88 -24UE,NA,NA,Fareham,102,71,84,76,79,74,71,73,64,90,89,91 -24UF,NA,NA,Gosport,97,74,64,56,67,60,64,48,65,75,62,70 -24UG,NA,NA,Hart,69,51,37,47,43,44,51,45,38,53,50,61 -24UH,NA,NA,Havant,149,90,106,84,89,94,100,119,78,117,99,96 -24UJ,NA,NA,New Forest,185,176,189,167,157,135,165,170,160,157,182,174 -24UL,NA,NA,Rushmoor,59,46,48,52,64,41,50,55,39,42,64,69 -24UN,NA,NA,Test Valley,101,101,87,88,76,80,87,83,77,84,98,85 -24UP,NA,NA,Winchester,113,84,94,97,99,76,76,80,75,106,83,106 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -29,NA,Kent,NA,1344,1145,1175,1094,1226,1016,1064,1030,972,1217,1242,1135 -29UB,NA,NA,Ashford,86,79,77,73,85,73,80,68,61,93,92,74 -29UC,NA,NA,Canterbury,175,137,129,113,114,120,132,116,108,129,134,155 -29UD,NA,NA,Dartford,83,61,66,64,68,57,49,64,67,61,84,48 -29UE,NA,NA,Dover,122,112,95,110,103,108,91,94,78,105,100,101 -29UG,NA,NA,Gravesham,116,74,73,67,90,58,58,64,58,82,86,71 -29UH,NA,NA,Maidstone,133,107,107,108,120,101,101,111,89,122,127,96 -29UK,NA,NA,Sevenoaks,93,80,89,94,86,79,75,71,76,108,94,85 -29UL,NA,NA,Shepway,118,100,112,97,107,74,99,86,82,101,95,74 -29UM,NA,NA,Swale,114,93,122,96,123,90,99,96,83,120,111,90 -29UN,NA,NA,Thanet,148,141,152,125,158,117,120,129,122,134,150,160 -29UP,NA,NA,Tonbridge and Malling,79,74,76,72,78,70,82,56,70,72,83,84 -29UQ,NA,NA,Tunbridge Wells,77,87,77,75,94,69,78,75,78,90,86,97 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -38,NA,Oxfordshire,NA,452,410,429,398,403,401,380,440,336,438,401,405 -38UB,NA,NA,Cherwell,99,89,93,82,91,88,82,89,75,96,80,77 -38UC,NA,NA,Oxford,84,86,91,71,81,77,63,89,72,75,75,84 -38UD,NA,NA,South Oxfordshire,106,96,101,83,94,96,93,99,74,103,99,91 -38UE,NA,NA,Vale of White Horse,88,63,59,81,65,84,77,79,53,93,85,77 -38UF,NA,NA,West Oxfordshire,75,76,85,81,72,56,65,84,62,71,62,76 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -43,NA,Surrey,NA,923,818,801,774,759,716,793,733,620,882,826,873 -43UB,NA,NA,Elmbridge,101,100,91,96,89,95,97,86,68,100,82,117 -43UC,NA,NA,Epsom and Ewell,59,42,56,40,40,37,49,52,42,42,60,44 -43UD,NA,NA,Guildford,94,76,73,73,83,65,94,76,71,91,84,96 -43UE,NA,NA,Mole Valley,83,86,67,60,69,72,83,52,45,89,80,58 -43UF,NA,NA,Reigate and Banstead,139,102,114,109,99,82,102,99,85,123,88,104 -43UG,NA,NA,Runnymede,56,61,47,61,62,49,50,48,43,77,66,80 -43UH,NA,NA,Spelthorne,58,76,86,70,58,67,68,67,54,68,81,85 -43UJ,NA,NA,Surrey Heath,53,52,54,55,49,50,45,55,36,60,62,53 -43UK,NA,NA,Tandridge,70,66,63,61,57,70,60,66,55,75,62,51 -43UL,NA,NA,Waverley,117,91,90,87,89,73,82,83,66,94,90,116 -43UM,NA,NA,Woking,93,66,60,62,64,56,63,49,55,63,71,69 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -45,NA,West Sussex,NA,935,796,765,721,736,697,684,704,604,738,756,750 -45UB,NA,NA,Adur,76,72,61,63,68,56,61,74,56,72,75,65 -45UC,NA,NA,Arun,247,194,201,148,180,175,157,170,150,151,195,176 -45UD,NA,NA,Chichester,140,129,127,130,122,112,116,107,98,108,123,119 -45UE,NA,NA,Crawley,77,56,61,55,56,50,42,62,35,65,62,66 -45UF,NA,NA,Horsham,107,109,113,116,95,97,102,90,76,105,102,103 -45UG,NA,NA,Mid Sussex,150,106,91,108,96,93,110,92,96,117,94,114 -45UH,NA,NA,Worthing,138,130,111,101,119,114,96,109,93,120,105,107 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -K,NA,SOUTH WEST,NA,5186,4723,4771,4286,4233,4010,4130,4150,3649,4554,4492,4486 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00HA,NA,Bath and North East Somerset UA,NA,165,157,160,125,127,119,113,111,124,142,140,135 -00HN,NA,Bournemouth UA,NA,200,163,177,138,156,138,166,161,128,174,173,172 -00HB,NA,"Bristol, City of UA",NA,336,299,310,271,250,270,282,275,274,331,325,274 -00HC,NA,North Somerset UA,NA,189,194,189,194,180,157,176,152,146,184,178,187 -00HG,NA,Plymouth UA,NA,199,195,221,198,180,174,188,206,172,217,204,214 -00HP,NA,Poole UA,NA,140,113,141,130,134,114,128,124,109,127,132,155 -00HD,NA,South Gloucestershire UA,NA,165,172,181,176,162,154,160,159,150,181,173,180 -00HX,NA,Swindon UA,NA,143,135,142,110,130,111,117,118,106,153,140,148 -00HH,NA,Torbay UA,NA,188,179,168,147,139,136,125,163,131,139,158,153 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -15,NA,Cornwall and Isles of Scilly,NA,599,549,555,513,502,458,494,477,402,534,501,480 -15UB,NA,NA,Caradon,95,99,77,71,55,73,81,64,52,89,80,84 -15UC,NA,NA,Carrick,93,96,96,73,88,84,94,84,77,100,76,79 -15UD,NA,NA,Kerrier,101,105,100,97,91,85,82,108,72,108,105,95 -15UE,NA,NA,North Cornwall,103,78,90,81,100,78,76,75,68,76,71,73 -15UF,NA,NA,Penwith,83,83,83,71,75,56,77,55,63,69,74,61 -15UG,NA,NA,Restormel,120,85,108,117,92,80,84,90,70,91,93,87 -15UH,NA,NA,Isles of Scilly,4,3,1,3,1,2,0,1,0,1,2,1 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -18,NA,Devon,NA,797,775,694,658,638,647,629,632,566,693,699,696 -18UB,NA,NA,East Devon,168,157,151,144,122,141,123,128,113,168,181,173 -18UC,NA,NA,Exeter,88,98,81,91,77,86,70,71,74,83,91,96 -18UD,NA,NA,Mid Devon,84,54,66,49,50,44,68,58,58,62,58,71 -18UE,NA,NA,North Devon,88,115,92,82,75,68,84,94,77,65,79,75 -18UG,NA,NA,South Hams,101,81,89,73,84,74,78,76,57,80,79,73 -18UH,NA,NA,Teignbridge,154,150,118,122,133,118,97,103,84,117,100,113 -18UK,NA,NA,Torridge,66,67,52,50,64,67,74,61,67,63,57,53 -18UL,NA,NA,West Devon,48,53,45,47,33,49,35,41,36,55,54,42 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -19,NA,Dorset,NA,509,406,435,376,377,351,360,389,314,396,410,397 -19UC,NA,NA,Christchurch,73,48,55,51,54,49,49,51,49,59,49,70 -19UD,NA,NA,East Dorset,106,82,86,74,89,68,89,71,68,83,86,79 -19UE,NA,NA,North Dorset,57,67,52,39,46,64,50,60,44,49,49,59 -19UG,NA,NA,Purbeck,68,40,50,35,44,40,41,47,27,31,51,36 -19UH,NA,NA,West Dorset,126,109,117,110,96,75,73,92,80,102,120,102 -19UJ,NA,NA,Weymouth and Portland,79,60,75,67,48,55,58,68,46,72,55,51 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -23,NA,Gloucestershire,NA,566,505,549,479,484,425,426,437,399,484,432,451 -23UB,NA,NA,Cheltenham,95,90,84,93,84,79,94,81,70,90,82,93 -23UC,NA,NA,Cotswold,91,79,89,68,69,73,66,63,65,66,66,66 -23UD,NA,NA,Forest of Dean,87,79,72,74,82,63,59,77,58,71,69,50 -23UE,NA,NA,Gloucester,98,98,105,103,95,83,72,67,72,81,63,85 -23UF,NA,NA,Stroud,119,93,122,83,92,78,71,96,83,116,81,97 -23UG,NA,NA,Tewkesbury,76,66,77,58,62,49,64,53,51,60,71,60 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -40,NA,Somerset,NA,574,509,520,434,415,443,444,426,338,444,477,468 -40UB,NA,NA,Mendip,105,88,98,80,74,69,80,74,65,102,103,114 -40UC,NA,NA,Sedgemoor,114,114,113,95,85,87,97,93,71,88,98,86 -40UD,NA,NA,South Somerset,160,142,147,111,137,141,122,116,100,118,146,125 -40UE,NA,NA,Taunton Deane,135,116,113,104,84,104,104,104,80,95,98,102 -40UF,NA,NA,West Somerset,60,49,49,44,35,42,41,39,22,41,32,41 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -46,NA,Wiltshire,NA,416,372,329,337,359,313,322,320,290,355,350,376 -46UB,NA,NA,Kennet,80,55,57,41,62,59,55,52,53,54,61,68 -46UC,NA,NA,North Wiltshire,106,88,86,99,83,70,83,78,65,85,89,94 -46UD,NA,NA,Salisbury,124,108,85,86,114,85,89,111,88,111,91,122 -46UF,NA,NA,West Wiltshire,106,121,101,111,100,99,95,79,84,105,109,92 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -924,WALES,NA,NA,3153,2906,2709,2736,2676,2442,2572,2471,2220,2770,2713,2780 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00NA,NA,Isle of Anglesey / Ynys Mon,NA,78,77,48,60,64,57,52,66,48,85,54,85 -00NC,NA,Gwynedd / Gwynedd,NA,130,129,97,106,117,101,99,109,87,108,104,132 -00NE,NA,Conwy / Conwy,NA,131,158,127,130,139,121,102,106,106,142,139,114 -00NG,NA,Denbighshire / Sir Ddinbych,NA,101,112,91,81,99,82,92,81,76,112,95,101 -00NJ,NA,Flintshire / Sir y Fflint,NA,127,119,116,119,104,97,119,113,113,112,112,121 -00NL,NA,Wrexham / Wrecsam,NA,157,121,119,128,99,95,115,86,100,97,125,103 -00NN,NA,Powys / Powys,NA,143,130,134,138,134,82,100,119,103,123,140,132 -00NQ,NA,Ceredigion / Ceredigion,NA,85,59,51,67,65,58,48,52,59,53,66,58 -00NS,NA,Pembrokeshire / Sir Benfro,NA,121,106,137,103,124,108,119,96,87,89,105,106 -00NU,NA,Carmarthenshire / Sir Gaerfyrddin,NA,216,160,181,176,195,176,176,175,135,196,184,194 -00NX,NA,Swansea / Abertawe,NA,254,233,235,212,211,211,200,194,156,227,202,222 -00NZ,NA,Neath Port Talbot / Castell-nedd Port Talbot,NA,145,169,134,147,106,108,128,121,94,149,141,132 -00PB,NA,Bridgend / Pen-y-bont ar Ogwr,NA,123,94,103,125,134,121,116,116,135,140,124,108 -00PD,NA,The Vale of Glamorgan / Bro Morgannwg,NA,129,108,103,92,109,79,114,100,94,109,111,107 -00PT,NA,Cardiff / Caerdydd,NA,259,239,225,233,224,232,223,218,209,260,239,257 -00PF,NA,"Rhondda, Cynon, Taff / Rhondda, Cynon, Taf",NA,253,287,255,227,222,210,238,191,170,215,236,220 -00PH,NA,Merthyr Tydfil / Merthyr Tudful,NA,64,66,51,55,47,41,42,51,43,57,68,50 -00PK,NA,Caerphilly / Caerffili,NA,184,185,148,177,160,138,148,138,114,139,135,165 -00PL,NA,Blaenau Gwent / Blaenau Gwent,NA,101,82,74,69,61,69,74,51,63,69,67,91 -00PM,NA,Torfaen / Tor-faen,NA,103,84,74,88,81,90,81,78,79,84,86,94 -00PP,NA,Monmouthshire / Sir Fynwy,NA,107,62,86,77,76,71,67,82,58,71,61,78 -00PR,NA,Newport / Casnewydd,NA,142,126,120,126,105,95,119,128,91,133,119,110 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,Non-residents of E&W,NA,104,90,77,101,100,94,111,127,97,115,76,91 -Footnotes:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -1,England and Wales were recoded in July 2007.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2,This may include records where the place of usual residence is missing. All sub divisions of Total Registrations exclude these.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA diff --git a/working_files/Monthly/Monthly2007Mortality-Notes.csv b/working_files/Monthly/Monthly2007Mortality-Notes.csv deleted file mode 100644 index e69de29..0000000 diff --git a/working_files/Monthly/Monthly2007Mortality.xls b/working_files/Monthly/Monthly2007Mortality.xls deleted file mode 100644 index 965f4d5..0000000 Binary files a/working_files/Monthly/Monthly2007Mortality.xls and /dev/null differ diff --git a/working_files/Monthly/Monthly2008Mortality-Figures for 2008.csv b/working_files/Monthly/Monthly2008Mortality-Figures for 2008.csv deleted file mode 100644 index c356c1d..0000000 --- a/working_files/Monthly/Monthly2008Mortality-Figures for 2008.csv +++ /dev/null @@ -1,503 +0,0 @@ -"Monthly figures on deaths registered by area of usual residence, 2008",...2,...3,...4,...5,...6,...7,...8,...9,...10,...11,...12,...13,...14,...15,England and Wales -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Area Codes 1,NA,NA,NA,Jan-08,Feb-08,Mar-08,Apr-08,May-08,Jun-08,Jul-08,Aug-08,Sep-08,Oct-08,Nov-08,Dec-08 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,TOTAL REGISTRATIONS 2,NA,NA,52057,42338,41999,46016,39240,37845,40084,34980,39238,42195,39504,53594 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,ENGLAND AND WALES,NA,NA,51951,42257,41928,45929,39134,37741,39961,34878,39095,42061,39406,53488 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -921,ENGLAND,NA,NA,48800,39623,39143,43055,36637,35398,37368,32682,36629,39397,36925,50106 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -A,NORTH EAST,NA,NA,2876,2293,2255,2363,2100,1984,2148,1852,2183,2270,2166,2896 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00EH,NA,Darlington UA,NA,105,85,81,116,83,70,70,68,85,108,92,129 -00EB,NA,Hartlepool UA,NA,97,84,67,85,77,76,69,54,98,69,69,99 -00EC,NA,Middlesbrough UA,NA,126,99,135,122,107,82,98,101,110,135,124,163 -00EE,NA,Redcar and Cleveland UA,NA,147,127,116,129,123,102,117,88,126,129,118,169 -00EF,NA,Stockton-on-Tees UA,NA,171,136,139,153,139,123,146,138,135,149,126,212 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -20,NA,Durham,NA,538,500,447,517,415,398,397,358,464,421,433,567 -20UB,NA,NA,Chester-le-Street,69,44,41,60,50,44,35,33,53,49,48,55 -20UD,NA,NA,Derwentside,104,87,71,92,66,75,77,65,75,81,91,104 -20UE,NA,NA,Durham,80,90,75,62,56,53,57,48,66,56,58,87 -20UF,NA,NA,Easington,102,87,81,98,69,77,80,71,107,83,79,114 -20UG,NA,NA,Sedgefield,92,89,96,112,78,77,66,74,89,63,76,89 -20UH,NA,NA,Teesdale,20,26,20,30,21,21,22,16,25,30,20,28 -20UJ,NA,NA,Wear Valley,71,77,63,63,75,51,60,51,49,59,61,90 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -35,NA,Northumberland,NA,377,290,307,258,282,242,275,201,262,260,246,356 -35UB,NA,NA,Alnwick,35,19,38,19,30,30,31,23,24,37,34,51 -35UC,NA,NA,Berwick-upon-Tweed,37,23,27,22,23,18,27,19,16,21,21,34 -35UD,NA,NA,Blyth Valley,94,79,65,66,72,64,62,54,55,59,58,79 -35UE,NA,NA,Castle Morpeth,48,52,57,40,37,34,45,32,53,30,47,64 -35UF,NA,NA,Tynedale,64,53,57,44,48,49,46,36,60,54,43,57 -35UG,NA,NA,Wansbeck,99,64,63,67,72,47,64,37,54,59,43,71 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2D,NA,Tyne and Wear (Met County),NA,1315,972,963,983,874,891,976,844,903,999,958,1201 -00CH,NA,NA,Gateshead,228,173,168,197,151,155,166,143,165,169,179,211 -00CJ,NA,NA,Newcastle upon Tyne,290,226,240,218,196,198,232,203,188,246,223,270 -00CK,NA,NA,North Tyneside,256,195,187,174,178,163,186,153,182,180,187,218 -00CL,NA,NA,South Tyneside,203,150,138,139,131,136,152,115,135,140,141,188 -00CM,NA,NA,Sunderland,338,228,230,255,218,239,240,230,233,264,228,314 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -B,NORTH WEST,NA,NA,7157,5939,5896,6418,5325,5258,5645,4865,5463,5661,5541,7572 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00EX,NA,Blackburn with Darwen UA,NA,124,97,100,117,94,95,102,84,98,121,108,137 -00EY,NA,Blackpool UA,NA,197,157,195,150,148,154,131,130,138,153,136,211 -00ET,NA,Halton UA,NA,127,117,110,107,96,88,83,77,100,89,102,115 -00EU,NA,Warrington UA,NA,180,159,145,166,116,150,152,145,140,136,149,199 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -13,NA,Cheshire,NA,730,564,580,665,536,463,548,466,561,503,558,751 -13UB,NA,NA,Chester,124,101,123,133,84,86,93,80,88,97,111,126 -13UC,NA,NA,Congleton,85,65,82,80,73,66,69,67,76,64,77,116 -13UD,NA,NA,Crewe and Nantwich,118,89,109,102,72,70,96,81,107,81,74,126 -13UE,NA,NA,Ellesmere Port & Neston,84,74,80,86,66,50,70,53,58,57,67,88 -13UG,NA,NA,Macclesfield,195,146,103,147,148,110,100,107,122,115,126,162 -13UH,NA,NA,Vale Royal,124,89,83,117,93,81,120,78,110,89,103,133 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -16,NA,Cumbria,NA,532,438,463,532,457,424,408,375,413,477,429,560 -16UB,NA,NA,Allerdale,112,81,80,104,97,84,88,70,79,101,80,112 -16UC,NA,NA,Barrow-in-Furness,72,54,61,75,59,69,57,52,59,73,64,69 -16UD,NA,NA,Carlisle,138,95,101,100,101,85,65,81,78,89,97,129 -16UE,NA,NA,Copeland,60,66,69,69,54,68,54,54,60,57,58,77 -16UF,NA,NA,Eden,51,53,48,52,28,40,41,50,48,49,31,51 -16UG,NA,NA,South Lakeland,99,89,104,132,118,78,103,68,89,108,99,122 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2A,NA,Greater Manchester (Met County),NA,2540,2124,2048,2252,1819,1834,2049,1796,1966,1927,1984,2635 -00BL,NA,NA,Bolton,221,230,201,232,185,213,221,215,174,181,202,297 -00BM,NA,NA,Bury,215,164,141,152,143,107,147,139,136,151,145,178 -00BN,NA,NA,Manchester,399,315,347,374,288,278,366,287,316,284,289,387 -00BP,NA,NA,Oldham,227,177,150,203,161,180,191,144,154,183,176,249 -00BQ,NA,NA,Rochdale,216,178,149,170,158,137,149,126,168,143,166,200 -00BR,NA,NA,Salford,245,201,219,213,186,188,196,173,217,206,180,262 -00BS,NA,NA,Stockport,288,230,261,247,192,193,209,199,235,206,214,294 -00BT,NA,NA,Tameside,228,187,171,209,152,170,211,173,170,175,209,240 -00BU,NA,NA,Trafford,199,173,136,180,138,132,144,124,162,165,157,212 -00BW,NA,NA,Wigan,302,269,273,272,216,236,215,216,234,233,246,316 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -30,NA,Lancashire,NA,1231,1028,1025,1116,894,920,968,830,941,1037,965,1351 -30UD,NA,NA,Burnley,93,92,63,92,66,59,60,80,56,96,83,104 -30UE,NA,NA,Chorley,116,90,87,108,72,83,82,64,94,68,72,113 -30UF,NA,NA,Fylde,101,80,89,87,72,69,87,61,96,78,83,88 -30UG,NA,NA,Hyndburn,79,77,81,92,64,72,76,50,70,81,84,84 -30UH,NA,NA,Lancaster,167,138,123,143,113,127,125,98,96,133,126,171 -30UJ,NA,NA,Pendle,82,67,71,74,62,50,55,58,59,77,63,100 -30UK,NA,NA,Preston,119,106,102,121,97,88,102,99,116,110,112,175 -30UL,NA,NA,Ribble Valley,35,33,42,50,35,41,36,41,53,34,44,45 -30UM,NA,NA,Rossendale,68,44,60,55,53,61,71,46,47,63,54,65 -30UN,NA,NA,South Ribble,102,77,95,88,77,58,80,66,71,88,74,106 -30UP,NA,NA,West Lancashire,126,105,89,110,79,90,94,73,76,84,76,139 -30UQ,NA,NA,Wyre,143,119,123,96,104,122,100,94,107,125,94,161 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2B,NA,Merseyside (Met County),NA,1496,1255,1230,1313,1165,1130,1204,962,1106,1218,1110,1613 -00BX,NA,NA,Knowsley,145,101,139,131,116,112,147,98,109,110,112,161 -00BY,NA,NA,Liverpool,452,398,379,410,370,365,375,296,341,367,356,483 -00CA,NA,NA,Sefton,322,297,257,294,255,255,229,208,248,271,242,382 -00BZ,NA,NA,St. Helens,185,163,156,148,141,140,164,110,136,144,132,223 -00CB,NA,NA,Wirral,392,296,299,330,283,258,289,250,272,326,268,364 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -D,YORKSHIRE AND THE HUMBER,NA,NA,5119,4160,4207,4512,3984,3874,3971,3441,3830,4141,3908,5392 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00FB,NA,East Riding of Yorkshire UA,NA,368,257,296,342,297,286,268,240,266,285,256,388 -00FA,NA,"Kingston upon Hull, City of UA",NA,253,220,205,220,186,199,163,174,186,186,200,261 -00FC,NA,North East Lincolnshire UA,NA,172,132,136,149,161,140,126,135,122,126,147,178 -00FD,NA,North Lincolnshire UA,NA,167,157,130,144,122,153,155,97,119,129,136,161 -00FF,NA,York UA,NA,191,154,126,159,153,130,140,95,155,151,118,171 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -36,NA,North Yorkshire,NA,576,506,501,548,466,458,526,433,462,495,464,659 -36UB,NA,NA,Craven,67,52,53,55,41,39,52,45,41,48,49,79 -36UC,NA,NA,Hambleton,69,59,55,78,60,75,74,63,44,59,70,83 -36UD,NA,NA,Harrogate,141,133,129,160,133,121,134,129,125,123,122,174 -36UE,NA,NA,Richmondshire,50,46,37,38,23,33,41,36,37,37,35,61 -36UF,NA,NA,Ryedale,53,35,54,48,46,42,40,34,39,54,49,64 -36UG,NA,NA,Scarborough,137,111,117,115,113,102,126,83,117,112,92,125 -36UH,NA,NA,Selby,59,70,56,54,50,46,59,43,59,62,47,73 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2C,NA,South Yorkshire (Met County),NA,1386,1096,1132,1155,1030,1009,1027,883,934,1080,947,1423 -00CC,NA,NA,Barnsley,249,197,189,204,191,184,201,152,174,212,172,241 -00CE,NA,NA,Doncaster,321,242,276,291,238,228,217,199,202,226,193,352 -00CF,NA,NA,Rotherham,301,222,227,240,214,210,183,182,184,222,215,278 -00CG,NA,NA,Sheffield,515,435,440,420,387,387,426,350,374,420,367,552 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2F,NA,West Yorkshire (Met County),NA,2006,1638,1681,1795,1569,1499,1566,1384,1586,1689,1640,2151 -00CX,NA,NA,Bradford,449,378,404,405,363,309,356,303,354,369,357,482 -00CY,NA,NA,Calderdale,184,148,153,156,150,130,123,131,156,178,152,213 -00CZ,NA,NA,Kirklees,368,308,298,353,277,286,321,275,308,339,286,413 -00DA,NA,NA,Leeds,645,548,540,613,511,521,491,446,508,531,583,692 -00DB,NA,NA,Wakefield,360,256,286,268,268,253,275,229,260,272,262,351 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E,EAST MIDLANDS,NA,NA,4197,3471,3454,3888,3224,3194,3326,2926,3178,3527,3324,4587 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00FK,NA,Derby UA,NA,209,182,182,208,168,189,171,164,176,199,192,248 -00FN,NA,Leicester UA,NA,249,194,221,224,194,211,209,194,199,205,193,267 -00FY,NA,Nottingham UA,NA,243,191,229,215,191,200,207,159,143,193,200,288 -00FP,NA,Rutland UA,NA,30,27,31,31,25,30,30,24,35,28,25,31 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -17,NA,Derbyshire,NA,773,701,628,741,547,531,623,550,586,627,648,864 -17UB,NA,NA,Amber Valley,126,121,89,123,71,88,98,86,110,104,100,142 -17UC,NA,NA,Bolsover,86,80,90,87,65,54,72,65,74,57,61,99 -17UD,NA,NA,Chesterfield,114,101,84,107,90,67,96,63,81,95,90,122 -17UF,NA,NA,Derbyshire Dales,71,70,50,69,50,51,56,55,42,64,61,88 -17UG,NA,NA,Erewash,97,85,92,105,76,87,75,71,76,76,91,124 -17UH,NA,NA,High Peak,87,89,71,65,50,61,75,62,66,64,80,90 -17UJ,NA,NA,North East Derbyshire,109,89,99,118,88,74,79,89,69,88,87,110 -17UK,NA,NA,South Derbyshire,83,66,53,67,57,49,72,59,68,79,78,89 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -31,NA,Leicestershire,NA,549,465,437,531,435,454,437,377,413,494,451,616 -31UB,NA,NA,Blaby,85,66,59,71,60,51,58,51,54,55,63,98 -31UC,NA,NA,Charnwood,128,121,115,131,107,112,106,82,108,133,109,130 -31UD,NA,NA,Harborough,58,55,49,68,48,54,57,46,59,48,67,71 -31UE,NA,NA,Hinckley and Bosworth,99,71,68,84,76,70,82,65,68,79,73,95 -31UG,NA,NA,Melton,57,42,44,53,27,38,32,27,39,50,31,44 -31UH,NA,NA,North West Leicestershire,67,63,64,77,76,75,74,66,49,75,70,111 -31UJ,NA,NA,Oadby and Wigston,55,47,38,47,41,54,28,40,36,54,38,67 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -32,NA,Lincolnshire,NA,797,604,622,679,589,592,589,543,580,642,584,850 -32UB,NA,NA,Boston,70,46,53,61,53,46,64,42,41,56,58,95 -32UC,NA,NA,East Lindsey,185,144,133,150,140,154,134,136,152,140,125,178 -32UD,NA,NA,Lincoln,96,75,79,72,57,68,63,56,73,79,61,97 -32UE,NA,NA,North Kesteven,101,88,91,98,81,79,86,96,82,76,92,135 -32UF,NA,NA,South Holland,141,78,82,92,74,78,77,68,83,95,81,110 -32UG,NA,NA,South Kesteven,130,102,106,122,115,90,86,91,92,102,112,135 -32UH,NA,NA,West Lindsey,74,71,78,84,69,77,79,54,57,94,55,100 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -34,NA,Northamptonshire,NA,545,448,474,534,461,426,484,405,439,504,430,591 -34UB,NA,NA,Corby,48,51,33,53,44,47,45,33,48,35,38,45 -34UC,NA,NA,Daventry,62,53,45,46,55,41,53,55,43,65,48,68 -34UD,NA,NA,East Northamptonshire,71,54,64,80,59,71,61,61,64,82,56,86 -34UE,NA,NA,Kettering,63,63,78,81,58,54,72,46,62,58,67,86 -34UF,NA,NA,Northampton,157,131,156,163,123,119,140,113,132,160,123,176 -34UG,NA,NA,South Northamptonshire,91,48,51,58,58,47,54,46,48,48,48,62 -34UH,NA,NA,Wellingborough,53,48,47,53,64,47,59,51,42,56,50,68 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -37,NA,Nottinghamshire,NA,802,659,630,725,614,561,576,510,607,635,601,832 -37UB,NA,NA,Ashfield,128,113,103,110,83,77,97,81,87,89,86,134 -37UC,NA,NA,Bassetlaw,126,90,95,114,93,92,83,75,94,99,91,141 -37UD,NA,NA,Broxtowe,108,90,74,92,88,65,79,70,80,82,85,121 -37UE,NA,NA,Gedling,108,85,98,106,86,80,83,67,94,106,87,117 -37UF,NA,NA,Mansfield,105,103,85,99,81,83,71,73,92,73,83,92 -37UG,NA,NA,Newark and Sherwood,134,91,100,110,114,95,92,87,80,94,80,121 -37UJ,NA,NA,Rushcliffe,93,87,75,94,69,69,71,57,80,92,89,106 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -F,NA,WEST MIDLANDS,NA,5518,4364,4246,4785,3928,3869,4189,3608,3947,4418,3885,5561 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00GA,NA,"Herefordshire, County of UA",NA,184,153,186,178,142,122,163,144,159,164,154,234 -00GL,NA,Stoke-on-Trent UA,NA,285,236,214,255,193,169,196,192,193,225,189,289 -00GF,NA,Telford and Wrekin UA,NA,140,100,100,109,113,103,101,93,96,81,94,149 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -39,NA,Shropshire,NA,344,249,263,305,239,225,235,243,208,250,211,335 -39UB,NA,NA,Bridgnorth,54,41,39,51,40,40,43,50,30,58,38,70 -39UC,NA,NA,North Shropshire,77,54,53,61,51,40,43,54,46,43,38,60 -39UD,NA,NA,Oswestry,46,36,33,38,32,38,32,30,32,34,32,40 -39UE,NA,NA,Shrewsbury and Atcham,108,81,92,96,71,66,72,70,61,75,76,104 -39UF,NA,NA,South Shropshire,59,37,46,59,45,41,45,39,39,40,27,61 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -41,NA,Staffordshire,NA,880,712,674,718,611,640,677,552,606,697,597,868 -41UB,NA,NA,Cannock Chase,106,71,83,87,71,81,69,55,76,87,77,72 -41UC,NA,NA,East Staffordshire,111,90,63,78,77,69,83,86,68,98,82,117 -41UD,NA,NA,Lichfield,102,83,84,95,76,82,97,69,74,100,59,116 -41UE,NA,NA,Newcastle-under-Lyme,141,107,107,93,89,89,106,87,104,96,88,149 -41UF,NA,NA,South Staffordshire,111,100,80,108,83,98,90,70,66,101,89,99 -41UG,NA,NA,Stafford,140,132,126,110,90,94,94,73,101,82,74,156 -41UH,NA,NA,Staffordshire Moorlands,115,81,93,102,88,88,91,68,70,87,71,99 -41UK,NA,NA,Tamworth,54,48,38,45,37,39,47,44,47,46,57,60 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -44,NA,Warwickshire,NA,535,447,381,464,387,366,410,359,372,436,361,493 -44UB,NA,NA,North Warwickshire,66,47,63,72,45,48,53,41,42,50,38,57 -44UC,NA,NA,Nuneaton and Bedworth,127,106,83,106,92,81,82,80,87,90,87,108 -44UD,NA,NA,Rugby,91,74,59,65,73,54,75,65,68,91,69,92 -44UE,NA,NA,Stratford-on-Avon,129,107,85,110,74,82,105,92,89,95,93,115 -44UF,NA,NA,Warwick,122,113,91,111,103,101,95,81,86,110,74,121 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2E,NA,West Midlands (Met County),NA,2571,1991,1963,2265,1807,1853,2019,1645,1895,2110,1863,2562 -00CN,NA,NA,Birmingham,922,732,691,772,629,674,695,564,668,750,654,891 -00CQ,NA,NA,Coventry,308,196,228,258,228,217,253,201,229,249,219,286 -00CR,NA,NA,Dudley,340,246,260,262,221,210,239,205,241,272,231,331 -00CS,NA,NA,Sandwell,299,251,239,296,223,203,267,198,226,246,246,324 -00CT,NA,NA,Solihull,194,157,158,180,136,151,140,122,143,140,148,181 -00CU,NA,NA,Walsall,256,205,203,245,196,198,219,187,195,223,185,289 -00CW,NA,NA,Wolverhampton,252,204,184,252,174,200,206,168,193,230,180,260 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -47,NA,Worcestershire,NA,579,476,465,491,436,391,388,380,418,455,416,631 -47UB,NA,NA,Bromsgrove,111,76,85,87,80,68,80,74,64,89,78,120 -47UC,NA,NA,Malvern Hills,91,86,78,85,65,65,55,66,65,67,71,102 -47UD,NA,NA,Redditch,67,57,54,52,47,50,51,54,48,47,50,79 -47UE,NA,NA,Worcester,90,66,63,71,71,56,68,53,77,75,66,96 -47UF,NA,NA,Wychavon,128,89,96,110,97,79,65,74,92,91,83,136 -47UG,NA,NA,Wyre Forest,92,102,89,86,76,73,69,59,72,86,68,98 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -G,NA,EAST,NA,5330,4450,4421,4832,4141,3842,4077,3570,4064,4501,4038,5423 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00KA,NA,Luton UA,NA,132,120,118,136,122,107,104,99,85,135,124,165 -00JA,NA,Peterborough UA,NA,125,116,116,122,123,93,115,87,110,143,111,157 -00KF,NA,Southend-on-Sea UA,NA,178,143,162,204,146,137,155,145,158,152,128,185 -00KG,NA,Thurrock UA,NA,132,94,103,104,100,86,87,73,87,107,90,121 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -09,NA,Bedfordshire,NA,333,258,271,307,246,234,234,235,267,289,259,384 -09UC,NA,NA,Mid Bedfordshire,100,73,78,81,79,69,68,64,74,81,67,126 -09UD,NA,NA,Bedford,124,101,112,142,80,91,91,108,106,123,121,145 -09UE,NA,NA,South Bedfordshire,109,84,81,84,87,74,75,63,87,85,71,113 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -12,NA,Cambridgeshire,NA,452,377,405,407,374,335,387,361,423,423,403,517 -12UB,NA,NA,Cambridge,90,65,66,92,61,53,63,70,65,75,71,100 -12UC,NA,NA,East Cambridgeshire,52,59,52,67,57,44,49,60,65,57,53,57 -12UD,NA,NA,Fenland,101,75,99,89,73,81,79,74,88,91,100,102 -12UE,NA,NA,Huntingdonshire,105,102,99,83,109,82,110,82,119,104,83,150 -12UG,NA,NA,South Cambridgeshire,104,76,89,76,74,75,86,75,86,96,96,108 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -22,NA,Essex,NA,1286,1130,1115,1196,1042,1006,1032,841,1011,1114,991,1310 -22UB,NA,NA,Basildon,163,133,135,126,144,107,121,85,128,133,120,108 -22UC,NA,NA,Braintree,123,118,108,116,110,100,100,83,114,99,105,135 -22UD,NA,NA,Brentwood,73,83,73,62,61,53,57,46,58,41,47,72 -22UE,NA,NA,Castle Point,88,82,74,77,82,75,59,65,77,86,81,89 -22UF,NA,NA,Chelmsford,113,107,124,103,84,92,96,76,93,102,81,140 -22UG,NA,NA,Colchester,133,112,107,133,107,124,111,83,92,113,108,141 -22UH,NA,NA,Epping Forest,123,98,110,109,85,110,94,89,96,112,84,148 -22UJ,NA,NA,Harlow,58,62,52,56,53,42,49,44,52,58,55,53 -22UK,NA,NA,Maldon,65,57,63,73,50,43,43,37,33,48,45,56 -22UL,NA,NA,Rochford,75,59,60,70,55,66,75,40,70,75,56,93 -22UN,NA,NA,Tendring,212,151,165,213,154,149,163,157,157,201,159,218 -22UQ,NA,NA,Uttlesford,60,68,44,58,57,45,64,36,41,46,50,57 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -26,NA,Hertfordshire,NA,959,767,753,879,708,643,720,636,699,742,685,957 -26UB,NA,NA,Broxbourne,65,59,60,62,59,51,53,42,58,52,47,66 -26UC,NA,NA,Dacorum,122,92,92,113,99,75,80,88,102,93,89,122 -26UD,NA,NA,East Hertfordshire,100,80,93,101,91,74,78,78,90,87,77,117 -26UE,NA,NA,Hertsmere,116,79,79,79,74,53,77,74,72,74,72,101 -26UF,NA,NA,North Hertfordshire,139,114,124,121,99,102,97,86,82,95,86,139 -26UG,NA,NA,St Albans,100,83,74,93,80,80,100,72,73,102,85,110 -26UH,NA,NA,Stevenage,77,51,52,77,43,43,39,43,49,55,47,67 -26UJ,NA,NA,Three Rivers,71,70,60,88,59,51,54,54,53,69,49,69 -26UK,NA,NA,Watford,64,65,64,55,49,45,63,41,56,46,47,70 -26UL,NA,NA,Welwyn Hatfield,105,74,55,90,55,69,79,58,64,69,86,96 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -33,NA,Norfolk,NA,1010,819,775,836,689,684,689,605,674,795,712,913 -33UB,NA,NA,Breckland,156,123,120,118,119,99,103,92,101,129,117,127 -33UC,NA,NA,Broadland,116,103,141,129,102,108,89,82,108,111,119,146 -33UD,NA,NA,Great Yarmouth,140,106,85,106,83,82,84,78,76,112,76,114 -33UE,NA,NA,King's Lynn and West Norfolk,171,147,140,156,112,102,127,104,105,134,143,162 -33UF,NA,NA,North Norfolk,149,127,108,134,99,98,120,90,109,110,96,131 -33UG,NA,NA,Norwich,138,90,104,101,83,100,92,81,90,97,77,108 -33UH,NA,NA,South Norfolk,140,123,77,92,91,95,74,78,85,102,84,125 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -42,NA,Suffolk,NA,723,626,603,641,591,517,554,488,550,601,535,714 -42UB,NA,NA,Babergh,89,78,79,77,80,67,69,55,74,93,65,89 -42UC,NA,NA,Forest Heath,47,47,48,43,34,36,39,41,34,40,33,45 -42UD,NA,NA,Ipswich,128,91,91,98,96,86,99,87,70,91,88,120 -42UE,NA,NA,Mid Suffolk,87,76,82,89,76,64,78,66,59,74,66,95 -42UF,NA,NA,St Edmundsbury,95,70,71,87,68,61,67,62,74,82,74,96 -42UG,NA,NA,Suffolk Coastal,126,131,113,113,116,86,105,96,123,121,99,135 -42UH,NA,NA,Waveney,151,133,119,134,121,117,97,81,116,100,110,134 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -H,NA,LONDON,NA,5168,4320,4282,4587,3907,3752,3919,3441,3736,4088,4018,5258 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -1B,NA,Inner London,NA,1750,1426,1425,1504,1364,1235,1374,1176,1236,1314,1350,1677 -00AG,NA,NA,Camden,131,91,109,124,90,93,99,98,78,90,97,95 -00AA,NA,NA,City of London,3,1,2,3,6,3,3,2,3,4,4,3 -00AM,NA,NA,Hackney,103,95,97,92,87,89,84,68,90,99,106,118 -00AN,NA,NA,Hammersmith and Fulham,100,100,97,87,82,57,81,54,57,69,83,121 -00AP,NA,NA,Haringey,127,109,95,108,86,85,103,71,102,95,95,105 -00AU,NA,NA,Islington,119,92,91,104,83,101,99,69,85,93,76,113 -00AW,NA,NA,Kensington and Chelsea,92,85,70,73,86,57,63,69,57,62,63,75 -00AY,NA,NA,Lambeth,170,141,120,135,139,102,146,117,114,132,125,162 -00AZ,NA,NA,Lewisham,180,139,159,150,155,146,135,128,140,151,150,185 -00BB,NA,NA,Newham,166,137,138,149,93,103,118,89,100,78,121,145 -00BE,NA,NA,Southwark,172,117,124,151,122,97,127,128,134,127,120,145 -00BG,NA,NA,Tower Hamlets,102,91,94,102,99,81,93,84,96,92,83,127 -00BJ,NA,NA,Wandsworth,184,146,143,149,146,126,120,133,103,146,145,187 -00BK,NA,NA,Westminster,101,82,86,77,90,95,103,66,77,76,82,96 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -1C,NA,Outer London,NA,3418,2894,2857,3083,2543,2517,2545,2265,2500,2774,2668,3581 -00AB,NA,NA,Barking and Dagenham,123,131,91,134,111,122,96,101,97,120,111,184 -00AC,NA,NA,Barnet,245,201,194,241,171,180,172,166,179,207,210,251 -00AD,NA,NA,Bexley,214,163,154,157,134,131,141,124,176,156,165,215 -00AE,NA,NA,Brent,143,140,143,130,117,131,137,116,126,118,125,162 -00AF,NA,NA,Bromley,272,221,231,263,195,192,219,162,194,230,211,274 -00AH,NA,NA,Croydon,245,189,218,249,189,202,178,158,177,223,195,239 -00AJ,NA,NA,Ealing,203,169,166,165,150,156,157,137,150,155,151,177 -00AK,NA,NA,Enfield,209,158,210,191,169,146,170,136,172,183,180,216 -00AL,NA,NA,Greenwich,197,155,148,160,135,122,142,126,125,129,142,174 -00AQ,NA,NA,Harrow,157,120,118,139,96,110,107,106,111,117,113,156 -00AR,NA,NA,Havering,216,196,187,192,163,173,158,161,134,203,167,270 -00AS,NA,NA,Hillingdon,189,167,148,181,153,133,156,131,132,147,147,197 -00AT,NA,NA,Hounslow,134,137,110,127,107,113,122,90,101,143,100,155 -00AX,NA,NA,Kingston upon Thames,117,84,109,87,98,75,79,69,77,74,80,127 -00BA,NA,NA,Merton,130,114,102,120,108,87,85,85,99,98,109,140 -00BC,NA,NA,Redbridge,199,189,145,157,132,132,121,117,147,155,145,206 -00BD,NA,NA,Richmond upon Thames,135,103,109,112,82,88,87,90,79,92,86,118 -00BF,NA,NA,Sutton,142,133,147,136,105,118,101,96,105,114,104,169 -00BH,NA,NA,Waltham Forest,148,124,127,142,128,106,117,94,119,110,127,151 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -J,NA,SOUTH EAST,NA,7832,6294,6173,6871,5897,5685,5864,5268,5903,6385,5847,7898 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00MA,NA,Bracknell Forest UA,NA,64,54,56,71,42,50,59,55,70,48,59,73 -00ML,NA,Brighton and Hove UA,NA,259,190,171,208,171,162,174,135,172,188,145,231 -00MW,NA,Isle of Wight UA,NA,187,137,137,145,132,145,143,109,106,166,150,187 -00LC,NA,Medway UA,NA,212,184,151,202,160,138,170,165,154,184,165,227 -00MG,NA,Milton Keynes UA,NA,158,157,130,143,125,107,113,102,115,137,133,166 -00MR,NA,Portsmouth UA,NA,185,145,145,157,114,125,122,133,112,112,136,189 -00MC,NA,Reading UA,NA,136,81,98,105,90,73,77,70,89,100,65,123 -00MD,NA,Slough UA,NA,72,78,69,76,51,61,60,67,62,53,66,75 -00MS,NA,Southampton UA,NA,183,179,148,184,171,141,151,135,167,158,151,195 -00MB,NA,West Berkshire UA,NA,99,88,89,105,67,89,90,89,81,107,100,106 -00ME,NA,Windsor and Maidenhead UA,NA,109,93,100,95,99,97,101,94,99,98,99,126 -00MF,NA,Wokingham UA,NA,116,70,91,80,75,79,69,76,86,95,81,99 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -11,NA,Buckinghamshire,NA,371,333,342,341,294,302,298,247,294,307,289,383 -11UB,NA,NA,Aylesbury Vale,122,102,103,125,118,97,96,88,108,85,111,141 -11UC,NA,NA,Chiltern,81,60,72,75,48,71,58,49,60,56,49,69 -11UE,NA,NA,South Bucks,54,52,65,39,45,45,52,33,50,49,37,62 -11UF,NA,NA,Wycombe,114,119,102,102,83,89,92,77,76,117,92,111 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -21,NA,East Sussex,NA,638,519,498,558,516,433,496,436,489,535,479,649 -21UC,NA,NA,Eastbourne,129,111,104,106,98,94,99,92,87,103,87,143 -21UD,NA,NA,Hastings,105,84,67,83,79,77,77,64,77,85,70,88 -21UF,NA,NA,Lewes,125,97,86,99,87,64,82,69,75,75,93,121 -21UG,NA,NA,Rother,126,89,104,117,117,97,98,98,115,126,99,141 -21UH,NA,NA,Wealden,153,138,137,153,135,101,140,113,135,146,130,156 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -24,NA,Hampshire,NA,1194,983,979,1035,916,836,856,808,817,1017,832,1298 -24UB,NA,NA,Basingstoke and Deane,124,102,94,102,85,78,76,85,86,101,84,130 -24UC,NA,NA,East Hampshire,122,79,95,92,97,81,80,91,74,99,78,111 -24UD,NA,NA,Eastleigh,136,88,97,91,97,73,61,56,65,89,83,111 -24UE,NA,NA,Fareham,112,70,77,96,71,76,82,65,77,97,67,121 -24UF,NA,NA,Gosport,61,64,65,55,58,49,60,52,37,62,64,79 -24UG,NA,NA,Hart,63,44,46,58,45,43,44,31,36,50,35,59 -24UH,NA,NA,Havant,125,117,110,121,81,82,96,86,85,105,89,136 -24UJ,NA,NA,New Forest,182,181,181,197,157,157,152,136,172,183,133,247 -24UL,NA,NA,Rushmoor,65,56,48,56,61,49,48,45,52,53,49,79 -24UN,NA,NA,Test Valley,99,82,79,82,77,75,71,83,63,90,67,102 -24UP,NA,NA,Winchester,105,100,87,85,87,73,86,78,70,88,83,123 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -29,NA,Kent,NA,1443,1130,1025,1336,1028,1074,1041,905,1091,1108,1052,1337 -29UB,NA,NA,Ashford,92,80,79,89,69,75,77,56,72,59,75,81 -29UC,NA,NA,Canterbury,167,152,114,147,99,131,103,97,120,155,115,162 -29UD,NA,NA,Dartford,83,66,61,84,54,54,56,52,74,55,73,77 -29UE,NA,NA,Dover,117,97,87,115,90,95,104,74,100,119,102,106 -29UG,NA,NA,Gravesham,81,71,67,91,59,85,67,52,80,67,55,81 -29UH,NA,NA,Maidstone,131,109,99,119,87,99,108,87,108,114,110,140 -29UK,NA,NA,Sevenoaks,123,78,90,97,107,78,66,66,94,70,80,90 -29UL,NA,NA,Shepway,139,89,82,107,91,90,89,81,82,77,74,113 -29UM,NA,NA,Swale,118,99,85,128,103,90,102,89,91,95,88,122 -29UN,NA,NA,Thanet,198,140,118,175,122,126,134,124,122,142,139,163 -29UP,NA,NA,Tonbridge and Malling,95,69,81,91,72,73,63,64,74,77,62,110 -29UQ,NA,NA,Tunbridge Wells,99,80,62,93,75,78,72,63,74,78,79,92 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -38,NA,Oxfordshire,NA,463,396,428,464,401,399,431,368,413,409,400,533 -38UB,NA,NA,Cherwell,97,90,81,103,102,72,96,93,91,89,84,118 -38UC,NA,NA,Oxford,85,85,79,102,77,76,89,63,96,75,68,84 -38UD,NA,NA,South Oxfordshire,99,83,90,89,81,95,79,65,91,92,102,125 -38UE,NA,NA,Vale of White Horse,82,70,89,90,72,75,78,74,59,76,73,99 -38UF,NA,NA,West Oxfordshire,100,68,89,80,69,81,89,73,76,77,73,107 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -43,NA,Surrey,NA,1036,790,784,790,697,707,706,635,770,788,743,1018 -43UB,NA,NA,Elmbridge,113,90,109,95,72,69,91,79,72,104,82,134 -43UC,NA,NA,Epsom and Ewell,54,33,43,41,46,40,44,31,47,50,40,62 -43UD,NA,NA,Guildford,114,99,83,72,68,75,87,55,76,83,79,104 -43UE,NA,NA,Mole Valley,85,57,69,60,62,70,49,66,70,54,77,89 -43UF,NA,NA,Reigate and Banstead,126,120,95,119,114,78,82,74,98,118,106,143 -43UG,NA,NA,Runnymede,78,56,59,52,45,53,45,53,67,53,60,73 -43UH,NA,NA,Spelthorne,98,63,63,70,53,56,59,45,64,52,72,77 -43UJ,NA,NA,Surrey Heath,74,43,61,62,44,63,40,43,51,52,54,72 -43UK,NA,NA,Tandridge,88,74,74,56,53,48,58,58,64,66,50,90 -43UL,NA,NA,Waverley,111,92,82,106,75,85,91,86,98,101,69,103 -43UM,NA,NA,Woking,95,63,46,57,65,70,60,45,63,55,54,71 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -45,NA,West Sussex,NA,907,687,732,776,748,667,707,639,716,775,702,883 -45UB,NA,NA,Adur,69,61,60,74,72,64,68,45,46,56,58,83 -45UC,NA,NA,Arun,201,153,185,178,182,149,153,147,170,190,180,205 -45UD,NA,NA,Chichester,159,119,103,110,118,98,102,105,134,116,99,138 -45UE,NA,NA,Crawley,88,60,59,60,51,60,59,54,70,80,51,68 -45UF,NA,NA,Horsham,114,84,117,112,82,88,94,94,92,118,97,123 -45UG,NA,NA,Mid Sussex,113,95,90,105,103,87,111,98,105,114,108,124 -45UH,NA,NA,Worthing,163,115,118,137,140,121,120,96,99,101,109,142 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -K,NA,SOUTH WEST,NA,5603,4332,4209,4799,4131,3940,4229,3711,4325,4406,4198,5519 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00HA,NA,Bath and North East Somerset UA,NA,176,156,143,138,104,111,136,93,141,127,123,182 -00HN,NA,Bournemouth UA,NA,189,187,165,196,151,129,170,124,179,178,151,204 -00HB,NA,"Bristol, City of UA",NA,398,280,263,334,275,261,276,237,289,293,283,355 -00HC,NA,North Somerset UA,NA,246,167,191,194,149,167,177,146,170,208,157,233 -00HG,NA,Plymouth UA,NA,257,168,193,194,196,158,205,137,203,187,203,218 -00HP,NA,Poole UA,NA,164,135,133,176,124,127,120,118,116,133,137,206 -00HD,NA,South Gloucestershire UA,NA,211,169,177,153,157,144,153,135,184,165,150,193 -00HX,NA,Swindon UA,NA,167,113,130,145,112,130,126,114,125,122,100,148 -00HH,NA,Torbay UA,NA,161,173,124,150,131,117,135,139,142,142,161,178 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -15,NA,Cornwall and Isles of Scilly,NA,621,453,468,533,463,461,460,427,487,498,484,575 -15UB,NA,NA,Caradon,84,81,83,89,75,65,79,62,82,79,61,90 -15UC,NA,NA,Carrick,105,61,77,97,62,79,85,82,87,96,81,104 -15UD,NA,NA,Kerrier,109,81,85,101,75,84,79,70,85,82,93,97 -15UE,NA,NA,North Cornwall,112,79,72,86,73,75,69,70,75,69,88,84 -15UF,NA,NA,Penwith,84,64,73,70,60,66,59,53,72,74,67,82 -15UG,NA,NA,Restormel,127,85,78,89,117,89,88,89,86,98,94,116 -15UH,NA,NA,Isles of Scilly,0,2,0,1,1,3,1,1,0,0,0,2 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -18,NA,Devon,NA,872,646,625,748,687,618,647,583,669,724,707,807 -18UB,NA,NA,East Devon,182,132,148,150,148,145,143,121,141,151,152,170 -18UC,NA,NA,Exeter,113,81,76,85,84,79,80,80,87,96,91,93 -18UD,NA,NA,Mid Devon,70,57,54,70,52,54,58,57,75,60,60,77 -18UE,NA,NA,North Devon,125,83,82,101,92,76,73,74,78,90,78,119 -18UG,NA,NA,South Hams,88,77,70,73,69,59,71,69,75,88,78,83 -18UH,NA,NA,Teignbridge,156,125,114,132,128,97,129,103,128,122,133,122 -18UK,NA,NA,Torridge,72,46,47,77,69,61,51,42,43,61,73,81 -18UL,NA,NA,West Devon,66,45,34,60,45,47,42,37,42,56,42,62 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -19,NA,Dorset,NA,494,388,355,429,372,326,373,360,390,414,359,568 -19UC,NA,NA,Christchurch,70,48,50,53,59,45,56,44,57,43,53,67 -19UD,NA,NA,East Dorset,97,89,74,94,75,77,80,72,89,103,76,115 -19UE,NA,NA,North Dorset,72,56,35,57,50,41,45,49,56,50,48,78 -19UG,NA,NA,Purbeck,36,36,38,44,37,30,42,37,39,44,38,54 -19UH,NA,NA,West Dorset,154,92,106,104,95,78,96,95,97,105,83,147 -19UJ,NA,NA,Weymouth and Portland,65,67,52,77,56,55,54,63,52,69,61,107 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -23,NA,Gloucestershire,NA,589,474,458,532,482,443,447,405,453,427,428,614 -23UB,NA,NA,Cheltenham,104,80,78,90,93,74,80,73,80,76,83,120 -23UC,NA,NA,Cotswold,93,71,94,71,67,66,75,57,61,76,72,99 -23UD,NA,NA,Forest of Dean,105,74,68,88,88,59,67,66,66,64,63,96 -23UE,NA,NA,Gloucester,101,86,67,106,81,95,81,70,72,78,74,111 -23UF,NA,NA,Stroud,103,97,92,116,95,86,87,76,117,76,89,117 -23UG,NA,NA,Tewkesbury,83,66,59,61,58,63,57,63,57,57,47,71 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -40,NA,Somerset,NA,600,444,436,486,413,423,471,395,443,470,452,593 -40UB,NA,NA,Mendip,102,73,84,89,84,71,101,78,81,93,88,105 -40UC,NA,NA,Sedgemoor,127,123,82,107,67,91,109,87,98,110,111,140 -40UD,NA,NA,South Somerset,175,122,132,142,136,140,121,105,129,130,122,192 -40UE,NA,NA,Taunton Deane,136,84,104,107,96,87,98,92,101,107,95,109 -40UF,NA,NA,West Somerset,60,42,34,41,30,34,42,33,34,30,36,47 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -46,NA,Wiltshire,NA,458,379,348,391,315,325,333,298,334,318,303,445 -46UB,NA,NA,Kennet,85,53,64,67,55,63,55,55,58,50,66,76 -46UC,NA,NA,North Wiltshire,128,99,95,92,84,70,95,83,78,81,61,124 -46UD,NA,NA,Salisbury,117,121,84,110,91,87,89,76,104,90,90,122 -46UF,NA,NA,West Wiltshire,128,106,105,122,85,105,94,84,94,97,86,123 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -924,WALES,NA,NA,3151,2634,2785,2874,2497,2343,2593,2196,2466,2664,2481,3382 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00NA,NA,Isle of Anglesey / Ynys Mon,NA,77,57,52,67,63,64,81,45,72,59,50,94 -00NC,NA,Gwynedd / Gwynedd,NA,128,109,108,143,117,96,97,78,143,117,106,129 -00NE,NA,Conwy / Conwy,NA,136,139,128,139,101,114,125,103,126,138,128,158 -00NG,NA,Denbighshire / Sir Ddinbych,NA,143,114,101,97,79,76,96,84,89,123,89,115 -00NJ,NA,Flintshire / Sir y Fflint,NA,144,128,129,111,95,102,123,93,118,119,108,157 -00NL,NA,Wrexham / Wrecsam,NA,142,112,98,115,104,97,120,87,91,129,113,159 -00NN,NA,Powys / Powys,NA,148,104,131,128,116,104,118,107,104,94,103,174 -00NQ,NA,Ceredigion / Ceredigion,NA,85,57,64,68,51,56,77,52,53,50,57,68 -00NS,NA,Pembrokeshire / Sir Benfro,NA,143,132,129,106,115,86,108,109,93,110,104,162 -00NU,NA,Carmarthenshire / Sir Gaerfyrddin,NA,222,163,178,192,166,164,178,153,173,190,164,243 -00NX,NA,Swansea / Abertawe,NA,219,195,226,240,200,184,172,183,186,212,187,245 -00NZ,NA,Neath Port Talbot / Castell-nedd Port Talbot,NA,139,125,123,133,122,141,143,124,132,137,122,180 -00PB,NA,Bridgend / Pen-y-bont ar Ogwr,NA,149,101,148,132,108,105,104,103,104,124,130,140 -00PD,NA,The Vale of Glamorgan / Bro Morgannwg,NA,116,111,111,107,104,88,90,70,93,95,95,146 -00PT,NA,Cardiff / Caerdydd,NA,263,225,229,241,220,213,234,218,188,219,216,299 -00PF,NA,"Rhondda, Cynon, Taff / Rhondda, Cynon, Taf",NA,267,210,267,260,193,183,220,153,184,214,191,257 -00PH,NA,Merthyr Tydfil / Merthyr Tudful,NA,60,50,67,67,56,47,49,31,42,47,53,60 -00PK,NA,Caerphilly / Caerffili,NA,162,152,169,173,144,129,149,119,134,153,125,173 -00PL,NA,Blaenau Gwent / Blaenau Gwent,NA,87,86,65,63,66,73,55,57,67,71,59,88 -00PM,NA,Torfaen / Tor-faen,NA,88,89,92,81,85,60,79,57,89,87,86,106 -00PP,NA,Monmouthshire / Sir Fynwy,NA,100,78,69,73,79,57,52,64,83,64,72,102 -00PR,NA,Newport / Casnewydd,NA,133,97,101,138,113,104,123,106,102,112,123,127 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,Non-residents of E&W,NA,106,81,71,87,106,104,123,102,143,134,98,106 -Footnotes:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -1,England and Wales were recoded in July 2007.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2,This may include records where the place of usual residence is missing. All sub divisions of Total Registrations exclude these.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA diff --git a/working_files/Monthly/Monthly2008Mortality-Notes.csv b/working_files/Monthly/Monthly2008Mortality-Notes.csv deleted file mode 100644 index e69de29..0000000 diff --git a/working_files/Monthly/Monthly2008Mortality.xls b/working_files/Monthly/Monthly2008Mortality.xls deleted file mode 100644 index a78682d..0000000 Binary files a/working_files/Monthly/Monthly2008Mortality.xls and /dev/null differ diff --git a/working_files/Monthly/Monthly2009Mortality-Figures for 2009.csv b/working_files/Monthly/Monthly2009Mortality-Figures for 2009.csv deleted file mode 100644 index 2bd61b8..0000000 --- a/working_files/Monthly/Monthly2009Mortality-Figures for 2009.csv +++ /dev/null @@ -1,524 +0,0 @@ -"Monthly figures on deaths registered by area of usual residence, 2009",...2,...3,...4,...5,...6,...7,...8,...9,...10,...11,...12,...13,...14,...15,England and Wales -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Area Codes 1,NA,NA,NA,Jan-09,Feb-09,Mar-09,Apr-09,May-09,Jun-09,Jul-09,Aug-09,Sep-09,Oct-09,Nov-09,Dec-09 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,TOTAL REGISTRATIONS,NA,NA,55045,41433,42395,40270,36568,38851,37975,33606,39127,40187,40122,45769 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,ENGLAND AND WALES,NA,NA,54938,41348,42302,40209,36500,38755,37877,33516,39013,40090,40030,45669 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -921,ENGLAND,NA,NA,51385,38726,39603,37717,34193,36299,35426,31479,36570,37565,37487,42791 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -A,NORTH EAST,NA,NA,2772,2198,2241,2179,2031,2026,2037,1809,2064,2154,2075,2425 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00EJ,NA,County Durham UA 2,NA,623,449,429,448,388,412,387,377,469,437,412,483 -NA,NA,Former districts of:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -20UB,NA,NA,Chester-le-Street,65,33,46,48,37,40,53,38,52,39,44,57 -20UD,NA,NA,Derwentside,114,79,75,83,66,76,64,63,71,70,75,89 -20UE,NA,NA,Durham,91,85,60,50,55,65,57,52,74,61,53,56 -20UF,NA,NA,Easington,123,86,78,99,80,82,72,89,98,84,87,96 -20UG,NA,NA,Sedgefield,102,82,81,61,74,62,76,65,85,99,83,87 -20UH,NA,NA,Teesdale,26,21,28,36,24,17,19,24,19,20,22,20 -20UJ,NA,NA,Wear Valley,102,63,61,71,52,70,46,46,70,64,48,78 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00EH,NA,Darlington UA,NA,102,75,112,108,80,76,85,71,88,89,83,115 -00EB,NA,Hartlepool UA,NA,100,85,86,75,61,66,64,66,95,79,89,65 -00EC,NA,Middlesbrough UA,NA,147,128,130,107,105,103,116,96,105,107,93,163 -00EM,NA,Northumberland UA 3,NA,322,283,284,277,235,250,257,247,227,263,265,294 -NA,NA,Former districts of:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -35UB,NA,NA,Alnwick,39,35,25,27,27,18,22,31,30,31,27,28 -35UC,NA,NA,Berwick-upon-Tweed,38,20,30,28,28,31,32,21,21,16,23,28 -35UD,NA,NA,Blyth Valley,68,69,63,63,52,74,58,58,55,85,62,78 -35UE,NA,NA,Castle Morpeth,59,44,47,40,34,38,43,33,25,34,40,39 -35UF,NA,NA,Tynedale,61,47,59,58,45,43,50,50,48,41,47,46 -35UG,NA,NA,Wansbeck,57,68,60,61,49,46,52,54,48,56,66,75 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00EE,NA,Redcar and Cleveland UA,NA,122,139,121,100,135,97,95,88,84,110,107,134 -00EF,NA,Stockton-on-Tees UA,NA,186,127,132,138,120,146,139,119,132,121,149,170 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2D,NA,Tyne and Wear (Met County),NA,1170,912,947,926,907,876,894,745,864,948,877,1001 -00CH,NA,NA,Gateshead,213,169,176,197,162,159,166,147,143,185,175,198 -00CJ,NA,NA,Newcastle upon Tyne,265,222,231,207,204,205,201,172,184,192,216,228 -00CK,NA,NA,North Tyneside,215,187,177,161,180,159,133,137,166,163,176,182 -00CL,NA,NA,South Tyneside,179,131,125,133,129,125,136,126,131,155,103,147 -00CM,NA,NA,Sunderland,298,203,238,228,232,228,258,163,240,253,207,246 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -B,NORTH WEST,NA,NA,7327,5677,5885,5595,5094,5289,5291,4767,5348,5569,5545,6550 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00EX,NA,Blackburn with Darwen UA,NA,123,95,108,117,94,115,99,98,104,107,127,125 -00EY,NA,Blackpool UA,NA,183,142,157,148,144,143,148,121,135,131,159,192 -00EQ,NA,Cheshire East UA 4,NA,351,284,319,337,252,273,290,271,283,272,288,366 -NA,NA,Former districts of:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -13UC,NA,NA,Congleton,94,65,73,84,60,66,58,81,72,58,69,85 -13UD,NA,NA,Crewe and Nantwich,119,87,105,119,84,89,79,84,91,94,100,105 -13UG,NA,NA,Macclesfield,138,132,141,134,108,118,153,106,120,120,119,176 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00EW,NA,Cheshire West and Chester UA 5,NA,326,247,250,247,241,223,251,208,228,259,261,309 -NA,NA,Former districts of:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -13UB,NA,NA,Chester,120,92,86,89,90,83,81,68,85,98,117,125 -13UE,NA,NA,Ellesmere Port & Neston,74,61,65,58,62,53,72,60,58,76,55,68 -13UH,NA,NA,Vale Royal,132,94,99,100,89,87,98,80,85,85,89,116 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00ET,NA,Halton UA,NA,113,95,99,98,94,84,81,72,89,98,102,99 -00EU,NA,Warrington UA,NA,176,137,130,129,118,128,131,129,140,149,139,157 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -16,NA,Cumbria,NA,568,497,471,391,398,421,453,384,404,447,415,477 -16UB,NA,NA,Allerdale,106,94,87,91,78,89,76,67,84,98,99,101 -16UC,NA,NA,Barrow-in-Furness,66,52,65,58,56,64,63,45,54,54,52,57 -16UD,NA,NA,Carlisle,116,106,114,74,85,103,96,86,80,102,78,101 -16UE,NA,NA,Copeland,70,70,61,52,49,54,58,65,49,57,56,64 -16UF,NA,NA,Eden,59,50,41,34,33,29,56,40,35,38,37,48 -16UG,NA,NA,South Lakeland,151,125,103,82,97,82,104,81,102,98,93,106 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2A,NA,Greater Manchester (Met County),NA,2587,1952,2114,1978,1765,1893,1860,1697,1906,2040,1971,2262 -00BL,NA,NA,Bolton,265,217,219,200,210,196,180,187,206,235,182,248 -00BM,NA,NA,Bury,201,131,165,140,118,135,118,126,150,129,126,170 -00BN,NA,NA,Manchester,399,316,344,321,276,310,288,268,301,291,313,353 -00BP,NA,NA,Oldham,238,178,174,169,156,171,146,160,168,185,192,172 -00BQ,NA,NA,Rochdale,200,164,155,165,153,147,139,114,141,179,164,173 -00BR,NA,NA,Salford,266,185,219,185,184,184,188,159,177,196,171,213 -00BS,NA,NA,Stockport,292,211,240,227,162,188,227,216,207,236,224,271 -00BT,NA,NA,Tameside,228,173,194,185,168,185,171,155,173,169,202,206 -00BU,NA,NA,Trafford,193,144,165,167,123,140,159,113,123,169,151,187 -00BW,NA,NA,Wigan,305,233,239,219,215,237,244,199,260,251,246,269 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -30,NA,Lancashire,NA,1260,1037,1041,977,918,916,938,816,915,998,935,1135 -30UD,NA,NA,Burnley,92,84,81,72,74,82,67,54,70,84,88,97 -30UE,NA,NA,Chorley,98,79,94,72,80,69,64,62,61,84,71,103 -30UF,NA,NA,Fylde,100,75,102,100,55,75,87,64,91,71,81,94 -30UG,NA,NA,Hyndburn,86,77,67,80,57,61,64,61,73,59,71,82 -30UH,NA,NA,Lancaster,144,119,128,118,103,106,129,109,92,106,111,147 -30UJ,NA,NA,Pendle,91,83,62,63,67,88,69,63,70,64,59,74 -30UK,NA,NA,Preston,138,106,110,96,99,81,98,81,88,118,75,106 -30UL,NA,NA,Ribble Valley,68,50,50,54,51,43,43,39,41,67,47,65 -30UM,NA,NA,Rossendale,82,60,64,65,62,55,46,35,60,66,53,60 -30UN,NA,NA,South Ribble,110,89,77,70,66,78,60,63,81,93,70,89 -30UP,NA,NA,West Lancashire,104,85,93,87,98,78,91,74,84,86,100,103 -30UQ,NA,NA,Wyre,147,130,113,100,106,100,120,111,104,100,109,115 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2B,NA,Merseyside (Met County),NA,1640,1191,1196,1173,1070,1093,1040,971,1144,1068,1148,1428 -00BX,NA,NA,Knowsley,167,117,97,102,119,94,109,96,119,102,103,158 -00BY,NA,NA,Liverpool,532,312,370,326,338,321,315,309,360,334,356,432 -00CA,NA,NA,Sefton,328,282,274,270,203,244,227,216,242,221,253,310 -00BZ,NA,NA,St. Helens,210,175,162,161,123,136,130,129,161,126,146,174 -00CB,NA,NA,Wirral,403,305,293,314,287,298,259,221,262,285,290,354 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -D,YORKSHIRE AND THE HUMBER,NA,NA,5233,4128,4189,3926,3649,3839,3729,3308,3902,4049,3997,4676 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00FB,NA,East Riding of Yorkshire UA,NA,387,289,313,274,269,238,290,222,263,297,268,350 -00FA,NA,"Kingston upon Hull, City of UA",NA,272,185,243,209,187,210,175,162,178,208,175,241 -00FC,NA,North East Lincolnshire UA,NA,186,157,159,140,111,126,105,85,138,128,120,162 -00FD,NA,North Lincolnshire UA,NA,171,148,147,136,130,107,136,104,130,155,154,154 -00FF,NA,York UA,NA,198,155,141,129,134,120,106,137,144,138,127,158 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -36,NA,North Yorkshire,NA,653,472,520,458,446,443,439,382,474,511,510,615 -36UB,NA,NA,Craven,60,53,50,47,49,46,46,52,63,50,60,52 -36UC,NA,NA,Hambleton,85,75,74,69,58,64,64,57,69,69,59,77 -36UD,NA,NA,Harrogate,175,118,130,115,107,112,111,102,126,145,109,170 -36UE,NA,NA,Richmondshire,48,33,41,30,43,39,31,23,28,36,29,50 -36UF,NA,NA,Ryedale,60,33,49,40,39,33,47,36,44,59,62,46 -36UG,NA,NA,Scarborough,147,90,124,105,100,105,101,75,98,96,127,150 -36UH,NA,NA,Selby,78,70,52,52,50,44,39,37,46,56,64,70 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2C,NA,South Yorkshire (Met County),NA,1363,1071,1119,964,944,1038,982,920,995,1010,1081,1185 -00CC,NA,NA,Barnsley,226,188,198,175,175,231,169,172,213,186,191,222 -00CE,NA,NA,Doncaster,309,262,264,229,204,212,225,237,212,227,260,249 -00CF,NA,NA,Rotherham,307,211,239,169,195,200,204,191,179,205,203,243 -00CG,NA,NA,Sheffield,521,410,418,391,370,395,384,320,391,392,427,471 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2F,NA,West Yorkshire (Met County),NA,2003,1651,1547,1616,1428,1557,1496,1296,1580,1602,1562,1811 -00CX,NA,NA,Bradford,414,341,353,347,326,385,335,301,344,367,339,399 -00CY,NA,NA,Calderdale,190,175,151,163,127,167,145,123,174,152,147,178 -00CZ,NA,NA,Kirklees,389,295,273,310,309,275,290,275,298,314,268,349 -00DA,NA,NA,Leeds,663,563,526,534,448,490,467,403,515,517,553,608 -00DB,NA,NA,Wakefield,347,277,244,262,218,240,259,194,249,252,255,277 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E,EAST MIDLANDS,NA,NA,4476,3354,3520,3443,3107,3290,3083,2847,3194,3425,3340,3801 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00FK,NA,Derby UA,NA,235,200,191,166,148,172,182,156,167,171,182,191 -00FN,NA,Leicester UA,NA,234,208,212,233,202,217,164,201,185,218,203,227 -00FY,NA,Nottingham UA,NA,261,178,214,206,187,222,185,148,199,188,186,195 -00FP,NA,Rutland UA,NA,38,39,29,24,19,30,15,24,26,29,31,24 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -17,NA,Derbyshire,NA,831,587,642,609,573,606,580,540,570,592,632,700 -17UB,NA,NA,Amber Valley,147,97,101,102,96,98,98,77,100,98,95,126 -17UC,NA,NA,Bolsover,78,75,58,65,70,70,56,55,54,69,73,85 -17UD,NA,NA,Chesterfield,124,83,90,91,80,98,76,83,83,99,87,102 -17UF,NA,NA,Derbyshire Dales,87,47,65,52,64,54,58,54,66,49,69,49 -17UG,NA,NA,Erewash,117,76,82,95,75,70,90,58,69,64,96,93 -17UH,NA,NA,High Peak,95,70,94,69,55,60,63,77,69,67,72,88 -17UJ,NA,NA,North East Derbyshire,105,74,86,80,79,87,79,74,68,77,80,91 -17UK,NA,NA,South Derbyshire,78,65,66,55,54,69,60,62,61,69,60,66 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -31,NA,Leicestershire,NA,606,438,436,456,395,399,407,382,427,458,452,559 -31UB,NA,NA,Blaby,84,65,71,59,48,51,59,40,55,73,64,74 -31UC,NA,NA,Charnwood,164,103,100,118,95,102,86,97,82,99,106,135 -31UD,NA,NA,Harborough,84,59,61,58,56,42,49,57,66,55,43,66 -31UE,NA,NA,Hinckley and Bosworth,90,66,61,68,66,72,78,60,78,87,84,88 -31UG,NA,NA,Melton,49,25,34,35,31,32,32,27,27,29,32,46 -31UH,NA,NA,North West Leicestershire,86,64,65,80,58,55,60,62,81,58,72,96 -31UJ,NA,NA,Oadby and Wigston,49,56,44,38,41,45,43,39,38,57,51,54 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -32,NA,Lincolnshire,NA,847,619,661,595,584,626,509,476,578,662,618,693 -32UB,NA,NA,Boston,82,56,73,53,56,68,54,42,61,49,71,62 -32UC,NA,NA,East Lindsey,224,144,173,143,156,155,110,121,141,160,151,154 -32UD,NA,NA,Lincoln,87,70,66,71,55,85,60,58,63,79,55,81 -32UE,NA,NA,North Kesteven,104,76,104,90,87,79,87,56,63,89,91,95 -32UF,NA,NA,South Holland,107,85,65,83,71,86,66,57,71,89,83,98 -32UG,NA,NA,South Kesteven,141,110,92,78,96,79,78,71,98,119,106,128 -32UH,NA,NA,West Lindsey,102,78,88,77,63,74,54,71,81,77,61,75 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -34,NA,Northamptonshire,NA,585,469,466,491,442,426,467,417,436,504,449,484 -34UB,NA,NA,Corby,47,45,39,40,49,42,46,48,42,54,43,40 -34UC,NA,NA,Daventry,61,53,56,51,44,32,50,46,42,52,49,65 -34UD,NA,NA,East Northamptonshire,62,61,73,72,50,59,65,70,61,64,70,67 -34UE,NA,NA,Kettering,96,62,67,60,78,68,53,62,69,76,67,80 -34UF,NA,NA,Northampton,176,140,128,157,132,134,135,100,123,156,136,126 -34UG,NA,NA,South Northamptonshire,69,44,45,58,48,50,58,46,51,56,43,62 -34UH,NA,NA,Wellingborough,74,64,58,53,41,41,60,45,48,46,41,44 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -37,NA,Nottinghamshire,NA,839,616,669,663,557,592,574,503,606,603,587,728 -37UB,NA,NA,Ashfield,125,81,111,95,96,80,74,83,82,84,105,124 -37UC,NA,NA,Bassetlaw,111,87,102,102,80,103,81,61,97,84,98,130 -37UD,NA,NA,Broxtowe,122,82,79,79,74,87,75,72,97,78,68,96 -37UE,NA,NA,Gedling,121,84,100,93,87,76,79,83,73,95,87,114 -37UF,NA,NA,Mansfield,112,81,89,107,69,78,79,79,99,80,70,97 -37UG,NA,NA,Newark and Sherwood,143,106,96,104,85,91,101,64,86,89,90,86 -37UJ,NA,NA,Rushcliffe,105,95,92,83,66,77,85,61,72,93,69,81 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -F,WEST MIDLANDS,NA,NA,5555,4282,4364,4116,3687,3949,3827,3467,3997,4000,4057,4793 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00GA,NA,"Herefordshire, County of UA",NA,225,144,174,141,144,147,146,138,153,161,152,150 -00GG,NA,Shropshire UA 6,NA,347,251,261,270,248,239,219,228,235,252,244,302 -NA,NA,Former districts of:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -39UB,NA,NA,Bridgnorth,62,52,46,40,40,42,41,41,36,38,40,67 -39UC,NA,NA,North Shropshire,68,47,55,56,48,57,48,42,45,68,63,57 -39UD,NA,NA,Oswestry,53,31,33,55,36,26,19,35,31,28,30,31 -39UE,NA,NA,Shrewsbury and Atcham,100,76,78,75,83,85,76,77,80,83,77,96 -39UF,NA,NA,South Shropshire,64,45,49,44,41,29,35,33,43,35,34,51 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00GL,NA,Stoke-on-Trent UA,NA,284,239,195,217,202,171,191,170,171,214,198,223 -00GF,NA,Telford and Wrekin UA,NA,154,102,113,109,90,134,116,81,95,110,108,122 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -41,NA,Staffordshire,NA,887,646,674,634,580,652,557,474,688,614,670,765 -41UB,NA,NA,Cannock Chase,80,67,63,58,64,77,57,59,76,56,70,85 -41UC,NA,NA,East Staffordshire,114,78,85,93,79,73,68,74,77,74,86,95 -41UD,NA,NA,Lichfield,95,75,80,75,62,90,68,54,78,72,81,89 -41UE,NA,NA,Newcastle-under-Lyme,162,91,104,101,90,106,86,65,117,97,102,111 -41UF,NA,NA,South Staffordshire,120,83,104,88,75,98,87,62,101,88,94,118 -41UG,NA,NA,Stafford,133,119,103,104,88,92,66,70,123,90,103,129 -41UH,NA,NA,Staffordshire Moorlands,128,85,87,72,80,70,85,52,75,98,78,92 -41UK,NA,NA,Tamworth,55,48,48,43,42,46,40,38,41,39,56,46 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -44,NA,Warwickshire,NA,538,413,442,420,372,376,376,360,378,408,409,465 -44UB,NA,NA,North Warwickshire,56,51,44,42,43,40,45,48,48,50,55,63 -44UC,NA,NA,Nuneaton and Bedworth,136,79,103,105,94,80,90,81,74,89,89,102 -44UD,NA,NA,Rugby,88,79,77,72,66,59,74,65,63,85,70,86 -44UE,NA,NA,Stratford-on-Avon,132,104,109,95,79,97,87,91,109,91,102,107 -44UF,NA,NA,Warwick,126,100,109,106,90,100,80,75,84,93,93,107 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2E,NA,West Midlands (Met County),NA,2532,2029,2049,1874,1634,1802,1780,1619,1868,1837,1891,2234 -00CN,NA,NA,Birmingham,866,701,711,685,562,637,628,571,654,651,661,789 -00CQ,NA,NA,Coventry,290,254,257,218,209,191,207,186,196,212,229,228 -00CR,NA,NA,Dudley,345,261,264,230,180,227,233,214,226,219,222,289 -00CS,NA,NA,Sandwell,330,233,235,229,234,219,227,209,249,233,243,274 -00CT,NA,NA,Solihull,182,151,138,135,117,137,136,114,136,145,144,183 -00CU,NA,NA,Walsall,269,198,231,198,160,190,187,158,200,201,192,240 -00CW,NA,NA,Wolverhampton,250,231,213,179,172,201,162,167,207,176,200,231 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -47,NA,Worcestershire,NA,588,458,456,451,417,428,442,397,409,404,385,532 -47UB,NA,NA,Bromsgrove,133,88,82,74,68,66,83,59,76,74,86,100 -47UC,NA,NA,Malvern Hills,85,67,92,76,69,86,71,80,62,77,65,105 -47UD,NA,NA,Redditch,49,58,56,60,53,52,50,43,49,46,31,50 -47UE,NA,NA,Worcester,98,66,61,60,57,65,69,58,56,54,49,85 -47UF,NA,NA,Wychavon,116,101,89,101,86,76,90,89,70,80,65,91 -47UG,NA,NA,Wyre Forest,107,78,76,80,84,83,79,68,96,73,89,101 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -G,EAST,NA,NA,5738,4298,4487,4214,3775,4012,3959,3453,4077,4095,4224,4734 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00KB,NA,Bedford UA 7,NA,140,125,118,124,112,87,92,100,105,97,112,121 -NA,NA,Former district of:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -09UD,NA,NA,Bedford,140,125,118,124,112,87,92,100,105,97,112,121 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00KC,NA,Central Bedfordshire UA 8,NA,205,197,161,164,151,140,159,119,168,170,168,181 -NA,NA,Former districts of:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -09UC,NA,NA,Mid Bedfordshire,101,100,79,84,82,71,82,60,77,77,83,90 -09UE,NA,NA,South Bedfordshire,104,97,82,80,69,69,77,59,91,93,85,91 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00KA,NA,Luton UA,NA,130,118,114,107,92,116,116,91,110,107,119,157 -00JA,NA,Peterborough UA,NA,162,108,113,104,102,125,104,109,92,118,107,143 -00KF,NA,Southend-on-Sea UA,NA,224,153,171,143,144,158,146,115,135,162,160,172 -00KG,NA,Thurrock UA,NA,132,114,87,87,79,90,98,59,97,100,99,97 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -12,NA,Cambridgeshire,NA,551,363,415,382,355,367,378,341,370,406,412,452 -12UB,NA,NA,Cambridge,80,65,58,63,58,62,64,56,58,85,79,84 -12UC,NA,NA,East Cambridgeshire,80,50,65,55,43,48,52,42,53,59,43,70 -12UD,NA,NA,Fenland,114,80,92,98,66,75,77,69,79,93,83,91 -12UE,NA,NA,Huntingdonshire,137,90,98,90,99,102,97,91,92,87,103,115 -12UG,NA,NA,South Cambridgeshire,140,78,102,76,89,80,88,83,88,82,104,92 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -22,NA,Essex,NA,1386,1065,1083,1093,850,1021,941,857,997,945,1073,1129 -22UB,NA,NA,Basildon,152,134,116,119,78,117,100,110,124,110,123,126 -22UC,NA,NA,Braintree,155,110,103,99,98,113,92,72,91,86,109,108 -22UD,NA,NA,Brentwood,71,41,54,56,48,72,48,39,50,60,48,49 -22UE,NA,NA,Castle Point,118,82,69,71,46,55,69,57,65,45,72,82 -22UF,NA,NA,Chelmsford,130,95,115,97,94,118,97,95,90,96,100,105 -22UG,NA,NA,Colchester,141,128,124,114,98,99,112,89,119,99,116,129 -22UH,NA,NA,Epping Forest,120,85,108,116,84,80,84,84,82,85,111,122 -22UJ,NA,NA,Harlow,67,56,62,63,51,53,40,40,60,47,68,60 -22UK,NA,NA,Maldon,61,38,39,60,38,37,47,38,46,52,55,57 -22UL,NA,NA,Rochford,85,58,53,70,36,64,57,59,59,59,71,71 -22UN,NA,NA,Tendring,222,189,174,171,130,156,153,139,148,170,162,159 -22UQ,NA,NA,Uttlesford,64,49,66,57,49,57,42,35,63,36,38,61 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -26,NA,Hertfordshire,NA,1011,728,796,752,621,651,697,593,689,698,671,824 -26UB,NA,NA,Broxbourne,65,47,58,60,41,37,50,51,62,53,59,64 -26UC,NA,NA,Dacorum,143,93,105,98,85,76,80,61,72,95,98,88 -26UD,NA,NA,East Hertfordshire,115,91,94,86,73,61,83,76,66,80,72,92 -26UE,NA,NA,Hertsmere,99,74,85,79,73,80,72,66,79,72,72,96 -26UF,NA,NA,North Hertfordshire,136,102,104,97,84,83,101,72,99,85,75,117 -26UG,NA,NA,St Albans,109,71,86,82,56,88,86,87,83,91,75,103 -26UH,NA,NA,Stevenage,79,57,61,49,52,49,36,38,42,60,51,70 -26UJ,NA,NA,Three Rivers,84,70,62,56,50,50,71,41,54,54,50,55 -26UK,NA,NA,Watford,65,57,51,61,49,57,43,42,48,46,54,64 -26UL,NA,NA,Welwyn Hatfield,116,66,90,84,58,70,75,59,84,62,65,75 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -33,NA,Norfolk,NA,967,787,775,727,731,752,679,631,708,747,735,818 -33UB,NA,NA,Breckland,153,121,115,127,111,110,93,107,100,129,105,141 -33UC,NA,NA,Broadland,133,123,128,106,115,126,112,92,112,114,115,122 -33UD,NA,NA,Great Yarmouth,101,86,87,80,88,86,97,78,88,96,88,109 -33UE,NA,NA,King’s Lynn and West Norfolk,155,140,130,130,113,138,117,108,128,108,128,128 -33UF,NA,NA,North Norfolk,155,105,119,110,109,108,87,86,92,113,114,115 -33UG,NA,NA,Norwich,132,105,105,86,88,87,93,78,94,86,99,101 -33UH,NA,NA,South Norfolk,138,107,91,88,107,97,80,82,94,101,86,102 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -42,NA,Suffolk,NA,830,540,654,531,538,505,549,438,606,545,568,640 -42UB,NA,NA,Babergh,116,82,92,65,68,55,61,47,89,61,91,98 -42UC,NA,NA,Forest Heath,57,39,37,37,36,27,40,33,37,33,49,47 -42UD,NA,NA,Ipswich,166,81,83,110,87,75,100,77,92,79,76,107 -42UE,NA,NA,Mid Suffolk,97,71,70,64,67,73,69,51,75,60,74,58 -42UF,NA,NA,St Edmundsbury,104,70,78,70,74,74,77,63,87,96,70,76 -42UG,NA,NA,Suffolk Coastal,146,102,131,102,102,94,106,89,114,122,94,127 -42UH,NA,NA,Waveney,144,95,163,83,104,107,96,78,112,94,114,127 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -H,LONDON,NA,NA,5430,4116,4134,4022,3593,3838,3757,3322,3834,4053,3970,4482 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -1B,NA,Inner London,NA,1725,1343,1381,1333,1166,1242,1247,1076,1296,1320,1281,1429 -00AG,NA,NA,Camden,130,89,92,100,84,83,88,91,91,93,79,95 -00AA,NA,NA,City of London,2,2,3,1,5,5,3,5,3,6,3,3 -00AM,NA,NA,Hackney,121,86,91,84,92,91,88,70,94,71,87,119 -00AN,NA,NA,Hammersmith and Fulham,93,75,76,72,62,79,69,58,79,75,82,79 -00AP,NA,NA,Haringey,121,108,97,93,82,84,96,82,95,98,83,106 -00AU,NA,NA,Islington,108,109,98,93,85,91,93,70,93,98,91,89 -00AW,NA,NA,Kensington and Chelsea,77,82,82,74,59,64,65,62,67,62,77,68 -00AY,NA,NA,Lambeth,193,123,148,136,98,105,115,99,122,123,123,140 -00AZ,NA,NA,Lewisham,175,145,127,143,104,132,134,105,121,143,134,132 -00BB,NA,NA,Newham,146,118,129,107,97,132,98,92,113,106,97,116 -00BE,NA,NA,Southwark,145,100,116,130,122,110,108,98,112,120,114,127 -00BG,NA,NA,Tower Hamlets,128,96,86,89,73,72,84,66,86,90,91,105 -00BJ,NA,NA,Wandsworth,163,121,138,124,117,118,124,113,135,135,138,146 -00BK,NA,NA,Westminster,123,89,98,87,86,76,82,65,85,100,82,104 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -1C,NA,Outer London,NA,3705,2773,2753,2689,2427,2596,2510,2246,2538,2733,2689,3053 -00AB,NA,NA,Barking and Dagenham,158,115,114,126,90,104,113,83,116,105,126,129 -00AC,NA,NA,Barnet,292,194,189,199,202,193,199,170,172,214,193,220 -00AD,NA,NA,Bexley,214,174,154,157,139,147,137,122,139,150,167,173 -00AE,NA,NA,Brent,165,114,142,131,100,116,139,106,124,146,132,128 -00AF,NA,NA,Bromley,274,240,252,212,163,218,196,162,210,220,204,251 -00AH,NA,NA,Croydon,287,200,215,207,182,183,183,152,189,194,177,200 -00AJ,NA,NA,Ealing,218,174,161,157,160,162,155,130,135,171,155,186 -00AK,NA,NA,Enfield,233,162,165,168,154,179,141,153,143,184,177,178 -00AL,NA,NA,Greenwich,187,118,140,138,126,137,112,138,135,156,140,162 -00AQ,NA,NA,Harrow,167,105,112,115,125,105,121,110,122,113,102,148 -00AR,NA,NA,Havering,235,201,195,186,150,185,158,142,163,162,197,192 -00AS,NA,NA,Hillingdon,204,159,178,160,135,134,136,115,124,141,159,174 -00AT,NA,NA,Hounslow,144,118,103,92,98,112,120,112,118,122,107,154 -00AX,NA,NA,Kingston upon Thames,112,92,69,94,70,95,85,66,77,97,76,95 -00BA,NA,NA,Merton,141,109,98,83,80,98,81,92,100,92,94,127 -00BC,NA,NA,Redbridge,185,155,155,149,121,142,122,115,152,155,153,154 -00BD,NA,NA,Richmond upon Thames,147,97,77,79,88,66,94,76,98,100,92,104 -00BF,NA,NA,Sutton,174,121,108,124,117,102,110,113,110,97,109,143 -00BH,NA,NA,Waltham Forest,168,125,126,112,127,118,108,89,111,114,129,135 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -J,SOUTH EAST,NA,NA,8835,6256,6328,5948,5417,5920,5662,4997,5922,5961,6107,6623 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00MA,NA,Bracknell Forest UA,NA,67,69,70,59,56,51,63,53,52,48,63,59 -00ML,NA,Brighton and Hove UA,NA,283,196,183,176,163,175,169,149,159,166,191,180 -00MW,NA,Isle of Wight UA,NA,213,129,130,144,115,139,111,95,118,153,123,178 -00LC,NA,Medway UA,NA,247,154,170,196,127,166,137,145,172,151,155,191 -00MG,NA,Milton Keynes UA,NA,165,135,142,152,101,108,113,96,124,138,127,127 -00MR,NA,Portsmouth UA,NA,213,130,132,122,120,125,126,119,127,128,134,136 -00MC,NA,Reading UA,NA,123,101,90,82,97,73,78,63,84,80,71,113 -00MD,NA,Slough UA,NA,81,64,64,67,53,66,47,54,61,73,75,65 -00MS,NA,Southampton UA,NA,184,143,162,139,146,136,136,102,142,130,128,145 -00MB,NA,West Berkshire UA,NA,114,104,75,79,89,94,74,74,105,95,82,100 -00ME,NA,Windsor and Maidenhead UA,NA,164,107,103,71,92,122,89,79,88,89,98,108 -00MF,NA,Wokingham UA,NA,111,87,76,89,66,77,75,63,77,77,98,95 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -11,NA,Buckinghamshire,NA,475,320,352,274,266,319,317,235,316,316,301,363 -11UB,NA,NA,Aylesbury Vale,159,112,128,89,90,114,113,78,114,118,92,117 -11UC,NA,NA,Chiltern,100,63,67,56,57,62,60,47,64,51,71,72 -11UE,NA,NA,South Bucks,72,49,43,43,48,49,50,45,56,46,38,58 -11UF,NA,NA,Wycombe,144,96,114,86,71,94,94,65,82,101,100,116 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -21,NA,East Sussex,NA,706,500,519,518,440,513,444,413,459,482,510,542 -21UC,NA,NA,Eastbourne,146,111,100,111,82,101,89,88,98,99,103,96 -21UD,NA,NA,Hastings,118,85,74,74,91,72,75,65,75,84,94,98 -21UF,NA,NA,Lewes,103,76,89,92,72,86,69,72,69,78,96,99 -21UG,NA,NA,Rother,156,94,135,111,87,119,114,94,94,100,101,125 -21UH,NA,NA,Wealden,183,134,121,130,108,135,97,94,123,121,116,124 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -24,NA,Hampshire,NA,1360,987,946,895,810,899,892,776,885,900,933,986 -24UB,NA,NA,Basingstoke and Deane,129,81,96,96,74,89,100,81,87,104,71,102 -24UC,NA,NA,East Hampshire,133,79,88,82,91,72,83,66,88,74,75,100 -24UD,NA,NA,Eastleigh,101,79,67,84,68,67,63,65,78,88,74,75 -24UE,NA,NA,Fareham,141,94,92,84,78,76,79,72,91,87,79,110 -24UF,NA,NA,Gosport,94,71,66,72,52,62,59,48,67,51,75,60 -24UG,NA,NA,Hart,78,54,43,35,56,50,56,41,47,36,63,26 -24UH,NA,NA,Havant,157,105,107,85,93,97,106,77,91,103,97,101 -24UJ,NA,NA,New Forest,248,176,158,159,114,171,138,136,160,151,176,164 -24UL,NA,NA,Rushmoor,67,65,44,49,46,47,64,49,39,56,57,53 -24UN,NA,NA,Test Valley,106,82,98,83,71,99,76,66,67,71,71,89 -24UP,NA,NA,Winchester,106,101,87,66,67,69,68,75,70,79,95,106 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -29,NA,Kent,NA,1745,1158,1180,1098,1056,1067,982,933,1092,1084,1102,1201 -29UB,NA,NA,Ashford,114,86,73,67,80,72,92,54,84,93,72,76 -29UC,NA,NA,Canterbury,206,128,135,129,113,128,109,100,141,100,134,117 -29UD,NA,NA,Dartford,100,63,69,77,67,66,52,47,73,67,76,72 -29UE,NA,NA,Dover,146,76,120,109,89,89,85,94,106,93,92,103 -29UG,NA,NA,Gravesham,113,48,76,67,67,72,73,48,72,78,76,83 -29UH,NA,NA,Maidstone,172,117,101,93,110,112,86,110,93,105,81,124 -29UK,NA,NA,Sevenoaks,131,88,84,65,81,80,62,72,81,82,73,86 -29UL,NA,NA,Shepway,132,109,99,88,81,78,87,78,89,82,96,115 -29UM,NA,NA,Swale,143,125,112,100,79,95,82,89,90,98,93,121 -29UN,NA,NA,Thanet,248,163,152,161,155,127,135,117,112,134,169,127 -29UP,NA,NA,Tonbridge and Malling,112,69,85,61,76,75,60,65,77,75,76,84 -29UQ,NA,NA,Tunbridge Wells,128,86,74,81,58,73,59,59,74,77,64,93 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -38,NA,Oxfordshire,NA,550,415,422,369,322,405,382,327,434,435,439,426 -38UB,NA,NA,Cherwell,115,84,93,97,73,97,100,82,93,99,93,84 -38UC,NA,NA,Oxford,97,66,81,67,65,59,75,68,85,93,86,74 -38UD,NA,NA,South Oxfordshire,114,99,86,85,71,90,84,66,95,94,95,97 -38UE,NA,NA,Vale of White Horse,126,83,78,66,60,70,74,68,77,80,77,84 -38UF,NA,NA,West Oxfordshire,98,83,84,54,53,89,49,43,84,69,88,87 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -43,NA,Surrey,NA,1021,738,775,735,664,716,784,627,737,737,791,812 -43UB,NA,NA,Elmbridge,108,92,82,80,77,82,86,60,95,77,83,95 -43UC,NA,NA,Epsom and Ewell,64,52,30,44,48,42,50,32,39,37,47,44 -43UD,NA,NA,Guildford,97,75,102,79,59,81,88,51,83,71,92,87 -43UE,NA,NA,Mole Valley,85,74,66,64,55,57,78,70,65,80,84,66 -43UF,NA,NA,Reigate and Banstead,131,106,107,81,88,91,97,89,107,89,94,112 -43UG,NA,NA,Runnymede,69,48,53,55,49,53,51,51,62,54,47,61 -43UH,NA,NA,Spelthorne,93,67,59,65,53,59,68,59,56,74,58,73 -43UJ,NA,NA,Surrey Heath,68,31,53,46,38,45,53,49,48,56,51,52 -43UK,NA,NA,Tandridge,88,65,69,66,57,63,61,56,49,50,58,69 -43UL,NA,NA,Waverley,134,84,91,100,87,85,97,71,88,81,102,92 -43UM,NA,NA,Woking,84,44,63,55,53,58,55,39,45,68,75,61 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -45,NA,West Sussex,NA,1013,719,737,683,634,669,643,594,690,679,686,796 -45UB,NA,NA,Adur,82,54,57,49,45,61,64,49,48,54,55,70 -45UC,NA,NA,Arun,237,169,165,179,158,151,171,147,161,181,157,183 -45UD,NA,NA,Chichester,153,112,108,117,97,105,107,99,101,88,123,102 -45UE,NA,NA,Crawley,89,49,67,48,54,72,44,57,59,63,58,72 -45UF,NA,NA,Horsham,127,94,104,91,87,82,77,75,114,92,90,114 -45UG,NA,NA,Mid Sussex,152,115,123,96,94,87,100,83,109,101,103,121 -45UH,NA,NA,Worthing,173,126,113,103,99,111,80,84,98,100,100,134 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -K,SOUTH WEST,NA,NA,6019,4417,4455,4274,3840,4136,4081,3509,4232,4259,4172,4707 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00HA,NA,Bath and North East Somerset UA,NA,166,149,147,121,114,128,128,118,133,147,122,124 -00HN,NA,Bournemouth UA,NA,235,165,178,157,136,154,131,127,176,158,164,147 -00HB,NA,"Bristol, City of UA",NA,391,293,307,291,251,273,268,213,261,305,265,307 -00HE,NA,Cornwall UA 9,NA,739,470,496,513,464,443,435,409,494,474,469,511 -NA,NA,Former districts of:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -15UB,NA,NA,Caradon,99,82,81,77,62,75,80,66,68,69,88,88 -15UC,NA,NA,Carrick,126,83,93,95,93,74,81,67,76,72,73,77 -15UD,NA,NA,Kerrier,138,70,99,89,78,73,72,70,93,87,83,86 -15UE,NA,NA,North Cornwall,147,70,73,80,72,75,69,70,76,82,72,80 -15UF,NA,NA,Penwith,102,59,59,72,60,68,50,59,83,79,57,84 -15UG,NA,NA,Restormel,127,106,91,100,99,78,83,77,98,85,96,96 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00HF,NA,Isles of Scilly UA 10,NA,4,4,2,2,4,1,1,-,1,1,1,1 -00HC,NA,North Somerset UA,NA,267,182,166,178,131,178,164,132,162,151,153,181 -00HG,NA,Plymouth UA,NA,267,209,167,190,185,210,218,158,176,195,206,225 -00HP,NA,Poole UA,NA,185,128,127,100,114,123,113,99,148,117,121,148 -00HD,NA,South Gloucestershire UA,NA,220,167,182,157,141,143,143,127,148,166,156,188 -00HX,NA,Swindon UA,NA,176,113,114,123,114,123,124,97,124,118,106,156 -00HH,NA,Torbay UA,NA,229,144,131,137,118,131,137,127,152,140,132,151 -00HY,NA,Wiltshire UA 11,NA,451,360,379,321,284,321,335,294,305,345,368,387 -NA,NA,Former districts of:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -46UB,NA,NA,Kennet,71,62,60,46,55,52,56,45,55,57,57,78 -46UC,NA,NA,North Wiltshire,132,98,95,98,70,79,84,85,69,83,90,106 -46UD,NA,NA,Salisbury,134,110,104,81,75,92,97,78,100,101,100,108 -46UF,NA,NA,West Wiltshire,114,90,120,96,84,98,98,86,81,104,121,95 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -18,NA,Devon,NA,913,713,713,642,601,658,664,538,656,662,665,735 -18UB,NA,NA,East Devon,197,150,164,156,120,160,155,117,161,152,134,169 -18UC,NA,NA,Exeter,139,76,84,70,75,79,73,43,88,82,91,74 -18UD,NA,NA,Mid Devon,82,61,64,54,59,57,63,35,54,53,58,66 -18UE,NA,NA,North Devon,113,88,81,91,71,85,88,81,66,95,88,90 -18UG,NA,NA,South Hams,109,74,83,74,65,80,72,62,64,53,75,73 -18UH,NA,NA,Teignbridge,144,136,130,110,112,110,114,114,117,125,127,141 -18UK,NA,NA,Torridge,70,67,54,50,59,40,52,54,53,61,55,70 -18UL,NA,NA,West Devon,59,61,53,37,40,47,47,32,53,41,37,52 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -19,NA,Dorset,NA,550,367,387,368,353,380,367,330,374,379,348,430 -19UC,NA,NA,Christchurch,55,49,46,43,49,49,57,40,49,59,50,59 -19UD,NA,NA,East Dorset,118,77,83,86,68,77,76,77,79,76,80,85 -19UE,NA,NA,North Dorset,85,53,50,44,62,52,49,35,44,37,41,55 -19UG,NA,NA,Purbeck,56,35,40,38,34,44,50,30,41,39,27,42 -19UH,NA,NA,West Dorset,153,94,103,100,98,97,87,102,97,106,101,119 -19UJ,NA,NA,Weymouth and Portland,83,59,65,57,42,61,48,46,64,62,49,70 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -23,NA,Gloucestershire,NA,567,501,478,475,408,426,395,365,483,475,463,521 -23UB,NA,NA,Cheltenham,107,99,89,73,84,74,64,68,93,89,76,91 -23UC,NA,NA,Cotswold,76,74,89,68,59,70,70,48,70,85,78,85 -23UD,NA,NA,Forest of Dean,84,64,53,77,39,71,51,51,78,62,61,88 -23UE,NA,NA,Gloucester,117,93,75,84,76,64,69,68,87,89,92,91 -23UF,NA,NA,Stroud,107,97,93,107,93,82,80,79,91,86,86,81 -23UG,NA,NA,Tewkesbury,76,74,79,66,57,65,61,51,64,64,70,85 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -40,NA,Somerset,NA,659,452,481,499,422,444,458,375,439,426,433,495 -40UB,NA,NA,Mendip,116,65,86,94,71,85,86,67,81,86,79,95 -40UC,NA,NA,Sedgemoor,131,105,101,93,90,104,91,71,98,91,86,109 -40UD,NA,NA,South Somerset,191,141,144,149,137,124,125,116,133,124,139,154 -40UE,NA,NA,Taunton Deane,157,101,103,109,89,98,109,89,89,87,103,107 -40UF,NA,NA,West Somerset,64,40,47,54,35,33,47,32,38,38,26,30 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -924,WALES,NA,NA,3553,2622,2699,2492,2307,2456,2451,2037,2443,2525,2543,2878 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00NA,NA,NA,Isle of Anglesey,88,68,76,60,74,80,62,64,69,74,66,95 -00NC,NA,NA,Gwynedd,152,124,118,99,95,94,109,109,97,104,98,128 -00NE,NA,NA,Conwy,169,127,136,104,120,134,100,111,122,114,100,137 -00NG,NA,NA,Denbighshire,141,104,77,101,85,96,85,63,94,104,94,114 -00NJ,NA,NA,Flintshire,156,122,101,103,88,112,118,82,110,105,124,155 -00NL,NA,NA,Wrexham,138,92,117,107,105,94,115,83,115,102,129,106 -00NN,NA,NA,Powys,182,119,123,126,108,118,105,78,120,133,110,109 -00NQ,NA,NA,Ceredigion,85,75,73,66,54,53,46,47,49,67,69,77 -00NS,NA,NA,Pembrokeshire,175,106,114,104,103,96,114,105,103,103,106,120 -00NU,NA,NA,Carmarthenshire,233,174,187,172,169,167,177,134,166,167,157,196 -00NX,NA,NA,Swansea,312,216,217,205,169,159,216,165,183,215,187,259 -00NZ,NA,NA,Neath Port Talbot,194,133,142,124,99,129,140,100,117,124,107,169 -00PB,NA,NA,Bridgend,146,115,114,128,75,110,103,93,90,115,112,118 -00PD,NA,NA,The Vale of Glamorgan,151,95,98,90,94,92,94,74,97,95,101,100 -00PT,NA,NA,Cardiff,282,218,232,214,221,221,210,160,232,226,222,226 -00PF,NA,NA,"Rhondda, Cynon, Taff",269,221,213,202,181,221,190,170,197,205,209,203 -00PH,NA,NA,Merthyr Tydfil,47,47,54,46,54,58,55,34,47,40,69,59 -00PK,NA,NA,Caerphilly,182,129,163,142,127,118,120,109,120,110,136,146 -00PL,NA,NA,Blaenau Gwent,85,64,76,65,58,63,65,56,53,59,73,60 -00PM,NA,NA,Torfaen,120,81,87,62,73,75,58,65,73,79,71,93 -00PP,NA,NA,Monmouthshire,95,75,65,60,66,73,60,44,74,59,79,87 -00PR,NA,NA,Newport,151,117,116,112,89,93,109,91,115,125,124,121 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,Non-residents of England & Wales,107,85,93,61,68,96,98,90,114,97,92,100 -Footnotes:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -1,England and Wales were recoded in July 2007.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2,"County Durham UA comprises the former districts of Chester-le-Street, Derwentside, Durham, Easington, Sedgefield, Teesdale and Wear Valley (abolished 2009).",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -3,"Northumberland UA comprises the former districts of Alnwick, Berwick-upon-Tweed, Blyth Valley, Castle Morpeth, Tynedale and Wansbeck (abolished 2009).",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -4,"Cheshire East UA comprises the former districts of Congleton, Crewe and Nantwich and Macclesfield (abolished 2009).",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -5,"Cheshire West and Chester UA comprises the former districts of Chester, Ellesmere Port & Neston and Vale Royal (abolished 2009).",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -6,"Shropshire UA comprises the former districts of Bridgnorth, North Shropshire, Oswestry, Shrewsbury and Atcham and South Shropshire (abolished 2009).",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -7,Bedford UA comprises the former district of Bedford (abolished 2009).,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -8,Central Bedfordshire UA comprises the former districts of Mid Bedfordshire and South Bedfordshire (abolished 2009).,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -9,"Cornwall UA comprises the former districts of Caradon, Carrick, Kerrier, North Cornwall, Penwith and Restormel (abolished 2009).",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -10,The Isles of Scilly were recoded on 1 April 2009. They are separately administered by an Isles of Scilly council and do not form part of Cornwall UA.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -11,"Wiltshire UA comprises the former districts of Kennet, North Wiltshire, Salisbury and West Wiltshire (abolished 2009).",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA diff --git a/working_files/Monthly/Monthly2009Mortality-Notes.csv b/working_files/Monthly/Monthly2009Mortality-Notes.csv deleted file mode 100644 index e69de29..0000000 diff --git a/working_files/Monthly/Monthly2009Mortality.xls b/working_files/Monthly/Monthly2009Mortality.xls deleted file mode 100644 index a27c0f9..0000000 Binary files a/working_files/Monthly/Monthly2009Mortality.xls and /dev/null differ diff --git a/working_files/Monthly/Monthly2010Mortality-Figures for 2010.csv b/working_files/Monthly/Monthly2010Mortality-Figures for 2010.csv deleted file mode 100644 index 19117dc..0000000 --- a/working_files/Monthly/Monthly2010Mortality-Figures for 2010.csv +++ /dev/null @@ -1,525 +0,0 @@ -"Monthly figures on deaths registered by area of usual residence, 2010",...2,...3,...4,...5,...6,...7,...8,...9,...10,...11,...12,...13,...14,...15,England and Wales -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Area Codes 1,NA,NA,NA,Jan-10,Feb-10,Mar-10,Apr-10,May-10,Jun-10,Jul-10,Aug-10,Sep-10,Oct-10,Nov-10,Dec-10 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,TOTAL REGISTRATIONS 2,NA,NA,48363,41048,45138,40584,36517,40168,36888,36083,39423,38613,42123,48294 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,ENGLAND AND WALES,NA,NA,48269,40984,45071,40507,36439,40080,36799,35979,39317,38540,42038,48191 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -921,ENGLAND,NA,NA,45195,38366,42235,37975,34163,37530,34380,33775,36842,36159,39409,44988 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -A,NORTH EAST,NA,NA,2365,2103,2381,2117,1940,2203,1997,1940,2004,2099,2189,2487 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00EJ,NA,County Durham UA 3,NA,485,439,452,408,393,415,388,403,425,412,419,470 -NA,NA,Former districts of:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -20UB,NA,NA,Chester-le-Street,37,53,49,48,36,44,44,29,40,49,44,47 -20UD,NA,NA,Derwentside,103,66,89,76,65,84,62,74,77,82,61,77 -20UE,NA,NA,Durham,67,67,62,58,70,61,67,57,64,54,75,78 -20UF,NA,NA,Easington,90,67,92,84,90,64,74,74,83,71,75,86 -20UG,NA,NA,Sedgefield,87,88,78,65,62,81,68,80,89,69,74,91 -20UH,NA,NA,Teesdale,25,31,21,16,18,23,22,30,21,28,23,32 -20UJ,NA,NA,Wear Valley,76,67,61,61,52,58,51,59,51,59,67,59 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00EH,NA,Darlington UA,NA,92,74,91,73,78,92,78,71,72,90,84,107 -00EB,NA,Hartlepool UA,NA,72,76,83,81,66,76,81,61,59,75,79,108 -00EC,NA,Middlesbrough UA,NA,130,116,122,103,89,143,107,113,105,98,111,116 -00EM,NA,Northumberland UA 4,NA,305,281,313,265,219,288,252,243,255,269,297,324 -NA,NA,Former districts of:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -35UB,NA,NA,Alnwick,31,26,40,29,25,23,33,31,22,33,34,30 -35UC,NA,NA,Berwick-upon-Tweed,32,27,37,21,17,27,19,28,28,28,27,34 -35UD,NA,NA,Blyth Valley,74,77,60,59,54,90,70,56,53,60,59,76 -35UE,NA,NA,Castle Morpeth,36,47,49,45,36,42,28,33,46,41,51,59 -35UF,NA,NA,Tynedale,67,55,62,56,41,58,46,45,53,40,61,60 -35UG,NA,NA,Wansbeck,65,49,65,55,46,48,56,50,53,67,65,65 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00EE,NA,Redcar and Cleveland UA,NA,112,124,110,116,96,123,107,99,113,125,104,109 -00EF,NA,Stockton-on-Tees UA,NA,145,140,156,119,114,125,130,116,113,133,161,152 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2D,NA,Tyne and Wear (Met County),NA,1024,853,1054,952,885,941,854,834,862,897,934,1101 -00CH,NA,NA,Gateshead,177,141,188,175,162,173,158,163,149,159,149,184 -00CJ,NA,NA,Newcastle upon Tyne,254,189,226,202,191,214,194,183,191,199,204,263 -00CK,NA,NA,North Tyneside,179,171,218,172,159,181,174,152,167,168,168,198 -00CL,NA,NA,South Tyneside,152,134,161,142,143,133,127,130,110,133,149,176 -00CM,NA,NA,Sunderland,262,218,261,261,230,240,201,206,245,238,264,280 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -B,NORTH WEST,NA,NA,6539,5520,6259,5598,4969,5472,5032,4914,5517,5287,5943,6688 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00EX,NA,Blackburn with Darwen UA,NA,106,100,113,110,91,97,94,85,102,88,115,134 -00EY,NA,Blackpool UA,NA,191,150,174,165,114,161,131,147,153,135,168,191 -00EQ,NA,Cheshire East UA 5,NA,357,299,313,330,260,298,264,222,281,288,330,331 -NA,NA,Former districts of:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -13UC,NA,NA,Congleton,92,72,73,98,70,82,69,66,59,74,85,76 -13UD,NA,NA,Crewe and Nantwich,105,95,100,98,82,96,83,63,92,97,98,116 -13UG,NA,NA,Macclesfield,160,132,140,134,108,120,112,93,130,117,147,139 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00EW,NA,Cheshire West and Chester UA 6,NA,328,267,269,249,236,262,220,214,251,220,284,315 -NA,NA,Former districts of:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -13UB,NA,NA,Chester,134,105,108,93,77,91,94,77,102,80,89,118 -13UE,NA,NA,Ellesmere Port & Neston,71,66,63,54,69,57,51,63,66,49,71,70 -13UH,NA,NA,Vale Royal,123,96,98,102,90,114,75,74,83,91,124,127 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00ET,NA,Halton UA,NA,96,98,86,88,78,105,83,87,86,95,102,112 -00EU,NA,Warrington UA,NA,173,148,185,154,141,129,129,133,143,139,155,172 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -16,NA,Cumbria,NA,495,408,506,481,400,463,407,377,430,443,474,547 -16UB,NA,NA,Allerdale,96,86,101,102,90,89,95,63,82,93,90,103 -16UC,NA,NA,Barrow-in-Furness,63,52,73,55,63,62,60,52,52,63,67,85 -16UD,NA,NA,Carlisle,88,81,109,115,87,86,66,84,89,84,101,107 -16UE,NA,NA,Copeland,73,60,63,59,35,69,55,51,49,68,60,79 -16UF,NA,NA,Eden,59,41,56,46,36,54,34,46,56,47,51,43 -16UG,NA,NA,South Lakeland,116,88,104,104,89,103,97,81,102,88,105,130 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2A,NA,Greater Manchester (Met County),NA,2288,1980,2203,1935,1779,1825,1783,1781,2002,1827,2059,2314 -00BL,NA,NA,Bolton,230,215,225,191,185,174,181,182,217,196,212,243 -00BM,NA,NA,Bury,166,149,159,162,141,120,125,132,149,135,154,180 -00BN,NA,NA,Manchester,372,329,362,331,267,284,305,284,298,276,288,311 -00BP,NA,NA,Oldham,203,136,173,160,146,153,142,159,178,163,169,211 -00BQ,NA,NA,Rochdale,196,155,200,134,167,148,134,129,146,144,194,211 -00BR,NA,NA,Salford,210,178,181,199,166,178,171,199,212,177,181,207 -00BS,NA,NA,Stockport,247,210,248,198,178,212,201,179,215,188,264,225 -00BT,NA,NA,Tameside,214,175,187,181,165,172,164,151,197,161,191,196 -00BU,NA,NA,Trafford,167,173,185,134,137,143,130,151,160,154,158,211 -00BW,NA,NA,Wigan,283,260,283,245,227,241,230,215,230,233,248,319 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -30,NA,Lancashire,NA,1089,904,1074,947,834,968,856,852,897,898,1034,1155 -30UD,NA,NA,Burnley,73,80,73,65,56,90,62,55,66,69,80,72 -30UE,NA,NA,Chorley,74,65,104,85,59,65,66,72,89,67,88,87 -30UF,NA,NA,Fylde,92,82,89,71,74,78,68,62,77,62,74,78 -30UG,NA,NA,Hyndburn,81,58,64,57,55,74,62,58,66,57,84,97 -30UH,NA,NA,Lancaster,129,115,140,111,102,126,120,131,90,122,129,135 -30UJ,NA,NA,Pendle,59,60,75,84,75,74,68,50,61,62,81,65 -30UK,NA,NA,Preston,122,76,109,90,101,94,90,93,94,79,112,139 -30UL,NA,NA,Ribble Valley,52,47,57,51,45,49,41,39,54,42,49,58 -30UM,NA,NA,Rossendale,58,50,64,48,38,47,57,47,45,56,55,65 -30UN,NA,NA,South Ribble,101,80,74,81,59,71,53,63,75,67,73,110 -30UP,NA,NA,West Lancashire,117,93,107,83,84,84,71,82,81,98,95,121 -30UQ,NA,NA,Wyre,131,98,118,121,86,116,98,100,99,117,114,128 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2B,NA,Merseyside (Met County),NA,1416,1166,1336,1139,1036,1164,1065,1016,1172,1154,1222,1417 -00BX,NA,NA,Knowsley,114,114,131,95,103,125,114,117,114,120,124,147 -00BY,NA,NA,Liverpool,454,363,426,355,320,378,316,331,352,347,380,429 -00CA,NA,NA,Sefton,329,224,298,263,244,218,252,252,260,250,258,288 -00BZ,NA,NA,St. Helens,178,163,163,137,127,143,132,107,144,117,153,189 -00CB,NA,NA,Wirral,341,302,318,289,242,300,251,209,302,320,307,364 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -D,YORKSHIRE AND THE HUMBER,NA,NA,4653,3936,4422,3974,3700,4014,3617,3679,3876,3845,4161,4849 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00FB,NA,East Riding of Yorkshire UA,NA,345,300,314,306,242,297,282,300,291,267,283,327 -00FA,NA,"Kingston upon Hull, City of UA",NA,244,201,217,174,151,211,172,157,171,165,188,259 -00FC,NA,North East Lincolnshire UA,NA,158,135,145,148,136,127,123,121,111,112,117,154 -00FD,NA,North Lincolnshire UA,NA,142,144,119,114,116,107,109,105,119,131,143,152 -00FF,NA,York UA,NA,183,148,141,144,133,137,120,119,135,143,165,189 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -36,NA,North Yorkshire,NA,554,437,553,466,485,475,468,464,501,478,551,582 -36UB,NA,NA,Craven,63,43,54,49,48,43,47,47,53,38,72,66 -36UC,NA,NA,Hambleton,59,58,67,55,68,61,59,65,62,80,70,78 -36UD,NA,NA,Harrogate,150,106,143,113,114,121,137,114,135,110,131,154 -36UE,NA,NA,Richmondshire,51,30,30,45,39,32,39,39,36,35,42,33 -36UF,NA,NA,Ryedale,56,38,56,39,47,53,41,38,44,48,62,61 -36UG,NA,NA,Scarborough,126,110,131,108,126,119,93,104,110,112,111,117 -36UH,NA,NA,Selby,49,52,72,57,43,46,52,57,61,55,63,73 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2C,NA,South Yorkshire (Met County),NA,1204,1049,1165,1078,958,1043,921,949,1030,1007,1046,1145 -00CC,NA,NA,Barnsley,222,190,216,204,169,197,178,172,168,200,195,224 -00CE,NA,NA,Doncaster,278,233,263,242,231,251,197,221,246,232,238,250 -00CF,NA,NA,Rotherham,255,219,227,231,185,194,177,165,219,185,222,217 -00CG,NA,NA,Sheffield,449,407,459,401,373,401,369,391,397,390,391,454 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2F,NA,West Yorkshire (Met County),NA,1823,1522,1768,1544,1479,1617,1422,1464,1518,1542,1668,2041 -00CX,NA,NA,Bradford,419,350,396,350,324,346,287,345,334,363,348,431 -00CY,NA,NA,Calderdale,165,150,164,153,170,151,154,130,151,119,164,213 -00CZ,NA,NA,Kirklees,330,288,343,283,288,303,270,261,254,293,308,390 -00DA,NA,NA,Leeds,616,481,590,497,470,531,487,481,533,519,561,674 -00DB,NA,NA,Wakefield,293,253,275,261,227,286,224,247,246,248,287,333 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E,EAST MIDLANDS,NA,NA,4103,3413,3698,3352,3025,3322,3008,2883,3390,3135,3616,4025 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00FK,NA,Derby UA,NA,239,179,194,137,154,176,142,151,162,183,189,206 -00FN,NA,Leicester UA,NA,231,205,218,189,202,251,190,164,205,174,209,251 -00FY,NA,Nottingham UA,NA,213,178,219,212,182,186,160,166,178,167,200,244 -00FP,NA,Rutland UA,NA,38,26,39,28,23,34,14,31,30,26,27,26 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -17,NA,Derbyshire,NA,713,637,665,631,521,581,539,508,634,563,661,704 -17UB,NA,NA,Amber Valley,129,99,123,100,85,87,68,80,114,96,117,114 -17UC,NA,NA,Bolsover,71,62,64,67,61,65,73,53,60,65,71,82 -17UD,NA,NA,Chesterfield,96,106,94,113,87,81,73,84,90,82,113,100 -17UF,NA,NA,Derbyshire Dales,88,62,57,53,47,59,54,51,65,58,59,71 -17UG,NA,NA,Erewash,102,96,99,86,64,89,79,66,94,61,93,95 -17UH,NA,NA,High Peak,66,64,64,66,52,64,55,59,69,69,69,61 -17UJ,NA,NA,North East Derbyshire,92,82,95,82,77,73,80,77,73,85,71,105 -17UK,NA,NA,South Derbyshire,69,66,69,64,48,63,57,38,69,47,68,76 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -31,NA,Leicestershire,NA,581,466,542,433,402,451,409,388,471,441,489,581 -31UB,NA,NA,Blaby,81,67,76,65,53,61,52,63,50,59,82,90 -31UC,NA,NA,Charnwood,152,105,131,77,104,105,103,104,128,119,119,144 -31UD,NA,NA,Harborough,78,49,58,72,50,58,49,49,60,52,55,73 -31UE,NA,NA,Hinckley and Bosworth,81,88,95,71,67,71,62,63,78,66,76,97 -31UG,NA,NA,Melton,42,29,49,32,27,42,31,24,30,27,38,42 -31UH,NA,NA,North West Leicestershire,96,74,74,66,63,57,72,54,76,74,72,81 -31UJ,NA,NA,Oadby and Wigston,51,54,59,50,38,57,40,31,49,44,47,54 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -32,NA,Lincolnshire,NA,713,626,639,632,551,599,544,512,591,573,643,715 -32UB,NA,NA,Boston,59,53,62,56,53,54,48,47,49,46,58,59 -32UC,NA,NA,East Lindsey,186,160,150,171,125,148,145,135,135,151,157,177 -32UD,NA,NA,Lincoln,79,61,68,74,56,71,55,53,75,59,72,83 -32UE,NA,NA,North Kesteven,86,77,103,85,79,73,74,61,92,77,95,93 -32UF,NA,NA,South Holland,103,92,82,71,86,87,67,68,73,82,77,93 -32UG,NA,NA,South Kesteven,112,118,118,93,90,92,92,88,94,93,113,117 -32UH,NA,NA,West Lindsey,88,65,56,82,62,74,63,60,73,65,71,93 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -34,NA,Northamptonshire,NA,589,499,518,435,414,427,449,417,469,414,540,544 -34UB,NA,NA,Corby,63,46,43,29,32,42,31,39,49,53,43,51 -34UC,NA,NA,Daventry,78,40,63,51,35,49,39,42,53,46,64,57 -34UD,NA,NA,East Northamptonshire,70,64,66,49,48,56,73,61,59,58,68,89 -34UE,NA,NA,Kettering,65,82,74,65,74,46,68,74,62,55,89,77 -34UF,NA,NA,Northampton,192,140,158,144,133,129,136,115,145,121,166,164 -34UG,NA,NA,South Northamptonshire,57,68,55,53,39,49,61,50,45,43,64,56 -34UH,NA,NA,Wellingborough,64,59,59,44,53,56,41,36,56,38,46,50 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -37,NA,Nottinghamshire,NA,786,597,664,655,576,617,561,546,650,594,658,754 -37UB,NA,NA,Ashfield,129,119,103,113,94,114,86,92,97,91,91,115 -37UC,NA,NA,Bassetlaw,120,88,94,94,99,84,77,89,100,88,105,122 -37UD,NA,NA,Broxtowe,109,82,76,87,71,82,76,70,95,86,107,117 -37UE,NA,NA,Gedling,103,75,106,82,79,83,78,82,96,69,84,116 -37UF,NA,NA,Mansfield,113,74,88,100,71,80,63,65,88,72,97,92 -37UG,NA,NA,Newark and Sherwood,113,81,109,100,93,87,92,90,105,98,89,91 -37UJ,NA,NA,Rushcliffe,99,78,88,79,69,87,89,58,69,90,85,101 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -F,WEST MIDLANDS,NA,NA,4950,4169,4628,4184,3654,4109,3773,3779,3975,3923,4212,5023 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00GA,NA,"Herefordshire, County of UA",NA,189,141,167,159,111,168,158,147,140,138,163,206 -00GG,NA,Shropshire UA 7,NA,321,288,287,255,214,235,217,262,244,239,265,308 -NA,NA,Former districts of:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -39UB,NA,NA,Bridgnorth,72,43,57,50,43,48,44,53,51,42,58,64 -39UC,NA,NA,North Shropshire,49,69,49,54,47,56,43,50,52,53,45,58 -39UD,NA,NA,Oswestry,44,38,51,36,31,23,30,40,26,27,42,41 -39UE,NA,NA,Shrewsbury and Atcham,102,94,83,74,54,64,66,84,77,82,82,101 -39UF,NA,NA,South Shropshire,54,44,47,41,39,44,34,35,38,35,38,44 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00GL,NA,Stoke-on-Trent UA,NA,227,204,203,171,183,194,180,182,172,189,206,252 -00GF,NA,Telford and Wrekin UA,NA,133,113,143,114,100,94,94,105,119,115,109,121 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -41,NA,Staffordshire,NA,721,659,736,656,587,639,576,577,633,650,634,795 -41UB,NA,NA,Cannock Chase,71,55,66,60,60,82,53,70,68,57,66,99 -41UC,NA,NA,East Staffordshire,87,90,91,88,82,91,63,74,69,104,85,114 -41UD,NA,NA,Lichfield,110,86,116,83,81,69,65,76,75,84,88,95 -41UE,NA,NA,Newcastle-under-Lyme,102,94,125,95,82,92,96,87,100,106,91,116 -41UF,NA,NA,South Staffordshire,89,91,92,95,68,82,91,76,91,96,89,112 -41UG,NA,NA,Stafford,120,92,120,103,99,85,78,86,86,90,105,111 -41UH,NA,NA,Staffordshire Moorlands,97,101,89,93,68,86,81,62,85,80,67,100 -41UK,NA,NA,Tamworth,45,50,37,39,47,52,49,46,59,33,43,48 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -44,NA,Warwickshire,NA,433,404,444,415,340,385,319,334,390,402,441,487 -44UB,NA,NA,North Warwickshire,52,56,62,43,37,56,41,39,49,53,60,60 -44UC,NA,NA,Nuneaton and Bedworth,106,92,109,107,80,94,82,75,93,112,87,106 -44UD,NA,NA,Rugby,86,66,67,77,67,63,51,59,59,72,89,82 -44UE,NA,NA,Stratford-on-Avon,95,95,115,103,80,74,75,87,91,95,101,125 -44UF,NA,NA,Warwick,94,95,91,85,76,98,70,74,98,70,104,114 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2E,NA,West Midlands (Met County),NA,2387,1931,2158,1934,1707,1948,1761,1753,1830,1758,1960,2301 -00CN,NA,NA,Birmingham,815,658,753,685,605,742,629,606,671,607,689,809 -00CQ,NA,NA,Coventry,276,240,260,208,199,218,212,193,199,219,195,242 -00CR,NA,NA,Dudley,312,252,279,233,223,231,209,211,234,206,253,282 -00CS,NA,NA,Sandwell,296,240,273,249,198,235,214,201,212,223,255,289 -00CT,NA,NA,Solihull,188,132,159,154,117,139,134,157,152,143,145,186 -00CU,NA,NA,Walsall,254,213,198,203,183,194,193,191,148,184,214,230 -00CW,NA,NA,Wolverhampton,246,196,236,202,182,189,170,194,214,176,209,263 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -47,NA,Worcestershire,NA,539,429,490,480,412,446,468,419,447,432,434,553 -47UB,NA,NA,Bromsgrove,93,70,89,76,73,73,86,73,79,84,78,109 -47UC,NA,NA,Malvern Hills,112,71,75,73,62,74,72,68,90,74,80,90 -47UD,NA,NA,Redditch,44,49,59,63,51,67,51,44,42,54,50,52 -47UE,NA,NA,Worcester,77,64,70,69,65,63,62,58,64,74,68,76 -47UF,NA,NA,Wychavon,111,83,106,112,76,84,92,90,92,81,95,120 -47UG,NA,NA,Wyre Forest,102,92,91,87,85,85,105,86,80,65,63,106 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -G,EAST,NA,NA,4999,4437,4781,4374,3843,4220,3832,3688,4030,4138,4421,5013 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00KB,NA,Bedford UA 8,NA,139,104,137,107,110,104,92,102,115,107,107,133 -NA,NA,Former district of:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -09UD,NA,NA,Bedford,139,104,137,107,110,104,92,102,115,107,107,133 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00KC,NA,Central Bedfordshire UA 9,NA,182,133,176,153,137,152,136,156,156,157,169,192 -NA,NA,Former districts of:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -09UC,NA,NA,Mid Bedfordshire,103,69,92,82,68,69,64,72,65,71,85,111 -09UE,NA,NA,South Bedfordshire,79,64,84,71,69,83,72,84,91,86,84,81 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00KA,NA,Luton UA,NA,136,110,129,125,100,106,91,69,105,93,125,128 -00JA,NA,Peterborough UA,NA,158,130,131,104,100,115,103,96,125,111,111,142 -00KF,NA,Southend-on-Sea UA,NA,184,166,177,158,150,154,149,143,131,139,171,171 -00KG,NA,Thurrock UA,NA,97,98,114,104,80,98,77,68,96,84,98,120 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -12,NA,Cambridgeshire,NA,485,380,444,371,374,349,355,337,354,412,411,429 -12UB,NA,NA,Cambridge,78,56,80,56,59,64,53,63,52,68,67,87 -12UC,NA,NA,East Cambridgeshire,59,51,57,62,47,57,42,46,48,54,50,50 -12UD,NA,NA,Fenland,95,83,107,74,80,63,88,64,88,78,99,83 -12UE,NA,NA,Huntingdonshire,136,105,114,100,102,85,90,94,96,120,94,116 -12UG,NA,NA,South Cambridgeshire,117,85,86,79,86,80,82,70,70,92,101,93 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -22,NA,Essex,NA,1232,1151,1202,1141,890,1041,942,922,995,1014,1149,1260 -22UB,NA,NA,Basildon,131,137,147,130,104,111,100,89,120,132,128,164 -22UC,NA,NA,Braintree,133,131,124,110,80,115,95,100,118,120,125,123 -22UD,NA,NA,Brentwood,61,44,63,51,38,53,50,59,51,49,62,71 -22UE,NA,NA,Castle Point,84,83,70,97,64,88,56,58,68,59,66,97 -22UF,NA,NA,Chelmsford,118,131,122,111,99,95,96,81,107,109,130,126 -22UG,NA,NA,Colchester,129,138,157,125,81,121,112,105,91,86,120,125 -22UH,NA,NA,Epping Forest,111,86,92,113,72,95,87,92,106,81,102,122 -22UJ,NA,NA,Harlow,69,57,64,48,51,67,49,53,54,50,53,57 -22UK,NA,NA,Maldon,55,47,50,49,45,39,53,36,36,37,44,67 -22UL,NA,NA,Rochford,74,70,73,79,65,74,50,64,57,49,73,78 -22UN,NA,NA,Tendring,213,176,182,186,152,145,152,139,141,185,194,187 -22UQ,NA,NA,Uttlesford,54,51,58,42,39,38,42,46,46,57,52,43 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -26,NA,Hertfordshire,NA,846,732,832,772,673,783,682,636,662,746,756,882 -26UB,NA,NA,Broxbourne,55,64,54,48,55,49,54,40,51,62,57,72 -26UC,NA,NA,Dacorum,108,99,107,104,85,109,80,71,83,97,107,117 -26UD,NA,NA,East Hertfordshire,101,80,84,94,74,88,91,85,72,82,95,117 -26UE,NA,NA,Hertsmere,87,64,75,76,64,70,55,63,63,60,67,94 -26UF,NA,NA,North Hertfordshire,127,128,122,105,101,124,79,91,101,105,105,111 -26UG,NA,NA,St Albans,98,88,96,87,79,76,85,73,74,87,74,85 -26UH,NA,NA,Stevenage,52,38,73,50,50,56,56,44,49,48,60,51 -26UJ,NA,NA,Three Rivers,75,52,66,69,47,73,54,56,50,72,73,70 -26UK,NA,NA,Watford,58,51,69,54,46,57,52,56,57,61,50,69 -26UL,NA,NA,Welwyn Hatfield,85,68,86,85,72,81,76,57,62,72,68,96 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -33,NA,Norfolk,NA,882,792,789,751,676,754,660,666,723,706,709,886 -33UB,NA,NA,Breckland,145,118,133,124,105,109,104,105,107,120,122,125 -33UC,NA,NA,Broadland,134,96,116,103,112,103,94,104,119,114,104,132 -33UD,NA,NA,Great Yarmouth,99,114,92,99,74,93,83,78,89,81,79,100 -33UE,NA,NA,King’s Lynn and West Norfolk,152,143,144,137,122,144,133,111,125,116,136,167 -33UF,NA,NA,North Norfolk,140,123,109,95,90,109,93,103,95,102,92,118 -33UG,NA,NA,Norwich,90,91,98,92,75,97,66,86,90,73,75,114 -33UH,NA,NA,South Norfolk,122,107,97,101,98,99,87,79,98,100,101,130 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -42,NA,Suffolk,NA,658,641,650,588,553,564,545,493,568,569,615,670 -42UB,NA,NA,Babergh,85,81,97,62,58,79,74,52,73,66,88,76 -42UC,NA,NA,Forest Heath,50,51,41,42,33,26,32,28,35,34,47,51 -42UD,NA,NA,Ipswich,101,104,110,83,92,86,82,88,99,87,97,93 -42UE,NA,NA,Mid Suffolk,91,77,78,73,78,66,56,55,55,66,65,96 -42UF,NA,NA,St Edmundsbury,73,84,82,88,74,79,74,64,87,75,80,89 -42UG,NA,NA,Suffolk Coastal,120,114,117,132,124,111,119,100,126,123,115,154 -42UH,NA,NA,Waveney,138,130,125,108,94,117,108,106,93,118,123,111 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -H,LONDON,NA,NA,4772,4111,4328,3951,3629,3932,3716,3529,3804,3848,4024,4653 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -1B,NA,Inner London,NA,1523,1310,1393,1330,1225,1289,1221,1166,1219,1271,1298,1466 -00AG,NA,NA,Camden,103,116,100,101,98,86,76,80,90,90,86,104 -00AA,NA,NA,City of London,4,5,3,0,7,6,3,4,3,3,3,7 -00AM,NA,NA,Hackney,103,105,90,93,76,82,87,92,80,72,92,121 -00AN,NA,NA,Hammersmith and Fulham,90,67,83,75,64,62,68,70,72,89,71,76 -00AP,NA,NA,Haringey,107,97,99,96,108,104,97,92,110,98,91,115 -00AU,NA,NA,Islington,97,90,117,85,80,79,85,78,73,83,92,80 -00AW,NA,NA,Kensington and Chelsea,82,58,69,77,62,70,55,66,60,69,73,79 -00AY,NA,NA,Lambeth,120,116,108,102,125,122,109,112,108,116,127,115 -00AZ,NA,NA,Lewisham,148,146,143,148,108,139,113,127,126,134,141,135 -00BB,NA,NA,Newham,143,88,119,114,107,113,91,77,115,107,96,126 -00BE,NA,NA,Southwark,168,108,120,122,109,110,123,105,115,117,112,132 -00BG,NA,NA,Tower Hamlets,92,81,92,87,77,85,88,78,84,88,87,111 -00BJ,NA,NA,Wandsworth,159,142,147,133,112,140,128,101,102,114,127,152 -00BK,NA,NA,Westminster,107,91,103,97,92,91,98,84,81,91,100,113 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -1C,NA,Outer London,NA,3249,2801,2935,2621,2404,2643,2495,2363,2585,2577,2726,3187 -00AB,NA,NA,Barking and Dagenham,138,87,108,96,104,102,97,88,93,110,111,115 -00AC,NA,NA,Barnet,236,232,214,195,165,179,190,174,187,208,232,258 -00AD,NA,NA,Bexley,163,172,167,142,107,146,154,159,143,144,148,160 -00AE,NA,NA,Brent,135,118,162,133,106,130,116,112,151,116,157,160 -00AF,NA,NA,Bromley,268,238,232,200,189,188,166,194,193,220,196,260 -00AH,NA,NA,Croydon,256,216,214,196,213,190,210,182,205,194,193,228 -00AJ,NA,NA,Ealing,198,165,159,161,137,160,151,141,171,144,175,184 -00AK,NA,NA,Enfield,192,187,174,171,163,161,137,135,147,152,168,183 -00AL,NA,NA,Greenwich,177,127,150,134,120,127,135,128,127,127,132,160 -00AQ,NA,NA,Harrow,135,119,138,112,115,116,115,91,118,99,116,150 -00AR,NA,NA,Havering,237,177,222,173,141,192,183,160,164,161,186,213 -00AS,NA,NA,Hillingdon,173,147,159,133,144,149,125,147,141,135,163,186 -00AT,NA,NA,Hounslow,146,121,121,96,94,133,106,98,104,125,141,137 -00AX,NA,NA,Kingston upon Thames,102,86,86,68,92,83,74,69,80,84,84,100 -00BA,NA,NA,Merton,110,110,107,120,96,93,86,77,71,98,80,109 -00BC,NA,NA,Redbridge,178,144,161,151,118,155,140,133,161,148,136,168 -00BD,NA,NA,Richmond upon Thames,117,111,105,96,76,99,105,74,79,94,96,131 -00BF,NA,NA,Sutton,146,106,141,115,120,121,100,107,126,106,103,147 -00BH,NA,NA,Waltham Forest,142,138,115,129,104,119,105,94,124,112,109,138 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -J,SOUTH EAST,NA,NA,7619,6293,6900,6106,5531,6098,5472,5501,5977,5917,6460,7283 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00MA,NA,Bracknell Forest UA,NA,64,49,58,57,47,77,61,47,48,72,60,56 -00ML,NA,Brighton and Hove UA,NA,244,164,166,168,156,189,152,151,149,161,178,204 -00MW,NA,Isle of Wight UA,NA,152,153,167,148,124,134,122,121,139,139,148,170 -00LC,NA,Medway UA,NA,231,164,203,170,145,170,134,161,179,176,177,182 -00MG,NA,Milton Keynes UA,NA,157,164,119,108,127,127,119,119,135,125,153,156 -00MR,NA,Portsmouth UA,NA,159,137,145,146,120,116,113,111,133,115,144,165 -00MC,NA,Reading UA,NA,105,102,116,90,68,78,68,67,86,82,81,105 -00MD,NA,Slough UA,NA,63,48,80,57,69,47,50,49,65,57,86,79 -00MS,NA,Southampton UA,NA,182,148,175,148,115,163,119,117,119,128,137,162 -00MB,NA,West Berkshire UA,NA,105,86,80,76,79,94,80,86,90,91,83,120 -00ME,NA,Windsor and Maidenhead UA,NA,101,95,101,85,93,95,60,83,80,98,98,135 -00MF,NA,Wokingham UA,NA,94,106,105,89,76,89,67,80,93,72,88,97 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -11,NA,Buckinghamshire,NA,383,298,394,295,256,324,268,304,324,309,349,404 -11UB,NA,NA,Aylesbury Vale,129,106,134,98,85,100,78,96,110,104,124,146 -11UC,NA,NA,Chiltern,76,59,82,67,44,64,61,66,71,59,54,79 -11UE,NA,NA,South Bucks,60,47,59,44,42,49,46,42,37,49,52,67 -11UF,NA,NA,Wycombe,118,86,119,86,85,111,83,100,106,97,119,112 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -21,NA,East Sussex,NA,608,542,607,562,499,486,478,420,500,520,540,595 -21UC,NA,NA,Eastbourne,119,110,128,143,99,102,103,78,91,113,115,135 -21UD,NA,NA,Hastings,83,71,87,92,80,80,69,60,67,81,80,81 -21UF,NA,NA,Lewes,109,82,90,80,94,80,69,77,99,89,91,101 -21UG,NA,NA,Rother,124,127,119,100,111,104,108,100,102,105,121,112 -21UH,NA,NA,Wealden,173,152,183,147,115,120,129,105,141,132,133,166 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -24,NA,Hampshire,NA,1144,964,1088,935,793,924,829,876,952,910,992,1145 -24UB,NA,NA,Basingstoke and Deane,117,104,118,93,79,109,90,99,106,93,115,117 -24UC,NA,NA,East Hampshire,101,85,80,98,72,69,82,81,76,80,76,138 -24UD,NA,NA,Eastleigh,105,76,89,70,74,78,70,63,81,82,86,99 -24UE,NA,NA,Fareham,104,88,100,78,74,82,72,72,95,87,122,102 -24UF,NA,NA,Gosport,75,66,79,64,59,59,45,71,64,64,62,81 -24UG,NA,NA,Hart,58,39,41,46,42,55,43,53,41,47,50,46 -24UH,NA,NA,Havant,118,124,121,101,92,95,93,95,94,108,83,124 -24UJ,NA,NA,New Forest,206,171,212,157,125,166,154,145,176,142,168,192 -24UL,NA,NA,Rushmoor,72,38,66,67,48,46,49,49,57,51,56,63 -24UN,NA,NA,Test Valley,99,92,79,89,58,89,63,72,80,83,91,89 -24UP,NA,NA,Winchester,89,81,103,72,70,76,68,76,82,73,83,94 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -29,NA,Kent,NA,1461,1119,1274,1047,1049,1089,1041,964,1073,1082,1161,1218 -29UB,NA,NA,Ashford,111,81,88,81,67,66,64,65,81,85,73,86 -29UC,NA,NA,Canterbury,163,112,136,133,111,117,111,109,122,113,128,138 -29UD,NA,NA,Dartford,100,72,86,59,68,67,50,56,70,57,77,75 -29UE,NA,NA,Dover,140,84,118,71,91,109,103,82,97,94,98,101 -29UG,NA,NA,Gravesham,84,74,83,61,63,76,49,59,58,81,70,86 -29UH,NA,NA,Maidstone,142,121,130,120,113,123,114,100,97,119,125,127 -29UK,NA,NA,Sevenoaks,103,101,88,69,80,73,84,62,77,77,83,80 -29UL,NA,NA,Shepway,117,106,111,84,108,88,80,78,82,83,102,96 -29UM,NA,NA,Swale,118,92,112,95,110,95,101,98,99,91,87,102 -29UN,NA,NA,Thanet,186,130,133,113,102,136,138,127,145,131,138,157 -29UP,NA,NA,Tonbridge and Malling,86,75,94,93,68,81,79,74,76,70,90,81 -29UQ,NA,NA,Tunbridge Wells,111,71,95,68,68,58,68,54,69,81,90,89 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -38,NA,Oxfordshire,NA,521,444,447,387,376,436,370,395,397,372,429,520 -38UB,NA,NA,Cherwell,125,90,100,82,85,90,90,89,82,85,75,104 -38UC,NA,NA,Oxford,91,85,92,82,73,79,49,59,76,71,76,96 -38UD,NA,NA,South Oxfordshire,110,93,91,69,89,105,82,84,76,78,101,125 -38UE,NA,NA,Vale of White Horse,93,95,79,73,62,78,78,70,82,58,94,98 -38UF,NA,NA,West Oxfordshire,102,81,85,81,67,84,71,93,81,80,83,97 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -43,NA,Surrey,NA,972,781,814,747,703,808,708,740,793,709,825,950 -43UB,NA,NA,Elmbridge,114,93,99,82,87,91,76,72,109,66,93,101 -43UC,NA,NA,Epsom and Ewell,56,49,56,48,48,40,30,50,40,39,44,71 -43UD,NA,NA,Guildford,102,78,85,72,79,90,67,77,79,68,88,98 -43UE,NA,NA,Mole Valley,80,64,75,65,59,80,55,60,74,63,75,75 -43UF,NA,NA,Reigate and Banstead,126,119,109,110,97,95,101,100,98,94,102,106 -43UG,NA,NA,Runnymede,71,45,61,50,46,42,48,55,55,56,58,59 -43UH,NA,NA,Spelthorne,90,65,55,61,54,80,67,46,78,70,91,95 -43UJ,NA,NA,Surrey Heath,59,50,57,52,50,59,65,58,43,41,60,80 -43UK,NA,NA,Tandridge,79,62,62,60,52,70,58,62,55,60,53,80 -43UL,NA,NA,Waverley,120,89,100,85,80,99,97,94,96,97,97,104 -43UM,NA,NA,Woking,75,67,55,62,51,62,44,66,66,55,64,81 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -45,NA,West Sussex,NA,873,729,761,791,636,652,633,610,622,699,731,820 -45UB,NA,NA,Adur,68,61,66,60,51,43,61,41,58,62,58,57 -45UC,NA,NA,Arun,209,173,198,194,164,163,164,146,155,159,156,192 -45UD,NA,NA,Chichester,149,97,119,124,90,96,79,94,91,107,100,122 -45UE,NA,NA,Crawley,76,62,63,70,62,67,70,54,60,60,68,55 -45UF,NA,NA,Horsham,121,115,93,95,86,93,70,86,77,80,108,121 -45UG,NA,NA,Mid Sussex,107,98,108,122,84,88,94,100,89,123,106,131 -45UH,NA,NA,Worthing,143,123,114,126,99,102,95,89,92,108,135,142 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -K,SOUTH WEST,NA,NA,5195,4384,4838,4319,3872,4160,3933,3862,4269,3967,4383,4967 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00HA,NA,Bath and North East Somerset UA,NA,186,125,169,138,133,120,157,104,111,117,156,153 -00HN,NA,Bournemouth UA,NA,187,163,173,168,164,165,146,160,164,154,173,183 -00HB,NA,"Bristol, City of UA",NA,339,279,301,259,251,294,219,259,310,237,310,335 -00HE,NA,Cornwall UA 10,NA,542,449,502,531,423,475,441,429,463,443,454,538 -NA,NA,Former districts of:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -15UB,NA,NA,Caradon,80,74,77,73,65,91,67,69,62,64,68,88 -15UC,NA,NA,Carrick,92,88,110,118,73,82,85,98,106,82,79,97 -15UD,NA,NA,Kerrier,100,62,101,98,68,75,83,77,74,66,81,111 -15UE,NA,NA,North Cornwall,85,56,76,91,77,76,75,69,72,86,74,84 -15UF,NA,NA,Penwith,61,71,62,71,52,54,60,58,72,61,67,64 -15UG,NA,NA,Restormel,124,98,76,80,88,97,71,58,77,84,85,94 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00HF,NA,Isles of Scilly UA 11,NA,2,2,2,3,5,0,3,2,0,4,2,2 -00HC,NA,North Somerset UA,NA,203,176,191,178,150,176,168,169,157,183,210,236 -00HG,NA,Plymouth UA,NA,233,194,253,206,152,174,201,160,197,168,207,222 -00HP,NA,Poole UA,NA,164,132,143,120,121,114,99,116,104,144,136,151 -00HD,NA,South Gloucestershire UA,NA,183,160,168,155,186,144,140,167,190,142,177,214 -00HX,NA,Swindon UA,NA,148,136,156,133,116,111,112,102,132,137,113,142 -00HH,NA,Torbay UA,NA,207,138,166,143,134,117,123,117,162,132,128,154 -00HY,NA,Wiltshire UA 12,NA,395,387,360,353,307,346,293,320,316,327,333,387 -NA,NA,Former districts of:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -46UB,NA,NA,Kennet,69,61,59,58,57,60,46,58,56,54,58,72 -46UC,NA,NA,North Wiltshire,93,117,89,90,71,79,82,84,76,93,92,99 -46UD,NA,NA,Salisbury,114,101,118,107,83,119,77,78,76,83,93,101 -46UF,NA,NA,West Wiltshire,119,108,94,98,96,88,88,100,108,97,90,115 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -18,NA,Devon,NA,841,676,789,668,588,662,595,569,686,599,670,716 -18UB,NA,NA,East Devon,192,156,171,142,141,138,120,130,151,122,141,130 -18UC,NA,NA,Exeter,94,82,111,76,67,79,89,61,76,72,71,90 -18UD,NA,NA,Mid Devon,72,70,65,58,45,52,61,56,56,47,60,83 -18UE,NA,NA,North Devon,107,82,93,96,60,88,73,70,93,57,91,88 -18UG,NA,NA,South Hams,83,72,87,83,67,69,60,76,79,79,73,75 -18UH,NA,NA,Teignbridge,164,115,157,111,108,140,110,96,124,114,133,129 -18UK,NA,NA,Torridge,59,52,62,56,59,59,43,45,54,55,50,74 -18UL,NA,NA,West Devon,70,47,43,46,41,37,39,35,53,53,51,47 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -19,NA,Dorset,NA,493,403,439,381,304,395,367,347,356,365,389,453 -19UC,NA,NA,Christchurch,65,59,64,44,47,54,56,42,49,54,67,69 -19UD,NA,NA,East Dorset,107,77,86,74,71,89,77,77,74,72,78,91 -19UE,NA,NA,North Dorset,73,53,67,51,39,51,56,40,45,51,50,63 -19UG,NA,NA,Purbeck,58,45,37,33,31,41,39,30,31,33,30,50 -19UH,NA,NA,West Dorset,121,119,109,106,68,102,89,103,95,99,101,113 -19UJ,NA,NA,Weymouth and Portland,69,50,76,73,48,58,50,55,62,56,63,67 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -23,NA,Gloucestershire,NA,527,503,530,416,419,429,431,406,468,400,409,533 -23UB,NA,NA,Cheltenham,76,107,113,70,65,73,78,80,84,64,76,99 -23UC,NA,NA,Cotswold,85,69,76,52,67,71,58,71,65,48,62,90 -23UD,NA,NA,Forest of Dean,75,68,63,62,53,74,65,57,71,61,66,75 -23UE,NA,NA,Gloucester,93,99,119,73,83,79,84,63,70,80,79,80 -23UF,NA,NA,Stroud,111,101,88,94,92,85,84,83,102,84,80,104 -23UG,NA,NA,Tewkesbury,87,59,71,65,59,47,62,52,76,63,46,85 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -40,NA,Somerset,NA,545,461,496,467,419,438,438,435,453,415,516,548 -40UB,NA,NA,Mendip,95,62,87,94,79,94,88,64,85,75,105,115 -40UC,NA,NA,Sedgemoor,123,90,98,85,92,87,87,104,107,86,106,129 -40UD,NA,NA,South Somerset,157,156,156,144,137,122,135,127,127,137,138,139 -40UE,NA,NA,Taunton Deane,128,107,109,100,81,100,95,93,92,90,116,121 -40UF,NA,NA,West Somerset,42,46,46,44,30,35,33,47,42,27,51,44 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -924,WALES,NA,NA,3074,2618,2836,2532,2276,2550,2419,2204,2475,2381,2629,3203 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -00NA,NA,NA,Isle of Anglesey,78,79,86,66,51,61,69,58,50,76,65,79 -00NC,NA,NA,Gwynedd,140,103,118,109,93,123,103,98,111,108,149,126 -00NE,NA,NA,Conwy,154,122,141,96,114,142,101,103,125,103,130,141 -00NG,NA,NA,Denbighshire,115,94,108,96,76,87,99,74,92,95,100,104 -00NJ,NA,NA,Flintshire,144,110,108,117,97,131,111,85,109,112,114,118 -00NL,NA,NA,Wrexham,132,111,123,121,79,101,128,89,98,81,90,130 -00NN,NA,NA,Powys,157,139,125,119,127,120,100,93,121,122,140,146 -00NQ,NA,NA,Ceredigion,75,71,63,69,60,55,65,52,48,58,62,76 -00NS,NA,NA,Pembrokeshire,139,100,137,112,86,114,100,105,95,99,117,135 -00NU,NA,NA,Carmarthenshire,197,169,197,150,155,182,148,160,169,142,177,231 -00NX,NA,NA,Swansea,223,207,217,197,169,201,167,186,166,183,216,217 -00NZ,NA,NA,Neath Port Talbot,139,137,150,128,112,127,103,131,133,109,125,185 -00PB,NA,NA,Bridgend,143,121,117,107,98,115,134,100,130,104,121,164 -00PD,NA,NA,The Vale of Glamorgan,113,112,117,105,97,95,101,71,95,85,92,120 -00PT,NA,NA,Cardiff,298,204,242,236,213,193,206,161,218,195,224,283 -00PF,NA,NA,"Rhondda, Cynon, Taff",238,207,201,200,180,193,201,180,210,206,210,262 -00PH,NA,NA,Merthyr Tydfil,61,38,39,49,39,45,53,41,49,45,45,54 -00PK,NA,NA,Caerphilly,148,161,179,140,134,130,129,110,155,116,138,204 -00PL,NA,NA,Blaenau Gwent,73,73,76,61,51,73,61,52,62,81,68,77 -00PM,NA,NA,Torfaen,90,87,83,65,78,70,70,76,66,80,76,102 -00PP,NA,NA,Monmouthshire,91,74,96,80,67,79,66,73,67,66,55,89 -00PR,NA,NA,Newport,126,99,113,109,100,113,104,106,106,115,115,160 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,Non-residents of England & Wales,94,64,67,77,78,88,89,104,106,73,85,103 -Footnotes:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -1,England and Wales were recoded in July 2007.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2,The deaths of those whose usual residence is outside England and Wales are included in 'total registrations' but excluded from any sub-division of England and Wales.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -3,"County Durham UA comprises the former districts of Chester-le-Street, Derwentside, Durham, Easington, Sedgefield, Teesdale and Wear Valley (abolished 2009).",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -4,"Northumberland UA comprises the former districts of Alnwick, Berwick-upon-Tweed, Blyth Valley, Castle Morpeth, Tynedale and Wansbeck (abolished 2009).",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -5,"Cheshire East UA comprises the former districts of Congleton, Crewe and Nantwich and Macclesfield (abolished 2009).",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -6,"Cheshire West and Chester UA comprises the former districts of Chester, Ellesmere Port & Neston and Vale Royal (abolished 2009).",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -7,"Shropshire UA comprises the former districts of Bridgnorth, North Shropshire, Oswestry, Shrewsbury and Atcham and South Shropshire (abolished 2009).",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -8,Bedford UA comprises the former district of Bedford (abolished 2009).,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -9,Central Bedfordshire UA comprises the former districts of Mid Bedfordshire and South Bedfordshire (abolished 2009).,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -10,"Cornwall UA comprises the former districts of Caradon, Carrick, Kerrier, North Cornwall, Penwith and Restormel (abolished 2009).",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -11,The Isles of Scilly were recoded on 1 April 2009. They are separately administered by an Isles of Scilly council and do not form part of Cornwall UA.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -12,"Wiltshire UA comprises the former districts of Kennet, North Wiltshire, Salisbury and West Wiltshire (abolished 2009).",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA diff --git a/working_files/Monthly/Monthly2010Mortality-Notes.csv b/working_files/Monthly/Monthly2010Mortality-Notes.csv deleted file mode 100644 index e69de29..0000000 diff --git a/working_files/Monthly/Monthly2010Mortality.xls b/working_files/Monthly/Monthly2010Mortality.xls deleted file mode 100644 index cb9f014..0000000 Binary files a/working_files/Monthly/Monthly2010Mortality.xls and /dev/null differ diff --git a/working_files/Monthly/Monthly2011Mortality-Contents.csv b/working_files/Monthly/Monthly2011Mortality-Contents.csv deleted file mode 100644 index 2e1c058..0000000 --- a/working_files/Monthly/Monthly2011Mortality-Contents.csv +++ /dev/null @@ -1,8 +0,0 @@ -Contents,Monthly figures on deaths registered in England and Wales -NA,NA -NA,NA -Notes,NA -NA,NA -Figures for 2011,"Deaths (numbers): by region, 2011 registrations, England and Wales" -NA,NA -Related publications,Provides links to further mortality statistics based on death registrations diff --git a/working_files/Monthly/Monthly2011Mortality-Figures for 2011.csv b/working_files/Monthly/Monthly2011Mortality-Figures for 2011.csv deleted file mode 100644 index e2eee87..0000000 --- a/working_files/Monthly/Monthly2011Mortality-Figures for 2011.csv +++ /dev/null @@ -1,528 +0,0 @@ -"Monthly figures on deaths registered by area of usual residence, 2011",...2,...3,...4,...5,...6,...7,...8,...9,...10,...11,...12,...13,...14,England and Wales -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,Jan-11,Feb-11,Mar-11,Apr-11,May-11,Jun-11,Jul-11,Aug-11,Sep-11,Oct-11,Nov-11,Dec-11 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -TOTAL REGISTRATIONS 1,NA,NA,49992,39350,44209,36943,40100,40000,35646,38383,38358,37200,40624,43562 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -ENGLAND AND WALES,NA,NA,49893,39278,44129,36868,40003,39904,35541,38283,38253,37119,40543,43474 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -ENGLAND,NA,NA,46835,36733,41342,34521,37437,37398,33275,35924,35893,34740,38020,40744 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NORTH EAST,NA,NA,2523,2209,2320,1911,2193,2080,1912,2061,2015,1978,2163,2346 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,"County Durham UA 2,",NA,503,426,478,406,415,457,389,384,378,404,459,503 -NA,Former districts of:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,Chester-le-Street,53,38,47,41,37,48,33,32,35,41,36,47 -NA,NA,Derwentside,95,68,80,76,70,96,68,81,83,72,86,90 -NA,NA,Durham,75,57,78,74,60,77,69,64,67,70,69,86 -NA,NA,Easington,95,95,91,88,90,65,82,73,71,72,92,96 -NA,NA,Sedgefield,81,88,96,62,79,92,60,64,63,66,91,89 -NA,NA,Teesdale,28,20,24,17,20,23,24,22,20,23,18,21 -NA,NA,Wear Valley,76,60,62,48,59,56,53,48,39,60,67,74 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Darlington UA,NA,106,80,87,79,78,83,70,89,77,72,91,73 -NA,Hartlepool UA,NA,100,76,74,59,95,79,64,79,80,62,59,95 -NA,Middlesbrough UA,NA,128,99,148,89,108,91,124,115,126,113,110,105 -NA,Northumberland UA 3,NA,324,299,285,233,304,250,245,261,260,266,248,292 -NA,Former districts of:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,Alnwick,29,25,31,28,36,29,27,31,33,32,30,35 -NA,NA,Berwick-upon-Tweed,32,35,34,16,27,25,23,28,18,30,34,33 -NA,NA,Blyth Valley,79,70,59,59,63,56,49,64,67,63,62,79 -NA,NA,Castle Morpeth,54,53,53,30,48,37,44,44,41,46,36,47 -NA,NA,Tynedale,59,54,40,37,55,40,39,52,50,31,51,47 -NA,NA,Wansbeck,71,62,68,63,75,63,63,42,51,64,35,51 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Redcar and Cleveland UA,NA,138,119,114,112,127,115,118,124,101,109,111,120 -NA,Stockton-on-Tees UA,NA,160,126,152,126,143,118,114,139,145,129,149,161 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Tyne and Wear (Met County),NA,1064,984,982,807,923,887,788,870,848,823,936,997 -NA,NA,Gateshead,192,172,182,145,191,162,157,170,201,167,168,193 -NA,NA,Newcastle upon Tyne,231,219,226,183,175,214,169,176,163,174,235,215 -NA,NA,North Tyneside,201,186,182,146,161,161,129,164,167,156,169,192 -NA,NA,South Tyneside,179,154,153,136,147,131,135,125,103,125,141,154 -NA,NA,Sunderland,261,253,239,197,249,219,198,235,214,201,223,243 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NORTH WEST,NA,NA,6762,5434,5978,5122,5491,5478,4917,5341,5120,5062,5553,6114 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Blackburn with Darwen UA,NA,138,99,107,87,89,93,87,97,98,78,102,114 -NA,Blackpool UA,NA,182,177,166,129,151,147,126,151,123,138,140,188 -NA,Cheshire East UA 4,NA,377,286,328,267,255,277,253,263,276,260,282,296 -NA,Former districts of:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,Congleton,77,70,97,61,60,63,53,74,57,57,79,78 -NA,NA,Crewe and Nantwich,121,88,104,90,95,93,84,77,93,88,79,99 -NA,NA,Macclesfield,179,128,127,116,100,121,116,112,126,115,124,119 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Cheshire West and Chester UA 5,NA,319,258,294,236,249,261,236,262,247,224,264,305 -NA,Former districts of:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,Chester,116,109,107,86,93,93,89,107,95,83,101,111 -NA,NA,Ellesmere Port & Neston,81,68,83,60,56,68,48,73,54,64,66,84 -NA,NA,Vale Royal,122,81,104,90,100,100,99,82,98,77,97,110 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Halton UA,NA,115,86,91,77,97,93,89,81,95,75,111,99 -NA,Warrington UA,NA,164,138,164,125,143,146,104,147,146,147,142,181 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Cumbria,NA,544,455,459,408,468,466,419,427,461,405,455,497 -NA,NA,Allerdale,115,88,85,97,98,103,97,91,96,90,86,99 -NA,NA,Barrow-in-Furness,75,66,67,63,44,53,51,73,76,46,76,71 -NA,NA,Carlisle,117,80,78,77,102,101,81,76,78,86,87,99 -NA,NA,Copeland,56,69,74,47,70,69,58,58,68,67,54,73 -NA,NA,Eden,72,37,48,36,47,46,43,42,42,24,41,40 -NA,NA,South Lakeland,109,115,107,88,107,94,89,87,101,92,111,115 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Greater Manchester (Met County),NA,2297,1885,2097,1830,1962,1937,1705,1879,1761,1778,1941,2065 -NA,NA,Bolton,233,205,236,205,213,215,170,180,198,193,210,240 -NA,NA,Bury,164,152,170,114,143,150,111,136,129,140,132,152 -NA,NA,Manchester,360,284,313,291,287,287,272,281,263,274,280,295 -NA,NA,Oldham,188,171,176,187,172,162,158,167,152,134,148,189 -NA,NA,Rochdale,186,150,162,133,150,151,138,166,154,148,155,165 -NA,NA,Salford,211,153,184,201,179,173,149,173,141,171,199,197 -NA,NA,Stockport,235,209,215,168,244,202,195,220,186,191,228,230 -NA,NA,Tameside,217,185,217,163,187,197,161,181,174,166,161,172 -NA,NA,Trafford,184,143,171,153,149,153,145,137,141,135,171,165 -NA,NA,Wigan,319,233,253,215,238,247,206,238,223,226,257,260 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Lancashire,NA,1172,951,1057,886,972,962,907,937,897,890,988,1057 -NA,NA,Burnley,84,81,83,75,65,90,69,75,71,58,96,79 -NA,NA,Chorley,94,84,95,65,89,62,70,84,70,73,80,101 -NA,NA,Fylde,106,73,99,66,71,81,84,78,76,73,69,89 -NA,NA,Hyndburn,75,58,73,65,67,77,59,49,59,73,63,73 -NA,NA,Lancaster,146,122,114,98,140,126,109,99,121,110,118,130 -NA,NA,Pendle,76,74,68,56,66,72,58,65,57,66,78,76 -NA,NA,Preston,113,89,119,93,92,73,102,75,86,91,100,93 -NA,NA,Ribble Valley,50,41,57,36,39,47,43,45,41,46,54,44 -NA,NA,Rossendale,67,49,59,54,56,66,47,53,49,47,61,59 -NA,NA,South Ribble,112,82,77,84,81,65,81,98,61,67,81,81 -NA,NA,West Lancashire,120,88,78,81,92,97,73,93,88,79,81,98 -NA,NA,Wyre,129,110,135,113,114,106,112,123,118,107,107,134 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Merseyside (Met County),NA,1454,1099,1215,1077,1105,1096,991,1097,1016,1067,1128,1312 -NA,NA,Knowsley,136,112,129,116,117,86,76,122,110,94,112,146 -NA,NA,Liverpool,453,350,359,327,375,349,310,330,293,322,347,417 -NA,NA,Sefton,343,248,268,221,190,249,236,246,239,237,266,275 -NA,NA,St. Helens,160,123,156,118,155,147,125,128,121,145,130,173 -NA,NA,Wirral,362,266,303,295,268,265,244,271,253,269,273,301 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -YORKSHIRE AND THE HUMBER,NA,NA,5020,3884,4395,3760,3988,3943,3573,3800,3913,3782,4063,4406 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,East Riding of Yorkshire UA,NA,362,294,320,265,288,270,252,281,288,319,282,350 -NA,"Kingston upon Hull, City of UA",NA,247,205,191,181,188,181,188,187,191,179,195,225 -NA,North East Lincolnshire UA,NA,151,127,150,128,135,144,117,126,135,111,120,120 -NA,North Lincolnshire UA,NA,157,139,175,139,103,132,121,133,139,133,131,136 -NA,York UA,NA,213,137,142,147,154,143,113,158,155,121,164,147 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,North Yorkshire,NA,639,479,548,449,510,539,419,467,477,477,501,544 -NA,NA,Craven,54,48,47,43,50,61,44,44,45,55,30,69 -NA,NA,Hambleton,89,55,60,52,69,80,63,53,76,72,77,67 -NA,NA,Harrogate,162,130,123,126,140,145,101,113,102,109,136,129 -NA,NA,Richmondshire,49,37,56,36,33,38,31,34,35,34,30,41 -NA,NA,Ryedale,67,51,55,34,46,41,34,43,47,43,44,50 -NA,NA,Scarborough,140,111,125,101,112,121,99,130,114,107,125,119 -NA,NA,Selby,78,47,82,57,60,53,47,50,58,57,59,69 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,South Yorkshire (Met County),NA,1236,994,1142,934,1047,969,918,980,1034,962,1043,1115 -NA,NA,Barnsley,242,178,218,151,197,181,164,191,171,171,207,203 -NA,NA,Doncaster,270,205,261,248,225,224,220,235,243,240,223,278 -NA,NA,Rotherham,259,201,223,174,220,184,200,209,196,198,229,216 -NA,NA,Sheffield,465,410,440,361,405,380,334,345,424,353,384,418 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,West Yorkshire (Met County),NA,2015,1509,1727,1517,1563,1565,1445,1468,1494,1480,1627,1769 -NA,NA,Bradford,428,348,382,322,344,340,329,304,348,330,350,397 -NA,NA,Calderdale,198,129,162,162,143,164,136,153,144,126,151,182 -NA,NA,Kirklees,365,284,321,262,264,299,266,301,293,294,313,347 -NA,NA,Leeds,665,502,588,509,558,508,470,457,501,499,536,569 -NA,NA,Wakefield,359,246,274,262,254,254,244,253,208,231,277,274 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -EAST MIDLANDS,NA,NA,4392,3291,3664,3156,3209,3300,2901,3125,3170,3078,3442,3651 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Derby UA,NA,212,175,161,163,159,152,135,145,166,149,176,180 -NA,Leicester UA,NA,245,209,227,168,192,177,185,170,184,174,188,211 -NA,Nottingham UA,NA,235,163,198,190,193,183,166,180,170,169,186,224 -NA,Rutland UA,NA,40,19,38,21,28,30,34,34,23,31,32,32 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Derbyshire,NA,794,618,669,600,611,616,512,599,584,572,643,619 -NA,NA,Amber Valley,126,100,114,92,94,79,82,111,101,89,106,102 -NA,NA,Bolsover,79,73,78,61,47,61,51,65,68,59,65,71 -NA,NA,Chesterfield,119,70,110,96,93,103,66,95,92,78,103,93 -NA,NA,Derbyshire Dales,75,60,53,67,63,64,47,59,56,55,78,71 -NA,NA,Erewash,113,93,96,75,78,82,76,66,73,78,78,66 -NA,NA,High Peak,94,74,62,63,76,56,71,64,51,74,63,69 -NA,NA,North East Derbyshire,115,91,86,81,94,105,73,84,86,81,72,88 -NA,NA,South Derbyshire,73,57,70,65,66,66,46,55,57,58,78,59 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Leicestershire,NA,595,461,499,394,418,484,383,433,410,381,479,518 -NA,NA,Blaby,76,52,71,76,54,63,51,53,48,44,68,74 -NA,NA,Charnwood,160,118,122,81,85,128,90,120,110,92,128,126 -NA,NA,Harborough,73,62,62,47,59,58,56,51,56,52,50,65 -NA,NA,Hinckley and Bosworth,92,65,87,57,65,81,68,72,72,55,72,91 -NA,NA,Melton,56,44,25,36,44,39,35,36,25,42,50,34 -NA,NA,North West Leicestershire,83,75,73,55,60,63,44,65,60,53,75,78 -NA,NA,Oadby and Wigston,55,45,59,42,51,52,39,36,39,43,36,50 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Lincolnshire,NA,828,584,661,571,639,608,539,569,605,572,645,691 -NA,NA,Boston,71,48,55,36,52,52,43,43,64,50,73,67 -NA,NA,East Lindsey,196,147,158,136,150,140,138,152,138,128,155,152 -NA,NA,Lincoln,89,66,78,54,78,83,48,65,56,71,66,83 -NA,NA,North Kesteven,113,81,80,103,89,100,82,74,86,81,89,95 -NA,NA,South Holland,97,65,100,66,87,68,66,80,67,80,81,77 -NA,NA,South Kesteven,148,110,101,97,96,90,99,85,119,88,106,127 -NA,NA,West Lindsey,114,67,89,79,87,75,63,70,75,74,75,90 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Northamptonshire,NA,626,483,520,465,396,461,425,447,471,448,480,498 -NA,NA,Corby,47,54,43,46,30,42,30,44,53,34,42,49 -NA,NA,Daventry,72,53,64,57,37,59,48,47,49,52,59,51 -NA,NA,East Northamptonshire,72,66,68,67,63,47,60,63,61,67,64,67 -NA,NA,Kettering,96,71,73,56,64,56,59,66,71,69,65,74 -NA,NA,Northampton,195,128,164,151,112,156,132,131,140,114,150,141 -NA,NA,South Northamptonshire,64,60,55,46,46,47,51,52,51,58,44,66 -NA,NA,Wellingborough,80,51,53,42,44,54,45,44,46,54,56,50 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Nottinghamshire,NA,817,579,691,584,573,589,522,548,557,582,613,678 -NA,NA,Ashfield,116,84,96,90,92,81,77,89,103,87,103,100 -NA,NA,Bassetlaw,134,93,95,101,81,97,86,67,77,93,89,106 -NA,NA,Broxtowe,105,91,100,78,89,71,76,85,75,84,82,81 -NA,NA,Gedling,108,72,95,78,96,84,57,77,86,69,94,100 -NA,NA,Mansfield,136,72,89,79,76,65,67,74,62,89,83,99 -NA,NA,Newark and Sherwood,116,91,122,91,76,102,88,86,90,80,90,100 -NA,NA,Rushcliffe,102,76,94,67,63,89,71,70,64,80,72,92 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -WEST MIDLANDS,NA,NA,5064,4023,4520,3671,4054,4046,3742,3851,3869,3738,4161,4371 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,"Herefordshire, County of UA",NA,212,157,182,134,145,160,149,160,153,132,178,153 -NA,Shropshire UA 6,NA,299,256,255,208,254,248,230,224,227,267,255,264 -NA,Former districts of:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,Bridgnorth,52,43,59,41,41,45,48,36,34,51,43,43 -NA,NA,North Shropshire,61,51,50,43,49,59,41,37,39,60,49,63 -NA,NA,Oswestry,43,26,29,24,34,37,33,31,30,33,32,27 -NA,NA,Shrewsbury and Atcham,97,91,83,65,96,73,67,91,86,85,87,82 -NA,NA,South Shropshire,46,45,34,35,34,34,41,29,38,38,44,49 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Stoke-on-Trent UA,NA,229,203,196,193,202,197,167,168,188,178,178,212 -NA,Telford and Wrekin UA,NA,145,118,120,93,98,114,103,97,111,107,105,109 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Staffordshire,NA,720,616,684,618,633,654,567,622,580,556,672,669 -NA,NA,Cannock Chase,74,51,66,73,65,71,46,70,65,56,69,74 -NA,NA,East Staffordshire,101,76,94,72,90,89,82,84,73,80,84,73 -NA,NA,Lichfield,105,75,81,71,71,81,74,78,74,69,72,68 -NA,NA,Newcastle-under-Lyme,110,107,100,98,113,91,84,99,99,77,104,121 -NA,NA,South Staffordshire,110,85,88,77,78,92,75,61,75,68,104,103 -NA,NA,Stafford,103,101,116,112,92,97,85,105,81,103,105,93 -NA,NA,Staffordshire Moorlands,70,76,94,71,73,79,81,84,71,70,84,84 -NA,NA,Tamworth,47,45,45,44,51,54,40,41,42,33,50,53 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Warwickshire,NA,497,411,487,374,372,424,366,351,372,332,400,437 -NA,NA,North Warwickshire,53,54,62,37,38,60,58,37,57,35,60,66 -NA,NA,Nuneaton and Bedworth,111,105,104,96,86,92,77,89,81,83,85,96 -NA,NA,Rugby,94,87,68,56,78,64,57,66,65,64,69,67 -NA,NA,Stratford-on-Avon,116,90,132,95,89,116,88,86,86,74,82,106 -NA,NA,Warwick,123,75,121,90,81,92,86,73,83,76,104,102 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,West Midlands (Met County),NA,2419,1841,2100,1646,1925,1812,1745,1830,1838,1729,1930,2058 -NA,NA,Birmingham,835,630,710,551,682,656,634,632,676,589,672,718 -NA,NA,Coventry,273,204,239,202,200,198,178,221,231,201,241,242 -NA,NA,Dudley,305,258,282,194,264,231,230,245,223,214,232,255 -NA,NA,Sandwell,283,217,273,222,234,199,205,234,215,208,241,244 -NA,NA,Solihull,197,158,147,134,153,137,136,144,129,131,156,167 -NA,NA,Walsall,257,182,218,166,205,215,198,175,179,205,197,229 -NA,NA,Wolverhampton,269,192,231,177,187,176,164,179,185,181,191,203 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Worcestershire,NA,543,421,496,405,425,437,415,399,400,437,443,469 -NA,NA,Bromsgrove,107,75,90,62,69,84,60,74,64,78,80,84 -NA,NA,Malvern Hills,91,71,83,79,81,69,79,60,57,73,84,84 -NA,NA,Redditch,74,46,66,51,48,48,54,63,46,56,40,52 -NA,NA,Worcester,75,68,68,48,58,75,59,52,54,64,59,58 -NA,NA,Wychavon,102,97,97,83,89,87,78,72,94,91,98,106 -NA,NA,Wyre Forest,94,64,92,82,80,74,85,78,85,75,82,85 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -EAST,NA,NA,5041,4086,4681,3892,4185,4248,3718,3963,4049,3872,4248,4578 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Bedford UA 7,NA,119,96,94,78,105,118,109,109,105,99,105,132 -NA,Former district of:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,Bedford,119,96,94,78,105,118,109,109,105,99,105,132 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Central Bedfordshire UA 8,NA,169,143,165,142,161,154,126,151,154,137,165,155 -NA,Former districts of:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,Mid Bedfordshire,77,65,77,79,71,75,60,73,75,71,71,71 -NA,NA,South Bedfordshire,92,78,88,63,90,79,66,78,79,66,94,84 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Luton UA,NA,140,113,127,116,100,81,94,88,119,103,112,116 -NA,Peterborough UA,NA,135,126,119,97,106,139,108,102,123,113,113,145 -NA,Southend-on-Sea UA,NA,174,142,151,135,145,152,132,133,133,121,148,156 -NA,Thurrock UA,NA,110,89,102,86,86,102,86,97,106,97,96,85 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Cambridgeshire,NA,416,393,407,320,397,421,351,360,354,368,364,399 -NA,NA,Cambridge,61,69,65,52,57,68,59,51,54,77,53,81 -NA,NA,East Cambridgeshire,72,59,41,50,60,59,53,64,57,49,54,59 -NA,NA,Fenland,96,83,101,61,78,96,69,91,87,72,79,79 -NA,NA,Huntingdonshire,97,98,113,92,120,94,98,90,86,85,100,91 -NA,NA,South Cambridgeshire,90,84,87,65,82,104,72,64,70,85,78,89 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Essex,NA,1287,1035,1228,989,1071,1059,961,1017,938,959,1062,1258 -NA,NA,Basildon,144,114,142,105,111,115,105,104,99,117,121,130 -NA,NA,Braintree,108,89,110,99,106,109,93,95,85,81,108,141 -NA,NA,Brentwood,71,63,62,51,48,54,57,58,52,42,52,69 -NA,NA,Castle Point,87,69,86,65,79,69,79,68,58,65,95,85 -NA,NA,Chelmsford,127,109,123,119,105,104,85,103,92,119,114,124 -NA,NA,Colchester,141,116,145,116,119,122,100,113,115,99,96,150 -NA,NA,Epping Forest,125,89,116,82,85,91,76,104,86,84,93,108 -NA,NA,Harlow,56,55,65,51,68,56,47,60,50,61,61,73 -NA,NA,Maldon,66,42,57,48,46,31,53,57,45,33,48,58 -NA,NA,Rochford,69,48,71,55,58,50,55,65,45,59,63,66 -NA,NA,Tendring,234,177,188,148,181,202,158,148,171,156,159,187 -NA,NA,Uttlesford,59,64,63,50,65,56,53,42,40,43,52,67 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Hertfordshire,NA,871,696,829,698,681,716,620,701,746,648,742,760 -NA,NA,Broxbourne,72,69,58,70,51,59,49,52,51,50,53,53 -NA,NA,Dacorum,102,81,103,77,93,98,89,89,113,74,104,102 -NA,NA,East Hertfordshire,102,87,90,73,75,69,78,75,71,67,90,74 -NA,NA,Hertsmere,100,65,77,62,58,59,72,73,85,64,65,61 -NA,NA,North Hertfordshire,119,83,118,98,101,98,83,93,97,115,105,93 -NA,NA,St Albans,93,87,91,84,79,89,67,81,94,75,85,97 -NA,NA,Stevenage,57,46,61,52,52,59,41,58,55,44,40,67 -NA,NA,Three Rivers,78,55,65,61,61,53,54,59,47,55,71,74 -NA,NA,Watford,60,48,70,41,39,57,40,56,59,48,57,58 -NA,NA,Welwyn Hatfield,88,75,96,80,72,75,47,65,74,56,72,81 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Norfolk,NA,891,722,826,705,741,742,650,680,712,683,722,795 -NA,NA,Breckland,133,127,133,123,101,124,101,114,124,96,113,125 -NA,NA,Broadland,128,110,132,112,108,92,79,93,86,118,114,109 -NA,NA,Great Yarmouth,111,94,114,81,81,83,79,100,88,92,90,107 -NA,NA,King’s Lynn and West Norfolk,170,123,137,126,146,144,118,106,133,131,121,132 -NA,NA,North Norfolk,126,87,114,86,118,120,107,104,109,84,100,120 -NA,NA,Norwich,108,98,95,81,79,85,80,81,90,85,85,95 -NA,NA,South Norfolk,115,83,101,96,108,94,86,82,82,77,99,107 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Suffolk,NA,729,531,633,526,592,564,481,525,559,544,619,577 -NA,NA,Babergh,93,70,68,58,57,73,56,62,68,64,68,71 -NA,NA,Forest Heath,53,31,41,39,36,41,29,30,41,41,38,35 -NA,NA,Ipswich,122,83,99,70,119,88,75,73,95,73,100,89 -NA,NA,Mid Suffolk,79,63,75,58,82,70,68,62,75,69,81,69 -NA,NA,St Edmundsbury,83,62,93,80,65,67,63,86,71,68,89,73 -NA,NA,Suffolk Coastal,166,104,139,104,110,109,94,105,118,111,116,118 -NA,NA,Waveney,133,118,118,117,123,116,96,107,91,118,127,122 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -LONDON,NA,NA,4783,3733,4197,3593,3734,3839,3448,3891,3755,3593,3890,4229 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Inner London,NA,1546,1220,1396,1182,1287,1232,1107,1312,1174,1187,1234,1318 -NA,NA,Camden,113,86,100,98,78,81,86,98,87,100,82,94 -NA,NA,City of London,2,2,3,1,-,1,4,7,2,5,4,2 -NA,NA,Hackney,85,81,91,97,92,83,66,96,66,89,83,80 -NA,NA,Hammersmith and Fulham,103,89,74,74,77,63,71,87,73,64,81,81 -NA,NA,Haringey,113,79,103,92,104,87,89,98,74,88,78,102 -NA,NA,Islington,101,81,95,91,94,77,73,90,88,77,94,81 -NA,NA,Kensington and Chelsea,91,54,76,61,75,70,50,68,49,77,57,86 -NA,NA,Lambeth,140,107,129,100,123,120,90,117,115,98,108,108 -NA,NA,Lewisham,172,135,157,120,114,134,116,138,143,108,131,139 -NA,NA,Newham,135,95,107,92,100,93,92,99,109,96,89,124 -NA,NA,Southwark,152,116,117,93,112,123,97,106,100,111,109,104 -NA,NA,Tower Hamlets,96,73,106,70,96,76,75,87,74,75,103,82 -NA,NA,Wandsworth,158,135,144,115,123,123,106,126,117,118,117,139 -NA,NA,Westminster,85,87,94,78,99,101,92,95,77,81,98,96 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Outer London,NA,3237,2513,2801,2411,2447,2607,2341,2579,2581,2406,2656,2911 -NA,NA,Barking and Dagenham,131,82,121,95,88,94,97,85,93,99,114,119 -NA,NA,Barnet,223,182,208,170,194,196,159,212,181,166,179,235 -NA,NA,Bexley,209,139,180,129,138,146,148,132,177,130,142,177 -NA,NA,Brent,135,105,124,128,108,125,105,143,125,121,122,130 -NA,NA,Bromley,269,210,245,200,191,185,194,229,212,176,223,196 -NA,NA,Croydon,233,198,193,167,183,194,168,189,212,190,217,221 -NA,NA,Ealing,187,166,128,142,135,149,152,160,168,148,147,184 -NA,NA,Enfield,200,162,181,136,143,143,145,135,156,128,147,170 -NA,NA,Greenwich,169,103,129,129,119,155,107,124,124,103,145,136 -NA,NA,Harrow,112,129,128,101,115,126,106,119,122,111,106,139 -NA,NA,Havering,229,147,190,173,148,180,154,164,161,192,180,187 -NA,NA,Hillingdon,186,143,173,123,136,152,138,125,145,147,137,175 -NA,NA,Hounslow,155,116,132,107,104,120,93,117,115,122,103,119 -NA,NA,Kingston upon Thames,108,92,89,74,89,76,73,74,60,85,106,103 -NA,NA,Merton,114,96,96,104,96,104,99,89,95,86,95,97 -NA,NA,Redbridge,190,125,148,139,155,144,112,139,134,138,150,159 -NA,NA,Richmond upon Thames,100,90,96,83,100,109,82,107,101,64,105,116 -NA,NA,Sutton,148,106,114,131,104,103,109,109,101,90,120,136 -NA,NA,Waltham Forest,139,122,126,80,101,106,100,127,99,110,118,112 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -SOUTH EAST,NA,NA,7879,5966,6869,5545,6310,6141,5271,5804,5926,5748,6161,6515 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Bracknell Forest UA,NA,70,50,68,46,59,60,53,61,59,51,66,58 -NA,Brighton and Hove UA,NA,227,187,187,149,163,175,145,154,182,154,184,174 -NA,Isle of Wight UA,NA,197,141,136,117,123,145,105,137,129,126,121,124 -NA,Medway UA,NA,218,157,170,166,181,178,141,154,158,165,160,165 -NA,Milton Keynes UA,NA,159,135,148,118,124,122,118,125,129,105,121,148 -NA,Portsmouth UA,NA,206,143,159,146,130,149,98,126,151,112,146,140 -NA,Reading UA,NA,109,75,92,75,87,80,67,90,87,71,89,97 -NA,Slough UA,NA,77,53,81,65,78,65,43,56,57,54,68,80 -NA,Southampton UA,NA,192,147,141,126,131,152,117,150,134,143,155,162 -NA,West Berkshire UA,NA,120,90,116,68,90,94,81,86,109,79,87,102 -NA,Windsor and Maidenhead UA,NA,99,81,109,109,100,89,73,87,103,97,96,98 -NA,Wokingham UA,NA,93,91,90,77,105,83,81,81,84,81,98,80 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Buckinghamshire,NA,401,273,356,288,340,334,278,305,287,288,293,350 -NA,NA,Aylesbury Vale,138,90,129,81,96,115,100,87,107,109,101,131 -NA,NA,Chiltern,65,67,65,58,71,70,44,53,54,53,54,70 -NA,NA,South Bucks,56,32,46,40,54,51,46,55,49,51,36,56 -NA,NA,Wycombe,142,84,116,109,119,98,88,110,77,75,102,93 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,East Sussex,NA,692,500,542,461,543,499,423,475,491,481,520,512 -NA,NA,Eastbourne,129,108,94,76,105,88,95,80,106,111,104,108 -NA,NA,Hastings,102,79,88,85,90,71,65,79,72,79,94,84 -NA,NA,Lewes,128,88,99,85,91,84,69,82,78,69,85,92 -NA,NA,Rother,144,110,114,104,115,115,86,111,94,92,104,97 -NA,NA,Wealden,189,115,147,111,142,141,108,123,141,130,133,131 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Hampshire,NA,1107,881,1087,855,956,957,861,877,944,858,949,1065 -NA,NA,Basingstoke and Deane,123,93,114,82,90,81,88,97,99,91,98,120 -NA,NA,East Hampshire,93,97,98,86,89,90,81,66,81,89,82,95 -NA,NA,Eastleigh,83,61,92,77,68,70,78,73,86,63,86,74 -NA,NA,Fareham,116,79,89,83,87,90,87,81,92,96,97,94 -NA,NA,Gosport,68,49,77,55,75,64,54,74,65,53,59,73 -NA,NA,Hart,63,40,62,47,52,58,34,50,55,38,43,45 -NA,NA,Havant,111,95,130,89,110,116,90,96,103,91,122,105 -NA,NA,New Forest,190,169,185,142,167,178,171,142,144,166,159,185 -NA,NA,Rushmoor,67,41,62,49,63,52,34,59,56,33,42,66 -NA,NA,Test Valley,94,70,79,75,82,75,67,74,82,69,80,115 -NA,NA,Winchester,99,87,99,70,73,83,77,65,81,69,81,93 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Kent,NA,1414,1090,1260,962,1160,1130,977,1021,1038,1140,1173,1069 -NA,NA,Ashford,97,72,87,64,84,70,60,74,71,82,62,65 -NA,NA,Canterbury,127,102,138,117,129,138,101,109,125,128,145,122 -NA,NA,Dartford,94,54,83,63,74,75,81,57,67,68,78,64 -NA,NA,Dover,107,103,133,84,106,109,86,98,91,111,99,104 -NA,NA,Gravesham,95,73,65,56,67,60,69,52,71,88,79,57 -NA,NA,Maidstone,141,103,95,103,121,107,106,113,118,110,111,79 -NA,NA,Sevenoaks,116,88,85,64,90,84,65,77,68,83,90,87 -NA,NA,Shepway,122,93,116,83,99,92,75,83,84,113,101,98 -NA,NA,Swale,135,96,124,72,92,95,71,99,89,87,103,97 -NA,NA,Thanet,153,146,167,136,135,134,136,128,132,127,148,147 -NA,NA,Tonbridge and Malling,107,79,94,63,88,90,65,64,62,76,73,72 -NA,NA,Tunbridge Wells,120,81,73,57,75,76,62,67,60,67,84,77 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Oxfordshire,NA,554,399,461,400,451,403,322,395,368,379,439,487 -NA,NA,Cherwell,120,80,88,76,92,83,62,83,74,71,96,100 -NA,NA,Oxford,98,75,83,70,83,76,70,85,64,69,74,102 -NA,NA,South Oxfordshire,116,96,116,88,98,87,75,71,81,88,93,108 -NA,NA,Vale of White Horse,114,90,87,89,90,84,58,78,79,84,98,93 -NA,NA,West Oxfordshire,106,58,87,77,88,73,57,78,70,67,78,84 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Surrey,NA,1045,752,882,702,804,755,695,740,728,684,773,859 -NA,NA,Elmbridge,121,83,94,82,93,79,75,74,90,81,88,95 -NA,NA,Epsom and Ewell,50,48,46,41,48,48,52,48,39,47,54,51 -NA,NA,Guildford,103,78,97,68,88,78,70,73,73,57,85,94 -NA,NA,Mole Valley,93,68,75,63,70,51,51,65,73,58,66,72 -NA,NA,Reigate and Banstead,146,102,105,98,107,84,84,102,94,99,110,106 -NA,NA,Runnymede,76,54,63,54,44,66,45,55,52,42,55,66 -NA,NA,Spelthorne,92,70,92,55,77,63,64,65,60,64,70,95 -NA,NA,Surrey Heath,75,49,66,55,61,66,55,71,44,49,43,58 -NA,NA,Tandridge,77,64,71,45,67,64,56,60,69,59,72,63 -NA,NA,Waverley,118,87,110,80,82,92,75,76,91,67,76,96 -NA,NA,Woking,94,49,63,61,67,64,68,51,43,61,54,63 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,West Sussex,NA,899,721,784,615,685,671,593,684,688,680,623,745 -NA,NA,Adur,64,67,70,42,49,48,48,56,56,55,67,68 -NA,NA,Arun,224,156,188,151,165,164,144,175,165,163,139,163 -NA,NA,Chichester,146,133,128,101,109,103,90,114,118,112,91,121 -NA,NA,Crawley,83,56,71,62,55,68,46,56,55,62,49,69 -NA,NA,Horsham,138,106,105,74,101,95,68,90,85,86,87,114 -NA,NA,Mid Sussex,120,91,115,93,100,106,108,94,93,104,103,95 -NA,NA,Worthing,124,112,107,92,106,87,89,99,116,98,87,115 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -SOUTH WEST,NA,NA,5371,4107,4718,3871,4273,4323,3793,4088,4076,3889,4339,4534 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Bath and North East Somerset UA,NA,153,125,141,120,124,141,129,122,117,134,121,133 -NA,Bournemouth UA,NA,225,146,166,151,141,183,136,140,163,143,137,177 -NA,"Bristol, City of UA",NA,334,240,302,260,278,254,235,300,257,267,277,286 -NA,Cornwall UA 9,NA,604,466,506,397,487,455,408,433,446,463,490,488 -NA,Former districts of:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,Caradon,96,77,76,53,74,72,81,80,76,70,84,67 -NA,NA,Carrick,113,88,85,61,94,83,64,82,80,94,92,88 -NA,NA,Kerrier,102,82,92,88,83,74,78,64,64,85,80,103 -NA,NA,North Cornwall,91,66,73,66,64,62,73,62,86,81,76,86 -NA,NA,Penwith,76,57,74,60,71,57,47,57,61,57,76,61 -NA,NA,Restormel,126,96,106,69,101,107,65,88,79,76,82,83 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Isles of Scilly UA 10,NA,3,1,4,2,1,1,1,3,1,2,-,1 -NA,North Somerset UA,NA,232,177,194,155,159,189,160,193,188,171,196,200 -NA,Plymouth UA,NA,233,185,241,172,180,197,148,167,177,149,184,203 -NA,Poole UA,NA,147,118,125,111,126,142,119,120,116,122,142,136 -NA,South Gloucestershire UA,NA,192,166,179,158,176,152,154,173,148,144,172,197 -NA,Swindon UA,NA,136,143,155,104,127,157,104,124,128,115,151,161 -NA,Torbay UA,NA,190,133,149,118,135,142,135,120,134,120,126,170 -NA,Wiltshire UA 11,NA,422,300,407,317,357,320,304,322,331,320,382,356 -NA,Former districts of:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,Kennet,74,47,67,53,53,66,38,62,60,42,56,51 -NA,NA,North Wiltshire,127,84,96,94,97,77,82,83,109,78,106,94 -NA,NA,Salisbury,106,88,122,94,115,82,92,77,81,97,107,107 -NA,NA,West Wiltshire,115,81,122,76,92,95,92,100,81,103,113,104 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Devon,NA,951,659,746,603,694,664,620,623,613,615,663,651 -NA,NA,East Devon,201,141,154,119,134,143,125,143,138,132,154,146 -NA,NA,Exeter,102,78,98,86,87,78,67,70,72,65,82,77 -NA,NA,Mid Devon,90,45,73,50,65,58,64,51,60,50,58,64 -NA,NA,North Devon,119,89,103,81,89,101,84,83,78,75,81,72 -NA,NA,South Hams,116,67,71,70,66,68,61,78,58,68,67,83 -NA,NA,Teignbridge,172,135,127,98,143,102,109,101,111,117,103,104 -NA,NA,Torridge,93,60,67,55,61,66,62,61,52,51,68,54 -NA,NA,West Devon,58,44,53,44,49,48,48,36,44,57,50,51 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Dorset,NA,448,366,404,386,408,384,354,358,403,286,407,419 -NA,NA,Christchurch,62,62,57,43,51,61,53,56,53,39,50,49 -NA,NA,East Dorset,99,87,82,82,80,89,78,70,85,62,100,94 -NA,NA,North Dorset,55,44,56,44,57,56,50,61,67,32,47,62 -NA,NA,Purbeck,51,36,37,47,37,32,39,41,32,20,42,43 -NA,NA,West Dorset,117,77,114,110,135,88,91,77,108,78,105,106 -NA,NA,Weymouth and Portland,64,60,58,60,48,58,43,53,58,55,63,65 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Gloucestershire,NA,547,462,514,432,431,496,382,450,412,395,452,497 -NA,NA,Cheltenham,97,90,87,81,81,90,66,71,72,61,83,98 -NA,NA,Cotswold,74,65,69,63,61,66,71,74,68,58,52,79 -NA,NA,Forest of Dean,70,64,78,68,64,72,46,70,57,70,87,77 -NA,NA,Gloucester,112,96,100,74,76,99,69,76,76,64,72,89 -NA,NA,Stroud,118,80,102,84,97,97,65,89,79,76,95,93 -NA,NA,Tewkesbury,76,67,78,62,52,72,65,70,60,66,63,61 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Somerset,NA,554,420,485,385,449,446,404,440,442,443,439,459 -NA,NA,Mendip,108,81,85,75,93,77,84,88,80,87,71,85 -NA,NA,Sedgemoor,106,83,94,93,89,90,78,89,100,91,83,101 -NA,NA,South Somerset,178,136,141,101,135,130,120,123,146,132,130,139 -NA,NA,Taunton Deane,122,84,122,76,93,107,91,93,87,97,115,97 -NA,NA,West Somerset,40,36,43,40,39,42,31,47,29,36,40,37 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -WALES,NA,NA,3058,2545,2787,2347,2566,2506,2266,2359,2360,2379,2523,2730 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,Isle of Anglesey,78,62,84,61,57,50,62,55,81,60,66,67 -NA,NA,Gwynedd,129,87,122,93,100,86,91,95,82,81,93,114 -NA,NA,Conwy,149,109,134,118,107,108,127,117,117,121,139,129 -NA,NA,Denbighshire,113,87,97,94,85,72,69,76,109,84,90,96 -NA,NA,Flintshire,147,112,124,92,109,104,97,105,111,111,106,121 -NA,NA,Wrexham,136,98,128,107,93,94,94,105,90,95,102,105 -NA,NA,Powys,133,123,128,107,130,106,122,127,112,110,107,121 -NA,NA,Ceredigion,84,56,64,55,58,84,57,54,59,70,78,55 -NA,NA,Pembrokeshire,137,101,113,93,102,111,104,109,104,112,93,124 -NA,NA,Carmarthenshire,192,177,185,148,179,173,158,149,133,168,207,183 -NA,NA,Swansea,241,201,221,191,200,217,161,171,185,191,205,230 -NA,NA,Neath Port Talbot,171,148,128,101,165,134,108,123,126,135,130,132 -NA,NA,Bridgend,146,135,130,114,115,109,91,112,128,112,116,142 -NA,NA,The Vale of Glamorgan,95,82,91,101,103,106,79,80,92,78,95,102 -NA,NA,Cardiff,246,212,258,203,242,232,198,207,174,187,211,239 -NA,NA,"Rhondda, Cynon, Taff",228,220,207,184,237,217,195,190,164,173,215,221 -NA,NA,Merthyr Tydfil,64,46,57,46,52,59,29,38,42,52,40,63 -NA,NA,Caerphilly,184,147,165,133,121,141,122,121,139,136,125,138 -NA,NA,Blaenau Gwent,88,69,83,61,64,64,56,60,63,60,66,57 -NA,NA,Torfaen,74,91,81,85,65,61,61,85,72,79,70,89 -NA,NA,Monmouthshire,76,84,70,74,62,79,68,76,79,66,67,79 -NA,NA,Newport,147,98,117,86,120,99,117,104,98,98,102,123 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,Non-residents of England & Wales,99,72,80,75,97,96,105,100,105,81,81,88 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Footnotes:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -1,The deaths of those whose usual residence is outside England and Wales are included in 'total registrations' but excluded from any sub-division of England and Wales.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2,"County Durham UA comprises the former districts of Chester-le-Street, Derwentside, Durham, Easington, Sedgefield, Teesdale and Wear Valley (abolished 2009).",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -3,"Northumberland UA comprises the former districts of Alnwick, Berwick-upon-Tweed, Blyth Valley, Castle Morpeth, Tynedale and Wansbeck (abolished 2009).",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -4,"Cheshire East UA comprises the former districts of Congleton, Crewe and Nantwich and Macclesfield (abolished 2009).",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -5,"Cheshire West and Chester UA comprises the former districts of Chester, Ellesmere Port & Neston and Vale Royal (abolished 2009).",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -6,"Shropshire UA comprises the former districts of Bridgnorth, North Shropshire, Oswestry, Shrewsbury and Atcham and South Shropshire (abolished 2009).",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -7,Bedford UA comprises the former district of Bedford (abolished 2009).,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -8,Central Bedfordshire UA comprises the former districts of Mid Bedfordshire and South Bedfordshire (abolished 2009).,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -9,"Cornwall UA comprises the former districts of Caradon, Carrick, Kerrier, North Cornwall, Penwith and Restormel (abolished 2009).",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -10,The Isles of Scilly were recoded on 1 April 2009. They are separately administered by an Isles of Scilly council and do not form part of Cornwall UA.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -11,"Wiltshire UA comprises the former districts of Kennet, North Wiltshire, Salisbury and West Wiltshire (abolished 2009).",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Source: Office for National Statistics,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA diff --git a/working_files/Monthly/Monthly2011Mortality-Notes.csv b/working_files/Monthly/Monthly2011Mortality-Notes.csv deleted file mode 100644 index e69de29..0000000 diff --git a/working_files/Monthly/Monthly2011Mortality-Related Publications.csv b/working_files/Monthly/Monthly2011Mortality-Related Publications.csv deleted file mode 100644 index f3d71f3..0000000 --- a/working_files/Monthly/Monthly2011Mortality-Related Publications.csv +++ /dev/null @@ -1,35 +0,0 @@ -Related publications -Further mortality statistics based on death registrations are available on the ONS website: -NA -"Interactive Mapping Tool, England and Wales" -An interactive mapping tool which enables trends in mortality to be analysed at the local level is available at: -www.neighbourhood.statistics.gov.uk/HTMLDocs/dvc9/MortalityMap.html -NA -"Death Summary Tables, England and Wales" -The summary tables provide key death registration statistics for the reference year and are available at: -www.ons.gov.uk/ons/publications/all-releases.html?definition=tcm%3A77-27457 -NA -"Deaths by single year of age, United Kingdom and England and Wales" -Death registrations by single year of age for the United Kingdom and England and Wales from 1961 onwards are available at: -www.ons.gov.uk/ons/publications/all-releases.html?definition=tcm%3A77-229723 -NA -"Annual Reference Volume: Series DR, England and Wales" -Series DR (Mortality Statistics: Deaths Registered in England and Wales) provides detailed death registration statistics for the reference year. This includes numbers of deaths by detailed underlying cause by age-sex group defined by the different chapters of the Tenth Revision of the International Classification of Diseases and Related health Problems (ICD-10). Series DR can be found at: -www.ons.gov.uk/ons/publications/all-releases.html?definition=tcm%3A77-27475 -NA -"Injury and Poisoning mortality, England and Wales" -Presents annual data on deaths from injury and poisoning in England and Wales using a matrix of mechanism by intent developed by the International Collaborative Effort (ICE) on injury statistics. -www.ons.gov.uk/ons/publications/all-releases.html?definition=tcm%3A77-210652 -NA -"Vital Statistics: Population and Health Reference Table, United Kingdom and constituent countries" -"These tables provide annual and quarterly data for a selection of key statistics under the following themes: population, demography and health. Figures for the latest quarters and years may be provisional, these will be updated to final figures when data is available. These tables can be found at:" -www.ons.gov.uk/ons/publications/all-releases.html?definition=tcm%3A77-210727 -NA -Mortality Statistics: Deaths registered in England and Wales by area of usual residence -Presents data on death registrations in the United Kingdom by area of usual residence. The release contains a summary table providing key mortality measures (numbers and rates including age standardised mortality rates) for the United Kingdom and its constituent countries and a table providing numbers of deaths in England and Wales by age and sex. These tables can be found at: -www.ons.gov.uk/ons/publications/all-releases.html?definition=tcm%3A77-27478 -NA -"Weekly provisional figures on deaths registered, England and Wales" -Weekly death figures provide provisional counts of the number of deaths registered in England and Wales in the latest eight weeks for which data are available. These tables can be found at: -NA -http://www.ons.gov.uk/ons/publications/all-releases.html?definition=tcm%3A77-28713 diff --git a/working_files/Monthly/Monthly2011Mortality.xls b/working_files/Monthly/Monthly2011Mortality.xls deleted file mode 100644 index f40c93f..0000000 Binary files a/working_files/Monthly/Monthly2011Mortality.xls and /dev/null differ diff --git a/working_files/Monthly/Monthly2012Mortality-Contents.csv b/working_files/Monthly/Monthly2012Mortality-Contents.csv deleted file mode 100644 index b171d95..0000000 --- a/working_files/Monthly/Monthly2012Mortality-Contents.csv +++ /dev/null @@ -1,10 +0,0 @@ -Contents,Monthly Figures on Deaths Registered in England and Wales -NA,NA -NA,NA -Metadata,Information on monthly deaths -NA,NA -Terms and conditions,Terms and conditions -NA,NA -Figures for 2012,"Deaths (numbers): by region, 2012 registrations, England and Wales" -NA,NA -Related publications,Provides links to further mortality statistics based on death registrations diff --git a/working_files/Monthly/Monthly2012Mortality-Figures for 2012.csv b/working_files/Monthly/Monthly2012Mortality-Figures for 2012.csv deleted file mode 100644 index 57ae880..0000000 --- a/working_files/Monthly/Monthly2012Mortality-Figures for 2012.csv +++ /dev/null @@ -1,486 +0,0 @@ -Contents,...2,...3,...4,...5,...6,...7,...8,...9,...10,...11,...12,...13,...14,...15 -"Monthly figures on deaths registered by area of usual residence1, 2012",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,England and Wales -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Area of usual residence,NA,NA,Jan-12,Feb-12,Mar-12,Apr-12,May-12,Jun-12,Jul-12,Aug-12,Sep-12,Oct-12,Nov-12,Dec-12 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"ENGLAND, WALES AND ELSEWHERE 2",NA,NA,46897,44537,44142,41685,44008,36680,39293,39035,35216,43169,42124,42545 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -ENGLAND AND WALES,NA,NA,46804,44472,44067,41596,43917,36594,39201,38924,35133,43083,42033,42457 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -ENGLAND,NA,NA,43882,41861,41299,38928,41087,34303,36657,36435,32934,40394,39330,39669 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -WALES,NA,NA,2922,2611,2768,2668,2830,2291,2544,2489,2199,2689,2703,2788 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NORTH EAST,NA,NA,2472,2187,2188,2241,2287,1978,2113,2024,1922,2247,2249,2420 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,County Durham UA 3,NA,517,467,469,448,422,370,418,405,382,485,490,465 -NA,Darlington UA,NA,105,94,84,109,104,74,77,83,60,94,100,90 -NA,Hartlepool UA,NA,80,78,78,77,85,74,71,54,61,84,74,89 -NA,Middlesbrough UA,NA,122,119,121,120,123,119,96,113,85,127,109,140 -NA,Northumberland UA 4,NA,308,267,266,295,336,254,295,272,268,287,315,292 -NA,Redcar and Cleveland UA,NA,148,113,111,136,115,98,106,107,105,117,119,125 -NA,Stockton-on-Tees UA,NA,135,130,149,126,147,131,131,107,135,143,125,175 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Tyne and Wear (Met County),NA,1057,919,910,930,955,858,919,883,826,910,917,1044 -NA,NA,Gateshead,204,171,166,153,200,181,199,150,158,200,167,195 -NA,NA,Newcastle upon Tyne,218,222,191,226,198,190,191,190,170,194,210,223 -NA,NA,North Tyneside,201,149,149,174,178,149,171,161,161,152,156,186 -NA,NA,South Tyneside,150,139,142,146,134,123,145,127,136,141,125,178 -NA,NA,Sunderland,284,238,262,231,245,215,213,255,201,223,259,262 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NORTH WEST,NA,NA,6329,5926,5910,5717,6164,5035,5406,5269,4905,6112,5666,5823 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Blackburn with Darwen UA,NA,117,116,110,123,107,85,72,104,79,102,109,101 -NA,Blackpool UA,NA,149,174,165,151,179,135,153,136,133,152,156,139 -NA,Cheshire East UA 5,NA,357,362,309,295,311,276,293,278,274,318,295,330 -NA,Cheshire West and Chester UA 6,NA,328,277,313,281,296,227,238,259,264,304,272,257 -NA,Halton UA,NA,118,101,102,104,116,86,93,94,96,114,92,90 -NA,Warrington UA,NA,174,134,154,164,159,149,161,125,143,157,149,148 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Cumbria,NA,485,414,464,438,498,358,404,416,391,525,468,538 -NA,NA,Allerdale,107,75,97,81,107,75,81,77,79,105,101,122 -NA,NA,Barrow-in-Furness,60,43,61,61,76,38,41,47,59,69,58,70 -NA,NA,Carlisle,112,97,95,98,104,79,85,84,78,99,104,117 -NA,NA,Copeland,56,61,62,53,53,54,68,61,59,76,72,67 -NA,NA,Eden,43,37,43,49,49,40,32,41,37,52,51,52 -NA,NA,South Lakeland,107,101,106,96,109,72,97,106,79,124,82,110 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Greater Manchester (Met County),NA,2261,2026,2100,2006,2085,1815,1918,1882,1696,2095,1925,1916 -NA,NA,Bolton,241,241,225,221,236,173,190,194,191,204,221,221 -NA,NA,Bury,155,147,147,151,150,164,147,142,139,156,139,148 -NA,NA,Manchester,329,291,298,294,289,271,295,281,246,320,279,273 -NA,NA,Oldham,186,174,173,153,192,160,152,172,144,164,146,167 -NA,NA,Rochdale,199,184,160,153,158,162,148,134,138,152,156,172 -NA,NA,Salford,199,201,187,193,201,177,177,180,172,191,171,171 -NA,NA,Stockport,260,213,250,225,228,196,230,248,172,250,203,196 -NA,NA,Tameside,212,182,200,203,200,145,206,151,141,213,189,169 -NA,NA,Trafford,185,145,173,155,172,146,133,152,151,162,141,146 -NA,NA,Wigan,295,248,287,258,259,221,240,228,202,283,280,253 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Lancashire,NA,1080,1111,1033,939,1079,882,927,915,850,1084,967,1036 -NA,NA,Burnley,74,92,90,86,86,93,86,64,66,92,73,98 -NA,NA,Chorley,91,107,75,80,90,76,73,70,73,94,67,84 -NA,NA,Fylde,100,96,78,73,104,69,72,80,81,91,91,80 -NA,NA,Hyndburn,65,67,64,53,72,50,71,72,62,74,64,73 -NA,NA,Lancaster,144,132,136,119,123,104,112,104,86,132,124,142 -NA,NA,Pendle,72,91,64,75,85,48,58,73,50,73,62,68 -NA,NA,Preston,107,108,110,82,112,77,108,94,91,106,105,122 -NA,NA,Ribble Valley,48,38,55,51,42,46,46,38,45,45,54,42 -NA,NA,Rossendale,61,59,55,42,50,37,49,59,47,56,40,56 -NA,NA,South Ribble,102,94,85,72,75,81,72,66,80,96,85,57 -NA,NA,West Lancashire,77,98,83,89,95,73,83,80,72,101,86,99 -NA,NA,Wyre,139,129,138,117,145,128,97,115,97,124,116,115 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Merseyside (Met County),NA,1260,1211,1160,1216,1334,1022,1147,1060,979,1261,1233,1268 -NA,NA,Knowsley,134,116,96,106,128,118,116,119,106,125,131,132 -NA,NA,Liverpool,414,347,344,389,403,293,325,307,293,380,383,375 -NA,NA,Sefton,278,263,268,282,280,227,255,238,212,299,274,287 -NA,NA,St. Helens,154,152,137,140,162,132,152,149,123,171,125,170 -NA,NA,Wirral,280,333,315,299,361,252,299,247,245,286,320,304 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -YORKSHIRE AND THE HUMBER,NA,NA,4826,4448,4280,4087,4259,3678,3985,3891,3567,4260,4110,4180 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,East Riding of Yorkshire UA,NA,345,342,285,317,303,316,314,286,267,293,294,347 -NA,"Kingston upon Hull, City of UA",NA,234,188,215,194,208,186,197,185,167,196,212,188 -NA,North East Lincolnshire UA,NA,180,150,152,151,132,135,135,127,107,162,137,127 -NA,North Lincolnshire UA,NA,157,146,146,129,139,119,129,130,115,145,150,168 -NA,York UA,NA,161,175,157,154,139,130,139,147,147,143,151,151 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,North Yorkshire,NA,579,553,512,507,530,408,524,522,470,541,499,566 -NA,NA,Craven,56,58,43,55,47,35,57,43,37,52,68,51 -NA,NA,Hambleton,68,78,73,64,88,54,72,73,63,56,73,64 -NA,NA,Harrogate,150,132,126,116,149,110,135,150,117,136,138,151 -NA,NA,Richmondshire,48,40,35,36,33,35,29,32,39,37,37,44 -NA,NA,Ryedale,59,56,47,58,41,28,47,44,50,66,43,64 -NA,NA,Scarborough,119,105,115,121,116,98,113,113,109,113,92,121 -NA,NA,Selby,79,84,73,57,56,48,71,67,55,81,48,71 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,South Yorkshire (Met County),NA,1226,1085,1097,1023,1150,931,1041,1014,918,1091,1045,1057 -NA,NA,Barnsley,196,187,208,161,203,164,164,194,158,175,188,208 -NA,NA,Doncaster,326,249,272,245,298,215,254,245,230,252,239,270 -NA,NA,Rotherham,243,241,207,203,209,198,237,195,184,237,218,209 -NA,NA,Sheffield,461,408,410,414,440,354,386,380,346,427,400,370 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,West Yorkshire (Met County),NA,1944,1809,1716,1612,1658,1453,1506,1480,1376,1689,1622,1576 -NA,NA,Bradford,471,417,359,367,361,312,317,293,318,361,356,329 -NA,NA,Calderdale,184,182,170,134,161,137,148,157,133,165,156,174 -NA,NA,Kirklees,336,320,350,325,318,262,287,294,257,292,298,296 -NA,NA,Leeds,655,610,559,530,544,483,507,505,451,568,542,508 -NA,NA,Wakefield,298,280,278,256,274,259,247,231,217,303,270,269 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -EAST MIDLANDS,NA,NA,3854,3724,3698,3526,3660,3131,3256,3265,2943,3519,3444,3558 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Derby UA,NA,213,202,200,162,187,153,179,157,149,196,165,171 -NA,Leicester UA,NA,197,206,211,197,203,172,199,179,176,216,171,209 -NA,Nottingham UA,NA,221,204,211,187,227,177,160,165,172,195,170,197 -NA,Rutland UA,NA,34,36,32,34,33,22,35,28,23,23,36,29 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Derbyshire,NA,724,702,674,646,675,556,586,612,526,608,613,655 -NA,NA,Amber Valley,126,96,115,93,122,80,83,83,80,109,97,89 -NA,NA,Bolsover,92,85,70,78,78,61,61,57,60,56,68,73 -NA,NA,Chesterfield,109,102,85,95,94,72,77,82,89,88,118,92 -NA,NA,Derbyshire Dales,60,75,75,61,67,46,64,69,51,57,61,56 -NA,NA,Erewash,100,90,95,92,90,93,72,89,61,78,67,103 -NA,NA,High Peak,91,71,75,75,68,67,75,80,44,69,47,74 -NA,NA,North East Derbyshire,86,103,102,94,91,74,76,85,84,67,92,97 -NA,NA,South Derbyshire,60,80,57,58,65,63,78,67,57,84,63,71 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Leicestershire,NA,502,520,521,509,496,418,486,445,418,478,495,485 -NA,NA,Blaby,66,62,81,74,58,54,68,68,50,54,63,63 -NA,NA,Charnwood,107,132,138,114,126,96,131,100,115,143,112,129 -NA,NA,Harborough,67,72,57,63,71,52,62,62,55,56,66,83 -NA,NA,Hinckley and Bosworth,97,91,84,90,76,71,78,74,63,83,91,69 -NA,NA,Melton,31,37,34,44,42,42,45,35,34,33,43,38 -NA,NA,North West Leicestershire,88,81,72,73,80,64,59,66,65,63,77,58 -NA,NA,Oadby and Wigston,46,45,55,51,43,39,43,40,36,46,43,45 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Lincolnshire,NA,726,662,654,636,649,605,570,644,531,627,689,657 -NA,NA,Boston,62,64,54,55,67,48,43,55,53,51,67,70 -NA,NA,East Lindsey,165,165,151,149,169,152,131,166,122,148,165,161 -NA,NA,Lincoln,78,68,61,81,71,69,73,77,51,67,51,69 -NA,NA,North Kesteven,119,91,98,91,95,80,74,93,71,103,103,75 -NA,NA,South Holland,95,80,82,78,84,93,74,75,79,76,96,83 -NA,NA,South Kesteven,117,122,122,96,96,105,103,104,95,116,117,111 -NA,NA,West Lindsey,90,72,86,86,67,58,72,74,60,66,90,88 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Northamptonshire,NA,537,536,520,465,504,440,451,462,398,517,464,545 -NA,NA,Corby,56,46,37,42,41,34,35,38,32,59,37,48 -NA,NA,Daventry,69,63,64,62,64,49,51,56,57,69,54,70 -NA,NA,East Northamptonshire,80,80,71,64,62,48,50,50,53,77,59,60 -NA,NA,Kettering,59,81,62,68,78,55,78,78,52,80,69,81 -NA,NA,Northampton,161,174,175,129,150,154,134,142,125,141,140,174 -NA,NA,South Northamptonshire,59,40,60,48,55,57,60,52,44,49,49,64 -NA,NA,Wellingborough,53,52,51,52,54,43,43,46,35,42,56,48 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Nottinghamshire,NA,700,656,675,690,686,588,590,573,550,659,641,610 -NA,NA,Ashfield,115,109,95,108,100,86,98,82,73,109,105,88 -NA,NA,Bassetlaw,108,95,90,93,112,91,90,84,81,83,100,109 -NA,NA,Broxtowe,94,88,91,87,80,84,72,75,82,95,82,82 -NA,NA,Gedling,90,94,114,114,92,93,85,94,83,93,95,76 -NA,NA,Mansfield,91,86,83,97,100,74,79,87,77,87,91,70 -NA,NA,Newark and Sherwood,110,91,111,108,112,86,84,79,95,111,94,94 -NA,NA,Rushcliffe,92,93,91,83,90,74,82,72,59,81,74,91 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -WEST MIDLANDS,NA,NA,4720,4445,4417,4204,4566,3784,4012,4079,3631,4345,4339,4358 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,"Herefordshire, County of UA",NA,166,185,172,167,172,138,141,144,133,141,172,173 -NA,Shropshire UA 7,NA,287,277,256,296,286,240,215,286,199,258,256,268 -NA,Stoke-on-Trent UA,NA,218,205,233,220,277,185,185,191,140,186,203,201 -NA,Telford and Wrekin UA,NA,111,114,124,103,137,108,111,119,94,100,110,135 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Staffordshire,NA,707,695,688,690,659,625,652,608,591,688,716,699 -NA,NA,Cannock Chase,67,81,60,75,81,68,68,54,52,82,90,73 -NA,NA,East Staffordshire,98,83,63,88,70,78,80,82,80,80,89,94 -NA,NA,Lichfield,87,78,89,93,79,74,67,72,86,82,86,72 -NA,NA,Newcastle-under-Lyme,116,109,117,110,102,90,94,98,79,110,101,112 -NA,NA,South Staffordshire,107,98,109,87,103,88,100,89,80,96,104,111 -NA,NA,Stafford,113,102,99,99,94,105,109,81,98,107,112,101 -NA,NA,Staffordshire Moorlands,81,91,94,86,90,82,89,85,75,85,84,83 -NA,NA,Tamworth,38,53,57,52,40,40,45,47,41,46,50,53 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Warwickshire,NA,452,417,460,421,436,357,404,417,350,436,413,442 -NA,NA,North Warwickshire,47,61,53,69,56,47,35,48,45,44,42,47 -NA,NA,Nuneaton and Bedworth,101,98,108,90,100,82,87,103,75,109,96,93 -NA,NA,Rugby,95,66,97,56,83,66,79,71,66,69,69,81 -NA,NA,Stratford-on-Avon,103,97,106,105,97,86,111,93,77,121,109,117 -NA,NA,Warwick,106,95,96,101,100,76,92,102,87,93,97,104 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,West Midlands (Met County),NA,2222,2047,2003,1841,2094,1703,1844,1841,1725,2073,2034,1950 -NA,NA,Birmingham,794,710,708,633,771,592,613,653,609,756,730,662 -NA,NA,Coventry,240,256,229,238,217,180,223,193,185,226,216,211 -NA,NA,Dudley,259,255,225,225,274,219,220,246,227,281,273,241 -NA,NA,Sandwell,268,246,225,226,251,208,235,205,216,247,248,243 -NA,NA,Solihull,190,156,177,154,164,146,155,155,143,166,159,166 -NA,NA,Walsall,233,232,220,175,205,181,202,200,174,193,214,219 -NA,NA,Wolverhampton,238,192,219,190,212,177,196,189,171,204,194,208 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Worcestershire,NA,557,505,481,466,505,428,460,473,399,463,435,490 -NA,NA,Bromsgrove,110,119,105,74,99,76,93,89,68,95,89,95 -NA,NA,Malvern Hills,92,88,75,87,78,69,77,71,75,72,83,73 -NA,NA,Redditch,58,43,52,52,60,58,56,57,37,52,50,59 -NA,NA,Worcester,85,69,72,61,70,65,63,62,72,76,52,75 -NA,NA,Wychavon,107,100,91,96,110,96,100,104,79,92,84,86 -NA,NA,Wyre Forest,105,86,86,96,88,64,71,90,68,76,77,102 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -EAST,NA,NA,4862,4779,4815,4469,4644,3810,4084,4186,3604,4466,4449,4415 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Bedford UA 8,NA,125,112,88,102,103,95,104,103,87,116,107,136 -NA,Central Bedfordshire UA 9,NA,174,172,177,139,175,151,145,161,141,188,166,180 -NA,Luton UA,NA,125,137,137,132,98,117,102,122,91,135,132,123 -NA,Peterborough UA,NA,132,125,137,142,136,104,125,99,101,118,125,122 -NA,Southend-on-Sea UA,NA,159,165,141,146,148,120,126,129,106,137,156,130 -NA,Thurrock UA,NA,89,118,117,87,112,75,104,93,73,82,97,88 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Cambridgeshire,NA,402,431,470,395,438,388,354,414,341,414,411,436 -NA,NA,Cambridge,80,71,91,77,75,70,58,75,74,76,74,79 -NA,NA,East Cambridgeshire,47,62,53,48,39,48,49,56,39,45,51,46 -NA,NA,Fenland,88,89,99,87,94,77,74,78,63,90,86,85 -NA,NA,Huntingdonshire,113,117,129,103,122,118,89,106,86,108,117,119 -NA,NA,South Cambridgeshire,74,92,98,80,108,75,84,99,79,95,83,107 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Essex,NA,1240,1267,1145,1180,1179,966,1044,1053,921,1103,1151,1070 -NA,NA,Basildon,129,151,127,136,153,99,101,119,112,118,137,125 -NA,NA,Braintree,141,121,130,119,122,106,102,118,89,120,117,106 -NA,NA,Brentwood,78,65,62,64,70,59,61,50,53,59,54,53 -NA,NA,Castle Point,110,92,72,85,79,55,81,90,76,74,89,73 -NA,NA,Chelmsford,107,137,130,127,135,101,121,104,89,131,126,106 -NA,NA,Colchester,142,135,108,123,121,101,128,112,110,122,123,115 -NA,NA,Epping Forest,109,112,105,104,109,93,79,86,81,99,100,103 -NA,NA,Harlow,71,57,68,74,46,49,72,50,44,58,52,61 -NA,NA,Maldon,63,70,50,52,57,55,39,50,41,46,40,46 -NA,NA,Rochford,66,71,59,74,69,49,57,58,42,46,82,57 -NA,NA,Tendring,168,191,184,166,178,154,158,162,146,179,181,171 -NA,NA,Uttlesford,56,65,50,56,40,45,45,54,38,51,50,54 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Hertfordshire,NA,846,845,867,744,817,647,733,736,659,800,769,786 -NA,NA,Broxbourne,67,73,69,63,61,53,59,45,59,70,63,62 -NA,NA,Dacorum,101,101,104,88,104,86,108,91,95,120,100,112 -NA,NA,East Hertfordshire,111,95,98,84,88,72,106,98,75,88,98,79 -NA,NA,Hertsmere,81,94,94,70,75,68,69,64,67,75,91,63 -NA,NA,North Hertfordshire,106,126,109,97,115,90,93,97,71,108,96,114 -NA,NA,St Albans,78,85,97,95,95,61,68,86,73,97,84,77 -NA,NA,Stevenage,68,65,75,45,67,59,45,57,48,51,65,50 -NA,NA,Three Rivers,75,55,68,58,76,55,72,59,55,65,60,72 -NA,NA,Watford,72,76,75,57,63,40,42,47,62,55,54,70 -NA,NA,Welwyn Hatfield,87,75,78,87,73,63,71,92,54,71,58,87 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Norfolk,NA,900,775,870,782,812,645,695,718,613,759,774,761 -NA,NA,Breckland,128,121,150,122,131,103,108,103,100,126,123,104 -NA,NA,Broadland,133,129,135,100,113,79,105,107,81,127,116,118 -NA,NA,Great Yarmouth,127,87,113,105,84,68,101,104,72,67,98,95 -NA,NA,King’s Lynn and West Norfolk,148,127,156,144,144,139,120,128,114,140,128,132 -NA,NA,North Norfolk,142,114,114,123,132,101,89,107,96,111,133,128 -NA,NA,Norwich,100,94,91,85,105,58,87,76,71,100,83,93 -NA,NA,South Norfolk,122,103,111,103,103,97,85,93,79,88,93,91 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Suffolk,NA,670,632,666,620,626,502,552,558,471,614,561,583 -NA,NA,Babergh,83,79,101,81,80,48,52,66,52,74,64,64 -NA,NA,Forest Heath,49,42,55,37,40,32,29,42,31,34,37,45 -NA,NA,Ipswich,95,115,96,81,105,75,73,99,69,97,86,103 -NA,NA,Mid Suffolk,74,62,75,89,68,58,79,64,59,73,69,66 -NA,NA,St Edmundsbury,114,90,84,107,76,82,77,90,80,85,74,79 -NA,NA,Suffolk Coastal,119,122,119,103,124,104,115,83,80,129,122,113 -NA,NA,Waveney,136,122,136,122,133,103,127,114,100,122,109,113 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -LONDON,NA,NA,4603,4626,4300,3908,4109,3454,3743,3630,3276,4128,4089,4032 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Inner London,NA,1474,1509,1387,1215,1301,1134,1230,1174,1005,1308,1298,1224 -NA,NA,Camden,99,89,89,90,103,96,85,91,82,76,102,86 -NA,NA,City of London,1,2,3,-,4,6,1,4,7,2,5,1 -NA,NA,Hackney,96,110,102,89,93,86,85,89,70,98,86,68 -NA,NA,Hammersmith and Fulham,86,70,81,83,66,66,73,57,73,60,64,76 -NA,NA,Haringey,104,132,91,106,108,88,89,82,86,90,75,94 -NA,NA,Islington,100,94,94,81,80,74,100,85,59,84,85,94 -NA,NA,Kensington and Chelsea,82,84,73,63,86,53,74,54,48,79,77,61 -NA,NA,Lambeth,144,141,124,94,135,106,110,107,84,108,119,108 -NA,NA,Lewisham,152,157,135,114,96,95,130,109,102,141,135,134 -NA,NA,Newham,123,135,123,109,113,83,109,99,73,122,115,98 -NA,NA,Southwark,122,131,124,102,108,90,96,105,78,108,112,101 -NA,NA,Tower Hamlets,98,105,94,89,95,78,90,79,68,88,87,86 -NA,NA,Wandsworth,161,144,162,110,116,114,112,123,105,147,142,111 -NA,NA,Westminster,106,115,92,85,98,99,76,90,70,105,94,106 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Outer London,NA,3129,3117,2913,2693,2808,2320,2513,2456,2271,2820,2791,2808 -NA,NA,Barking and Dagenham,134,127,120,106,110,77,115,94,84,111,84,104 -NA,NA,Barnet,220,232,200,193,186,155,191,187,139,217,209,189 -NA,NA,Bexley,184,181,166,148,187,119,142,153,133,153,161,154 -NA,NA,Brent,166,140,138,146,131,99,134,124,112,148,136,158 -NA,NA,Bromley,273,251,240,215,202,176,183,195,199,221,219,212 -NA,NA,Croydon,239,223,213,211,210,188,176,191,177,204,205,208 -NA,NA,Ealing,185,185,184,137,164,122,151,124,134,162,166,173 -NA,NA,Enfield,214,200,186,142,167,131,154,148,123,152,177,163 -NA,NA,Greenwich,174,156,140,124,151,119,98,104,112,132,137,133 -NA,NA,Harrow,124,139,125,113,122,107,115,107,103,146,140,119 -NA,NA,Havering,233,178,175,178,175,191,193,178,168,200,181,191 -NA,NA,Hillingdon,149,186,176,165,171,149,145,146,151,163,168,157 -NA,NA,Hounslow,124,165,125,128,120,94,112,94,109,139,112,105 -NA,NA,Kingston upon Thames,71,105,109,82,89,72,75,77,57,73,93,117 -NA,NA,Merton,104,110,121,103,111,93,91,78,99,103,110,104 -NA,NA,Redbridge,161,168,159,141,159,134,134,141,100,145,124,156 -NA,NA,Richmond upon Thames,98,115,94,117,100,76,93,87,95,102,108,106 -NA,NA,Sutton,111,130,121,116,125,100,118,123,83,124,131,140 -NA,NA,Waltham Forest,165,126,121,128,128,118,93,105,93,125,130,119 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -SOUTH EAST,NA,NA,7279,7021,6991,6399,6718,5468,5845,5881,5274,6705,6472,6526 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Bracknell Forest UA,NA,70,72,71,73,58,53,62,55,52,54,56,54 -NA,Brighton and Hove UA,NA,200,209,179,173,200,157,162,157,158,176,173,193 -NA,Isle of Wight UA,NA,167,158,138,151,175,139,137,141,122,145,153,137 -NA,Medway UA,NA,194,190,208,181,206,160,157,168,137,179,172,178 -NA,Milton Keynes UA,NA,145,144,143,133,131,140,140,110,113,148,154,153 -NA,Portsmouth UA,NA,154,136,151,142,130,127,113,128,112,137,144,147 -NA,Reading UA,NA,110,92,96,110,88,68,81,100,90,88,109,97 -NA,Slough UA,NA,77,65,72,62,73,61,69,54,52,59,56,62 -NA,Southampton UA,NA,170,153,187,160,173,128,132,159,147,148,152,140 -NA,West Berkshire UA,NA,95,107,94,91,76,104,74,90,87,111,109,91 -NA,Windsor and Maidenhead UA,NA,110,120,102,105,114,97,91,102,76,89,105,103 -NA,Wokingham UA,NA,109,90,94,77,100,74,98,96,91,90,92,116 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Buckinghamshire,NA,363,362,353,327,352,283,293,302,266,368,329,359 -NA,NA,Aylesbury Vale,126,121,123,109,125,97,83,95,83,131,125,116 -NA,NA,Chiltern,60,65,74,59,70,54,65,65,45,45,51,72 -NA,NA,South Bucks,62,52,65,56,50,53,49,56,43,58,53,51 -NA,NA,Wycombe,115,124,91,103,107,79,96,86,95,134,100,120 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,East Sussex,NA,588,585,543,559,499,449,483,461,431,541,541,553 -NA,NA,Eastbourne,106,146,101,120,96,78,92,99,82,121,123,123 -NA,NA,Hastings,97,89,83,77,74,72,74,62,73,80,85,81 -NA,NA,Lewes,107,85,86,79,94,66,80,90,81,85,89,92 -NA,NA,Rother,134,131,128,120,116,94,104,102,92,104,111,115 -NA,NA,Wealden,144,134,145,163,119,139,133,108,103,151,133,142 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Hampshire,NA,1120,1019,1118,1003,1068,830,918,951,801,1067,967,1062 -NA,NA,Basingstoke and Deane,118,95,119,92,113,84,98,86,82,103,93,95 -NA,NA,East Hampshire,121,82,111,93,115,70,88,100,85,105,97,93 -NA,NA,Eastleigh,75,88,89,79,78,74,80,90,43,83,87,112 -NA,NA,Fareham,103,96,81,105,101,80,80,109,73,96,93,90 -NA,NA,Gosport,81,68,71,60,67,77,60,59,60,73,60,83 -NA,NA,Hart,60,53,63,52,53,37,50,53,52,68,55,54 -NA,NA,Havant,109,121,122,112,118,87,101,105,76,110,105,117 -NA,NA,New Forest,232,175,202,187,192,140,164,145,144,181,167,175 -NA,NA,Rushmoor,51,65,65,58,59,42,53,52,41,56,45,56 -NA,NA,Test Valley,90,95,89,97,88,74,65,78,72,95,92,107 -NA,NA,Winchester,80,81,106,68,84,65,79,74,73,97,73,80 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Kent,NA,1280,1342,1236,1133,1206,998,1031,1040,895,1222,1133,1079 -NA,NA,Ashford,75,97,97,78,80,61,74,72,59,103,80,71 -NA,NA,Canterbury,146,158,160,131,128,102,94,108,87,162,124,107 -NA,NA,Dartford,90,84,70,70,75,70,72,58,66,66,69,79 -NA,NA,Dover,120,116,106,102,115,98,92,88,80,95,105,98 -NA,NA,Gravesham,81,80,68,64,69,59,68,66,44,85,71,69 -NA,NA,Maidstone,124,133,120,123,132,115,85,98,93,112,123,106 -NA,NA,Sevenoaks,99,103,82,81,95,64,83,74,68,97,86,88 -NA,NA,Shepway,115,102,114,113,102,81,90,99,91,99,100,91 -NA,NA,Swale,116,113,99,93,109,88,104,88,69,97,86,85 -NA,NA,Thanet,140,177,167,112,153,137,114,129,105,142,131,144 -NA,NA,Tonbridge and Malling,95,83,72,92,80,63,78,73,62,77,74,72 -NA,NA,Tunbridge Wells,79,96,81,74,68,60,77,87,71,87,84,69 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Oxfordshire,NA,499,470,505,405,441,371,418,389,351,493,469,480 -NA,NA,Cherwell,114,85,107,93,100,57,91,88,83,106,100,98 -NA,NA,Oxford,79,82,84,74,80,54,75,68,64,87,91,94 -NA,NA,South Oxfordshire,114,128,118,85,99,94,92,88,77,112,96,104 -NA,NA,Vale of White Horse,99,93,87,89,74,89,90,73,68,95,101,97 -NA,NA,West Oxfordshire,93,82,109,64,88,77,70,72,59,93,81,87 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Surrey,NA,938,868,885,754,879,660,771,698,670,869,859,807 -NA,NA,Elmbridge,99,94,102,93,117,77,86,69,74,103,79,104 -NA,NA,Epsom and Ewell,38,56,47,51,60,38,41,44,46,52,58,48 -NA,NA,Guildford,111,91,99,65,96,82,61,78,64,90,78,73 -NA,NA,Mole Valley,76,91,72,64,63,49,76,59,51,73,77,71 -NA,NA,Reigate and Banstead,104,106,126,82,104,87,99,92,85,102,104,109 -NA,NA,Runnymede,80,65,68,55,58,50,50,40,43,59,57,58 -NA,NA,Spelthorne,86,73,79,62,86,44,74,57,67,91,76,71 -NA,NA,Surrey Heath,73,56,53,71,61,50,62,67,46,65,65,57 -NA,NA,Tandridge,68,88,69,74,78,47,63,56,59,83,83,76 -NA,NA,Waverley,112,83,102,79,83,82,97,85,71,91,104,82 -NA,NA,Woking,91,65,68,58,73,54,62,51,64,60,78,58 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,West Sussex,NA,890,839,816,760,749,569,615,680,623,721,699,715 -NA,NA,Adur,92,80,72,63,63,36,46,52,52,45,57,58 -NA,NA,Arun,219,195,192,179,197,138,145,146,140,181,158,172 -NA,NA,Chichester,108,122,124,106,118,89,90,115,112,106,121,91 -NA,NA,Crawley,74,81,85,64,53,56,59,65,51,56,66,66 -NA,NA,Horsham,133,109,125,123,94,65,103,101,85,106,100,112 -NA,NA,Mid Sussex,138,114,98,126,117,78,83,98,76,103,106,109 -NA,NA,Worthing,126,138,120,99,107,107,89,103,107,124,91,107 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -SOUTH WEST,NA,NA,4937,4705,4700,4377,4680,3965,4213,4210,3812,4612,4512,4357 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Bath and North East Somerset UA,NA,144,142,130,139,136,109,132,110,109,164,120,132 -NA,Bournemouth UA,NA,192,180,180,153,161,158,140,176,155,179,165,162 -NA,"Bristol, City of UA",NA,277,306,318,261,280,251,248,284,243,254,257,269 -NA,Cornwall UA 10,NA,535,520,535,472,522,453,487,484,428,507,486,441 -NA,Isles of Scilly UA 11,NA,1,2,3,2,-,1,3,2,-,1,3,1 -NA,North Somerset UA,NA,225,202,200,185,178,159,209,151,124,177,169,186 -NA,Plymouth UA,NA,225,210,215,192,230,185,189,199,183,209,210,206 -NA,Poole UA,NA,149,139,142,121,135,122,133,137,115,130,130,152 -NA,South Gloucestershire UA,NA,181,184,159,164,198,148,176,163,167,161,172,157 -NA,Swindon UA,NA,160,133,140,118,152,128,128,111,124,158,128,135 -NA,Torbay UA,NA,156,152,139,143,163,125,122,136,112,161,148,124 -NA,Wiltshire UA 12,NA,406,382,355,347,382,292,322,353,322,436,349,333 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Devon,NA,815,723,780,702,775,676,655,651,623,736,774,678 -NA,NA,East Devon,177,157,160,167,178,172,136,160,133,169,166,149 -NA,NA,Exeter,94,85,112,86,99,65,69,74,73,90,93,81 -NA,NA,Mid Devon,57,60,71,56,64,62,67,43,48,57,74,54 -NA,NA,North Devon,109,84,95,90,97,105,86,86,73,91,98,67 -NA,NA,South Hams,88,71,83,70,80,67,82,70,73,83,87,74 -NA,NA,Teignbridge,164,151,134,123,134,112,120,108,109,115,143,128 -NA,NA,Torridge,77,63,69,60,70,51,49,53,58,62,64,69 -NA,NA,West Devon,49,52,56,50,53,42,46,57,56,69,49,56 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Dorset,NA,430,460,425,422,396,332,393,356,329,392,406,418 -NA,NA,Christchurch,45,70,45,43,50,45,71,45,40,48,52,54 -NA,NA,East Dorset,93,95,100,107,80,68,87,86,72,76,84,102 -NA,NA,North Dorset,51,53,68,63,62,54,50,49,49,59,62,58 -NA,NA,Purbeck,37,53,37,33,43,34,26,41,26,42,32,35 -NA,NA,West Dorset,134,113,125,112,109,86,109,75,84,105,112,107 -NA,NA,Weymouth and Portland,70,76,50,64,52,45,50,60,58,62,64,62 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Gloucestershire,NA,560,500,504,492,530,413,429,443,388,470,504,472 -NA,NA,Cheltenham,112,97,112,98,82,81,58,82,67,82,87,78 -NA,NA,Cotswold,79,71,70,68,81,60,66,60,69,70,70,66 -NA,NA,Forest of Dean,80,76,72,76,78,59,66,65,55,71,74,84 -NA,NA,Gloucester,91,83,78,87,103,72,87,83,63,78,93,70 -NA,NA,Stroud,110,108,102,100,117,77,97,93,73,95,101,103 -NA,NA,Tewkesbury,88,65,70,63,69,64,55,60,61,74,79,71 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Somerset,NA,481,470,475,464,442,413,447,454,390,477,491,491 -NA,NA,Mendip,100,95,95,87,87,80,77,107,65,77,92,104 -NA,NA,Sedgemoor,97,112,89,82,84,71,102,91,89,101,105,108 -NA,NA,South Somerset,130,137,151,157,133,133,137,144,122,146,139,123 -NA,NA,Taunton Deane,114,94,99,98,100,93,99,75,84,104,115,113 -NA,NA,West Somerset,40,32,41,40,38,36,32,37,30,49,40,43 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -WALES,NA,NA,2922,2611,2768,2668,2830,2291,2544,2489,2199,2689,2703,2788 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,Isle of Anglesey,67,62,58,63,73,54,68,61,65,57,79,60 -NA,NA,Gwynedd,125,111,116,104,123,89,106,110,83,103,122,141 -NA,NA,Conwy,120,129,128,126,148,125,134,107,102,135,118,119 -NA,NA,Denbighshire,114,78,111,105,100,66,87,74,83,99,92,105 -NA,NA,Flintshire,135,112,140,130,113,103,124,124,104,105,120,128 -NA,NA,Wrexham,100,117,114,103,112,90,103,110,94,100,94,123 -NA,NA,Powys,135,111,141,118,118,106,110,119,101,125,132,145 -NA,NA,Ceredigion,62,52,51,63,67,61,46,59,55,68,71,64 -NA,NA,Pembrokeshire,130,110,112,119,142,111,110,101,81,107,113,124 -NA,NA,Carmarthenshire,189,173,164,197,217,153,162,168,151,178,207,176 -NA,NA,Swansea,223,197,226,197,220,175,201,206,181,222,185,214 -NA,NA,Neath Port Talbot,146,153,129,153,138,103,121,126,115,136,128,170 -NA,NA,Bridgend,144,119,144,135,133,111,124,119,97,133,118,133 -NA,NA,The Vale of Glamorgan,115,113,91,98,114,75,112,91,73,115,112,88 -NA,NA,Cardiff,267,226,248,221,232,206,211,211,189,216,249,240 -NA,NA,"Rhondda, Cynon, Taff",223,183,210,205,214,190,215,205,166,217,209,183 -NA,NA,Merthyr Tydfil,67,45,50,46,60,51,43,43,35,56,55,51 -NA,NA,Caerphilly,165,150,146,132,150,124,141,141,112,151,139,149 -NA,NA,Blaenau Gwent,83,68,70,62,77,71,62,59,62,67,69,74 -NA,NA,Torfaen,94,84,96,95,86,74,88,70,76,87,93,92 -NA,NA,Monmouthshire,81,80,90,83,95,60,67,75,65,84,77,77 -NA,NA,Newport,137,138,133,113,98,93,109,110,109,128,121,132 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,Non-residents of England & Wales,93,65,75,89,91,86,92,111,83,86,91,88 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Footnotes:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -1,"Following the publication of 2011 Census figures, local authority death statistics are now only available on the current local authority boundaries (those in force from 1 April 2009 when new Unitary Authorities were formed). These statistics are no longer available for the former local authority districts abolished in 2009. Mid-year population estimates (MYEs) are also not available for the former local authority districts abolished in 2009. The publication of death statistics and MYEs for current local authorities only is consistent with the way in which 2011 Census statistics for local authorities are being published.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2,"The deaths of those whose usual residence is outside England and Wales are included in 'total registrations' but excluded from any sub-division of -England and Wales.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -3,"County Durham UA comprises the former districts of Chester-le-Street, Derwentside, Durham, Easington, Sedgefield, Teesdale and Wear Valley -(abolished 2009).",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -4,"Northumberland UA comprises the former districts of Alnwick, Berwick-upon-Tweed, Blyth Valley, Castle Morpeth, Tynedale and Wansbeck -(abolished 2009).",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -5,"Cheshire East UA comprises the former districts of Congleton, Crewe and Nantwich and Macclesfield (abolished 2009).",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -6,"Cheshire West and Chester UA comprises the former districts of Chester, Ellesmere Port & Neston and Vale Royal (abolished 2009).",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -7,"Shropshire UA comprises the former districts of Bridgnorth, North Shropshire, Oswestry, Shrewsbury and Atcham and South Shropshire (abolished 2009).",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -8,Bedford UA comprises the former district of Bedford (abolished 2009).,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -9,Central Bedfordshire UA comprises the former districts of Mid Bedfordshire and South Bedfordshire (abolished 2009).,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -10,"Cornwall UA comprises the former districts of Caradon, Carrick, Kerrier, North Cornwall, Penwith and Restormel (abolished 2009).",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -11,The Isles of Scilly were recoded on 1 April 2009. They are separately administered by an Isles of Scilly council and do not form part of Cornwall UA.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -12,"Wiltshire UA comprises the former districts of Kennet, North Wiltshire, Salisbury and West Wiltshire (abolished 2009).",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Source: Office for National Statistics,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA diff --git a/working_files/Monthly/Monthly2012Mortality-Metadata.csv b/working_files/Monthly/Monthly2012Mortality-Metadata.csv deleted file mode 100644 index a7e3a58..0000000 --- a/working_files/Monthly/Monthly2012Mortality-Metadata.csv +++ /dev/null @@ -1,44 +0,0 @@ -Contents -Metadata -NA -Introduction -NA -"Monthly death figures provide counts of the number of deaths registered in a calendar month, by area of usual residence in England and Wales for 2012." -NA -"These figures are presented by regions (within England), unitary authorities, counties, districts & London boroughs." -NA -Notes -NA -Deaths occurring in England and Wales are registered on the General Register Office's Registration Online (RON) system. -Daily extracts of death registration records from RON are processed on ONS' database systems. -NA -The number of deaths registered by month in England and Wales have now been finalised. There are only small changes from the provisional figures released during the year. -NA -Weekly deaths counts cannot be summed to match the counts for monthly deaths as some weeks may span more than one month. -NA -Bank Holidays could affect the number of registrations made within those months. -NA -Symbols and conventions -NA -- denotes nil -NA -Further information and enquiries -NA -General enquiries should be addressed to: -Vital Statistics Outputs Branch -Office for National Statistics -Segensworth Road -Titchfield -Fareham -Hants PO15 5RR -Telephone: +44 (0)1329 444110 -email: vsob@ons.gsi.gov.uk -NA -"Special extracts and tabulations of mortality data for England and Wales are available to order (subject to legal frameworks, disclosure control, resources and agreement of costs, where appropriate). Such enquiries should be made to the postal or email address above." -NA -The ONS charging policy is available on the ONS website. -NA -Feedback -NA -We welcome feedback from users. The Health and Life Events user engagement strategy is available to download from the ONS website. -Please send feedback to the postal or email address above. diff --git a/working_files/Monthly/Monthly2012Mortality-Related publications.csv b/working_files/Monthly/Monthly2012Mortality-Related publications.csv deleted file mode 100644 index 8a93dbe..0000000 --- a/working_files/Monthly/Monthly2012Mortality-Related publications.csv +++ /dev/null @@ -1,37 +0,0 @@ -Contents -Related publications -NA -Mortality metadata -Supporting information for these tables can be found in mortality metadata. -NA -Quality and Methodology Information -Quality and Methodology Information notes for Mortality and Child Mortality. -NA -Further mortality statistics based on death registrations are available on the ONS website: -NA -"Interactive Mapping Tool, England and Wales" -An interactive mapping tool which enables trends in mortality to be analysed at the local level. -NA -"Death Summary Tables, England and Wales" -The summary tables provide key death registration statistics for the reference year. -NA -"Annual Reference Volume: Series DR, England and Wales" -Series DR (Mortality Statistics: Deaths Registered in England and Wales) provides detailed death registration statistics for the reference year. This includes numbers of deaths by detailed underlying cause by age-sex group defined by the different chapters of the Tenth Revision of the International Classification of Diseases and Related Health Problems (ICD-10). -NA -"Injury and Poisoning mortality, England and Wales" -Presents annual data on deaths from injury and poisoning in England and Wales using a matrix of mechanism by intent developed by the International Collaborative Effort (ICE) on injury statistics. -NA -"Vital Statistics: Population and Health Reference Table, United Kingdom and constituent countries" -"These tables provide annual and quarterly data for a selection of key statistics under the following themes: population, demography and health. Figures for the latest quarters and years may be provisional, these will be updated to final figures when data is available." -NA -Mortality Statistics: Deaths registered in England and Wales by area of usual residence -Presents data on death registrations in the United Kingdom by area of usual residence. The release contains a summary table providing key mortality measures (numbers and rates including age standardised mortality rates) for the United Kingdom and its constituent countries and a table providing numbers of deaths in England and Wales by age and sex. -NA -"Weekly provisional figures on deaths registered, England and Wales" -Weekly death figures provide provisional counts of the number of deaths registered in England and Wales in the latest eight weeks for which data are available. -NA -20th Century Mortality Files -"The 20th Century mortality files are a record of mortality in England & Wales from 1901 to 2000. The files consist of an aggregated database of deaths by age group, sex, year and underlying cause, and include populations for England & Wales." -NA -21st Century Mortality Files -"The 21st Century Mortality Files are a record of mortality in England and Wales from 2001 onwards. They are designed to complement the Twentieth Century Mortality files. The files consist of an aggregated database of deaths by age group, sex, year and underlying cause, and include populations for England and Wales." diff --git a/working_files/Monthly/Monthly2012Mortality-Terms and conditions.csv b/working_files/Monthly/Monthly2012Mortality-Terms and conditions.csv deleted file mode 100644 index 52310ec..0000000 --- a/working_files/Monthly/Monthly2012Mortality-Terms and conditions.csv +++ /dev/null @@ -1,31 +0,0 @@ -Contents -Terms and conditions -NA -A National Statistics publication -NA -National Statistics are produced to high professional standards set out in the Code of Practice for Official Statistics. They are produced free from any political interference. -NA -"The United Kingdom Statistics Authority has designated these statistics as National Statistics, in accordance with the Statistics and Registration Service Act 2007 and signifying compliance with the Code of Practice for Official Statistics." -Designation can be broadly interpreted to mean that the statistics: -• meet identified user needs; -• are well explained and readily accessible; -"• are produced according to sound methods, and" -• are managed impartially and objectively in the public interest. -NA -Once statistics have been designated as National Statistics it is a statutory requirement that the Code of Practice shall continue to be observed. -NA -About us -"The Office for National Statistics (ONS) is the executive office of the UK Statistics Authority, a non-ministerial department which reports directly to Parliament. ONS is the UK government’s single largest statistical producer. It compiles information about the UK’s society and economy, and provides the evidence-base for policy and decision-making, the allocation of resources, and public accountability." -NA -The Director-General of ONS reports directly to the National Statistician who is the Authority's Chief Executive and the Head of the Government Statistical Service. -NA -Copyright and reproduction -NA -© Crown copyright 2013 -"You may re-use this information (not including logos) free of charge in any format or medium, under the terms of the Open Government Licence." -Users should include a source accreditation to ONS - Source: Office for National Statistics (www.ons.gov.uk) -NA -"To view the Open Government licence, go to:" -www.nationalarchives.gov.uk/doc/open-government-licence -"or write to the Information Policy Team, The National Archives, Kew, London TW9 4DU" -email: psi@nationalarchives.gsi.gov.uk diff --git a/working_files/Monthly/Monthly2012Mortality.xls b/working_files/Monthly/Monthly2012Mortality.xls deleted file mode 100644 index 93810fe..0000000 Binary files a/working_files/Monthly/Monthly2012Mortality.xls and /dev/null differ diff --git a/working_files/Monthly/Monthly2013Mortality-Contents.csv b/working_files/Monthly/Monthly2013Mortality-Contents.csv deleted file mode 100644 index 8d86876..0000000 --- a/working_files/Monthly/Monthly2013Mortality-Contents.csv +++ /dev/null @@ -1,10 +0,0 @@ -Contents,Monthly Figures on Deaths Registered in England and Wales -NA,NA -NA,NA -Metadata,Information on monthly deaths -NA,NA -Terms and conditions,Terms and conditions -NA,NA -Figures for 2013,"Deaths (numbers): by region, 2013 registrations, England and Wales" -NA,NA -Related publications,Provides links to further mortality statistics based on death registrations diff --git a/working_files/Monthly/Monthly2013Mortality-Figures for 2013.csv b/working_files/Monthly/Monthly2013Mortality-Figures for 2013.csv deleted file mode 100644 index a3c5973..0000000 --- a/working_files/Monthly/Monthly2013Mortality-Figures for 2013.csv +++ /dev/null @@ -1,469 +0,0 @@ -Contents,...2,...3,...4,...5,...6,...7,...8,...9,...10,...11,...12,...13,...14,...15 -"Monthly provisional figures on deaths registered by area of usual residence, 2013",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,England and Wales -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Area of usual residence,NA,NA,Jan-13,Feb-13,Mar-13,Apr-13,May-13,Jun-13,Jul-13,Aug-13,Sep-13,Oct-13,Nov-13,Dec-13 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"ENGLAND, WALES AND ELSEWHERE 1",NA,NA,52898,43778,44915,49735,42273,35866,39806,35691,36775,42322,39941,42790 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -ENGLAND AND WALES,NA,NA,52813,43712,44833,49630,42179,35779,39709,35585,36677,42214,39853,42706 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -ENGLAND,NA,NA,49492,41002,41915,46352,39475,33503,37260,33322,34350,39585,37322,39974 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -WALES,NA,NA,3321,2710,2918,3278,2704,2276,2449,2263,2327,2629,2531,2732 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NORTH EAST,NA,NA,2986,2264,2119,2433,2251,1914,2037,1847,1946,2327,2187,2154 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,County Durham UA,NA,618,484,462,513,476,391,379,405,406,461,489,404 -NA,Darlington UA,NA,113,85,97,104,97,66,93,74,81,95,81,92 -NA,Hartlepool UA,NA,110,74,73,84,76,62,81,50,64,85,86,78 -NA,Middlesbrough UA,NA,160,133,103,148,107,93,105,85,86,117,93,105 -NA,Northumberland UA,NA,369,298,253,312,306,263,252,240,267,287,293,299 -NA,Redcar and Cleveland UA,NA,166,141,141,134,109,110,118,105,92,122,106,104 -NA,Stockton-on-Tees UA,NA,188,137,138,146,149,118,127,109,135,150,138,146 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Tyne and Wear (Met County),NA,1262,912,852,992,931,811,882,779,815,1010,901,926 -NA,NA,Gateshead,256,174,173,178,151,158,157,156,159,191,160,180 -NA,NA,Newcastle upon Tyne,258,170,152,222,198,150,187,159,189,198,196,198 -NA,NA,North Tyneside,245,186,174,202,202,150,148,150,142,195,172,159 -NA,NA,South Tyneside,168,123,126,149,159,141,125,107,113,160,132,136 -NA,NA,Sunderland,335,259,227,241,221,212,265,207,212,266,241,253 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NORTH WEST,NA,NA,7179,6091,6238,6778,5713,4779,5448,4866,4979,5720,5419,5835 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Blackburn with Darwen UA,NA,127,102,133,124,92,87,93,101,88,86,80,102 -NA,Blackpool UA,NA,197,156,158,170,183,123,146,115,125,147,168,128 -NA,Cheshire East UA,NA,377,348,318,378,274,242,278,287,246,310,321,303 -NA,Cheshire West and Chester UA,NA,326,273,286,311,274,213,264,212,247,257,259,264 -NA,Halton UA,NA,117,136,105,117,77,94,103,79,106,111,81,85 -NA,Warrington UA,NA,218,168,175,215,151,139,148,131,149,167,131,146 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Cumbria,NA,560,476,510,492,431,387,411,404,407,426,461,487 -NA,NA,Allerdale,123,87,105,98,88,75,71,75,81,84,82,72 -NA,NA,Barrow-in-Furness,65,62,79,78,68,54,54,50,48,67,66,83 -NA,NA,Carlisle,117,100,105,97,72,77,77,80,84,88,86,106 -NA,NA,Copeland,94,68,66,73,54,49,64,63,65,53,88,63 -NA,NA,Eden,51,48,49,55,39,44,37,48,32,39,46,44 -NA,NA,South Lakeland,110,111,106,91,110,88,108,88,97,95,93,119 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Greater Manchester (Met County),NA,2484,2090,2179,2299,1997,1650,1925,1658,1743,1972,1901,1931 -NA,NA,Bolton,257,223,257,258,184,157,197,171,185,213,206,205 -NA,NA,Bury,206,150,162,169,151,138,140,105,126,153,126,131 -NA,NA,Manchester,393,291,323,305,290,241,253,233,239,291,288,288 -NA,NA,Oldham,216,158,159,192,165,144,149,140,151,174,162,158 -NA,NA,Rochdale,208,173,144,206,184,143,146,136,110,139,159,157 -NA,NA,Salford,203,193,188,205,196,161,194,161,168,188,188,167 -NA,NA,Stockport,240,283,261,249,220,186,246,197,205,248,202,213 -NA,NA,Tameside,201,180,230,228,184,145,202,174,182,175,178,182 -NA,NA,Trafford,213,174,187,215,191,127,158,154,132,157,130,161 -NA,NA,Wigan,347,265,268,272,232,208,240,187,245,234,262,269 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Lancashire,NA,1259,1016,1045,1238,1028,827,982,848,798,1043,937,1105 -NA,NA,Burnley,91,81,84,76,83,52,68,72,57,96,80,74 -NA,NA,Chorley,118,85,83,105,80,54,79,66,54,78,80,104 -NA,NA,Fylde,116,92,92,109,87,68,77,59,58,92,91,103 -NA,NA,Hyndburn,74,64,75,97,83,63,76,60,50,61,55,85 -NA,NA,Lancaster,151,145,130,132,139,114,117,127,97,128,104,135 -NA,NA,Pendle,73,65,72,91,72,63,69,60,49,91,60,81 -NA,NA,Preston,128,103,93,129,90,74,106,94,94,118,89,94 -NA,NA,Ribble Valley,51,42,35,59,47,52,50,38,46,32,45,55 -NA,NA,Rossendale,61,50,51,76,61,47,48,46,55,51,45,55 -NA,NA,South Ribble,111,97,85,112,80,66,79,53,74,77,68,87 -NA,NA,West Lancashire,135,97,105,120,82,67,106,70,72,107,94,109 -NA,NA,Wyre,150,95,140,132,124,107,107,103,92,112,126,123 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Merseyside (Met County),NA,1514,1326,1329,1434,1206,1017,1098,1031,1070,1201,1080,1284 -NA,NA,Knowsley,182,130,131,135,116,98,108,110,125,130,97,134 -NA,NA,Liverpool,468,400,414,408,371,335,340,320,293,334,341,382 -NA,NA,Sefton,307,280,278,360,268,232,264,228,226,269,247,272 -NA,NA,St. Helens,185,199,161,170,146,119,135,116,130,160,138,165 -NA,NA,Wirral,372,317,345,361,305,233,251,257,296,308,257,331 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -YORKSHIRE AND THE HUMBER,NA,NA,5314,4391,4452,4883,4207,3463,3983,3606,3697,4081,3893,4372 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,East Riding of Yorkshire UA,NA,398,332,333,334,321,255,304,256,250,313,295,312 -NA,"Kingston upon Hull, City of UA",NA,223,205,216,251,191,161,188,156,208,209,172,224 -NA,North East Lincolnshire UA,NA,196,155,127,162,141,125,125,113,140,123,139,151 -NA,North Lincolnshire UA,NA,183,166,127,140,128,127,139,120,134,145,158,160 -NA,York UA,NA,171,151,150,177,158,119,158,119,135,148,162,157 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,North Yorkshire,NA,670,539,568,597,476,422,481,460,451,490,479,583 -NA,NA,Craven,69,61,52,64,40,35,62,44,44,50,51,64 -NA,NA,Hambleton,109,75,79,85,60,60,56,64,78,70,73,73 -NA,NA,Harrogate,155,134,145,143,115,93,120,106,101,134,105,143 -NA,NA,Richmondshire,45,31,45,38,39,24,30,31,38,28,39,42 -NA,NA,Ryedale,58,59,57,61,44,42,53,50,42,44,58,54 -NA,NA,Scarborough,150,117,122,138,121,116,98,100,105,116,96,134 -NA,NA,Selby,84,62,68,68,57,52,62,65,43,48,57,73 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,South Yorkshire (Met County),NA,1348,1129,1128,1250,1130,903,1020,1019,969,1020,974,1079 -NA,NA,Barnsley,248,205,221,239,205,168,179,177,163,187,179,201 -NA,NA,Doncaster,314,274,269,277,241,209,247,266,243,236,246,249 -NA,NA,Rotherham,279,218,219,239,231,180,217,181,182,207,189,221 -NA,NA,Sheffield,507,432,419,495,453,346,377,395,381,390,360,408 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,West Yorkshire (Met County),NA,2125,1714,1803,1972,1662,1351,1568,1363,1410,1633,1514,1706 -NA,NA,Bradford,461,425,447,466,374,319,320,308,321,379,357,360 -NA,NA,Calderdale,170,165,156,180,169,133,184,127,151,179,153,152 -NA,NA,Kirklees,385,299,307,329,301,271,282,269,266,283,295,331 -NA,NA,Leeds,786,544,580,696,557,419,530,450,441,542,479,574 -NA,NA,Wakefield,323,281,313,301,261,209,252,209,231,250,230,289 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -EAST MIDLANDS,NA,NA,4363,3633,3811,4121,3482,3005,3343,2902,3043,3621,3365,3588 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Derby UA,NA,256,226,186,197,185,153,197,148,152,173,186,217 -NA,Leicester UA,NA,305,198,217,251,198,178,186,190,172,218,216,217 -NA,Nottingham UA,NA,245,209,222,227,175,157,196,148,175,198,178,175 -NA,Rutland UA,NA,32,15,26,34,23,29,31,22,24,36,25,27 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Derbyshire,NA,810,668,732,780,630,521,574,559,527,708,618,679 -NA,NA,Amber Valley,125,115,127,118,87,99,92,92,87,99,103,120 -NA,NA,Bolsover,77,68,77,95,78,50,59,63,60,87,48,60 -NA,NA,Chesterfield,109,94,108,119,108,74,84,67,89,101,87,104 -NA,NA,Derbyshire Dales,85,61,66,62,55,54,57,55,56,74,79,78 -NA,NA,Erewash,132,90,90,117,96,61,91,67,76,111,97,92 -NA,NA,High Peak,90,75,78,78,73,54,67,77,45,72,58,68 -NA,NA,North East Derbyshire,95,98,94,108,77,74,66,81,63,97,85,75 -NA,NA,South Derbyshire,97,67,92,83,56,55,58,57,51,67,61,82 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Leicestershire,NA,547,537,499,547,490,434,499,392,442,498,464,524 -NA,NA,Blaby,89,69,83,70,60,54,82,67,58,69,76,76 -NA,NA,Charnwood,125,148,117,107,134,104,108,82,109,126,128,126 -NA,NA,Harborough,80,67,53,82,62,61,57,58,64,52,70,56 -NA,NA,Hinckley and Bosworth,89,83,80,91,82,68,86,47,72,85,53,89 -NA,NA,Melton,34,45,44,47,40,39,42,28,32,44,34,38 -NA,NA,North West Leicestershire,80,74,79,84,65,58,75,69,70,81,59,77 -NA,NA,Oadby and Wigston,50,51,43,66,47,50,49,41,37,41,44,62 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Lincolnshire,NA,802,625,687,765,654,547,572,560,551,659,608,671 -NA,NA,Boston,68,61,69,72,60,58,55,60,47,56,55,65 -NA,NA,East Lindsey,195,151,138,172,160,146,121,124,143,161,156,140 -NA,NA,Lincoln,92,71,107,97,58,46,58,55,59,79,68,82 -NA,NA,North Kesteven,105,96,91,103,92,57,89,71,70,82,72,102 -NA,NA,South Holland,105,74,102,101,83,73,78,71,75,97,83,83 -NA,NA,South Kesteven,145,100,92,132,122,100,102,107,92,104,91,112 -NA,NA,West Lindsey,92,72,88,88,79,67,69,72,65,80,83,87 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Northamptonshire,NA,579,512,528,578,523,405,464,403,455,472,455,499 -NA,NA,Corby,54,58,51,48,42,46,49,35,38,31,32,48 -NA,NA,Daventry,69,69,54,64,61,44,64,54,53,62,53,42 -NA,NA,East Northamptonshire,79,64,61,89,78,47,66,48,66,50,49,72 -NA,NA,Kettering,81,83,70,74,78,63,68,61,54,72,70,69 -NA,NA,Northampton,160,135,167,177,145,113,122,114,129,144,149,148 -NA,NA,South Northamptonshire,73,48,64,63,53,51,46,49,61,59,52,65 -NA,NA,Wellingborough,63,55,61,63,66,41,49,42,54,54,50,55 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Nottinghamshire,NA,787,643,714,742,604,581,624,480,545,659,615,579 -NA,NA,Ashfield,106,92,102,104,94,89,99,62,94,106,97,78 -NA,NA,Bassetlaw,124,108,115,101,83,98,101,75,86,99,108,95 -NA,NA,Broxtowe,99,80,94,116,93,72,72,70,83,94,82,72 -NA,NA,Gedling,134,84,108,97,81,86,94,73,70,94,72,64 -NA,NA,Mansfield,103,94,92,124,87,80,90,74,69,82,85,71 -NA,NA,Newark and Sherwood,114,102,107,109,89,86,80,62,68,106,100,99 -NA,NA,Rushcliffe,107,83,96,91,77,70,88,64,75,78,71,100 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -WEST MIDLANDS,NA,NA,5455,4538,4734,5263,4326,3621,4150,3655,3746,4301,4057,4414 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,"Herefordshire, County of UA",NA,170,146,161,203,173,144,147,141,143,167,139,154 -NA,Shropshire UA,NA,342,303,286,338,296,235,256,231,256,243,249,277 -NA,Stoke-on-Trent UA,NA,247,209,214,259,215,175,212,148,174,194,202,220 -NA,Telford and Wrekin UA,NA,139,116,140,145,90,114,101,89,126,131,95,106 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Staffordshire,NA,867,739,745,844,697,556,668,586,593,723,656,693 -NA,NA,Cannock Chase,90,66,73,76,62,60,65,64,49,62,60,71 -NA,NA,East Staffordshire,114,98,104,114,81,66,86,81,88,84,90,105 -NA,NA,Lichfield,112,93,91,93,99,70,86,67,85,93,86,84 -NA,NA,Newcastle-under-Lyme,151,116,116,135,104,89,93,85,79,119,116,108 -NA,NA,South Staffordshire,99,105,97,112,90,73,97,70,82,99,87,102 -NA,NA,Stafford,137,108,113,147,107,85,111,97,87,110,89,83 -NA,NA,Staffordshire Moorlands,118,101,104,107,100,67,80,78,77,96,83,87 -NA,NA,Tamworth,46,52,47,60,54,46,50,44,46,60,45,53 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Warwickshire,NA,512,419,467,506,407,375,425,371,364,421,385,423 -NA,NA,North Warwickshire,66,58,69,59,49,48,54,46,47,51,48,59 -NA,NA,Nuneaton and Bedworth,116,91,114,135,92,92,91,88,80,111,77,103 -NA,NA,Rugby,97,69,96,84,70,54,69,58,55,72,71,69 -NA,NA,Stratford-on-Avon,120,105,92,114,94,91,112,94,101,105,89,100 -NA,NA,Warwick,113,96,96,114,102,90,99,85,81,82,100,92 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,West Midlands (Met County),NA,2530,2104,2228,2372,1936,1640,1911,1650,1675,1935,1897,2051 -NA,NA,Birmingham,830,740,817,823,666,588,626,590,572,673,680,813 -NA,NA,Coventry,304,246,237,254,222,185,211,167,202,232,235,218 -NA,NA,Dudley,311,259,311,325,258,169,243,199,206,246,229,238 -NA,NA,Sandwell,324,262,265,300,226,225,260,213,212,214,227,231 -NA,NA,Solihull,226,183,161,201,164,125,164,137,131,155,143,155 -NA,NA,Walsall,280,203,211,249,202,161,192,169,169,209,188,192 -NA,NA,Wolverhampton,255,211,226,220,198,187,215,175,183,206,195,204 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Worcestershire,NA,648,502,493,596,512,382,430,439,415,487,434,490 -NA,NA,Bromsgrove,125,95,92,105,113,67,92,75,83,80,78,75 -NA,NA,Malvern Hills,110,84,85,107,88,65,78,71,85,78,76,81 -NA,NA,Redditch,80,59,52,69,58,46,49,55,46,59,46,56 -NA,NA,Worcester,87,66,77,67,73,50,56,68,39,74,62,69 -NA,NA,Wychavon,128,88,94,129,87,66,86,83,91,106,92,113 -NA,NA,Wyre Forest,118,110,93,119,93,88,69,87,71,90,80,96 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -EAST,NA,NA,5584,4581,4656,5180,4474,3972,4109,3684,3886,4544,4172,4427 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Bedford UA,NA,140,110,104,147,118,95,98,84,91,114,118,111 -NA,Central Bedfordshire UA,NA,217,165,163,216,164,137,158,132,134,155,159,165 -NA,Luton UA,NA,146,118,123,107,137,105,96,89,87,114,93,113 -NA,Peterborough UA,NA,149,126,139,136,131,96,105,99,123,123,98,114 -NA,Southend-on-Sea UA,NA,190,162,184,167,138,134,125,129,160,174,159,142 -NA,Thurrock UA,NA,115,101,106,94,104,91,102,78,65,126,91,97 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Cambridgeshire,NA,511,403,387,517,386,399,416,381,391,409,383,456 -NA,NA,Cambridge,95,69,74,96,71,68,71,69,65,57,59,84 -NA,NA,East Cambridgeshire,63,55,54,76,43,45,46,46,49,51,51,57 -NA,NA,Fenland,100,88,87,110,72,75,88,82,71,95,79,94 -NA,NA,Huntingdonshire,141,115,92,135,119,108,106,91,106,112,113,111 -NA,NA,South Cambridgeshire,112,76,80,100,81,103,105,93,100,94,81,110 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Essex,NA,1403,1078,1168,1324,1104,983,1008,925,952,1134,1051,1073 -NA,NA,Basildon,171,129,131,156,124,107,113,88,113,123,125,117 -NA,NA,Braintree,169,108,114,124,100,95,118,94,83,102,124,122 -NA,NA,Brentwood,65,58,43,71,75,54,48,45,48,71,69,60 -NA,NA,Castle Point,105,73,92,118,99,69,74,77,81,86,85,83 -NA,NA,Chelmsford,150,102,122,140,116,109,89,108,86,118,99,96 -NA,NA,Colchester,122,113,143,141,117,106,112,116,103,121,115,110 -NA,NA,Epping Forest,117,108,101,96,89,99,93,68,89,111,82,76 -NA,NA,Harlow,80,59,46,74,60,41,45,45,45,48,52,58 -NA,NA,Maldon,53,49,55,56,52,40,47,49,53,62,48,39 -NA,NA,Rochford,86,63,70,95,58,68,56,48,55,57,58,71 -NA,NA,Tendring,207,171,187,193,168,157,162,148,157,180,144,189 -NA,NA,Uttlesford,78,45,64,60,46,38,51,39,39,55,50,52 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Hertfordshire,NA,987,841,792,836,755,673,715,603,625,783,703,766 -NA,NA,Broxbourne,78,77,64,65,52,48,76,42,49,57,55,48 -NA,NA,Dacorum,128,118,110,117,91,100,91,82,81,130,75,120 -NA,NA,East Hertfordshire,113,91,97,95,90,87,64,68,65,72,68,81 -NA,NA,Hertsmere,109,64,70,71,76,63,66,54,64,66,73,77 -NA,NA,North Hertfordshire,136,117,115,100,106,94,90,80,88,112,93,93 -NA,NA,St Albans,122,99,72,98,94,72,69,75,68,91,91,79 -NA,NA,Stevenage,61,49,59,73,63,39,69,41,52,53,67,71 -NA,NA,Three Rivers,84,68,74,69,60,61,52,46,62,60,59,60 -NA,NA,Watford,63,73,66,66,53,56,54,49,48,62,44,51 -NA,NA,Welwyn Hatfield,93,85,65,82,70,53,84,66,48,80,78,86 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Norfolk,NA,919,885,852,914,810,715,708,651,719,770,740,721 -NA,NA,Breckland,157,145,119,139,130,103,99,99,105,134,121,127 -NA,NA,Broadland,125,144,134,134,123,102,94,96,118,127,122,105 -NA,NA,Great Yarmouth,98,113,111,127,109,89,92,80,68,95,95,85 -NA,NA,King’s Lynn and West Norfolk,183,170,150,167,118,151,132,118,136,138,133,134 -NA,NA,North Norfolk,134,119,124,133,131,97,105,103,109,94,115,111 -NA,NA,Norwich,92,99,93,99,94,83,89,72,81,80,75,83 -NA,NA,South Norfolk,130,95,121,115,105,90,97,83,102,102,79,76 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Suffolk,NA,807,592,638,722,627,544,578,513,539,642,577,669 -NA,NA,Babergh,101,74,64,95,77,75,66,72,67,77,68,87 -NA,NA,Forest Heath,63,42,40,48,45,41,38,33,33,45,46,41 -NA,NA,Ipswich,139,99,94,118,101,66,102,58,91,101,93,113 -NA,NA,Mid Suffolk,111,74,97,92,80,76,79,68,80,99,86,79 -NA,NA,St Edmundsbury,115,81,84,87,83,70,72,76,79,82,81,89 -NA,NA,Suffolk Coastal,146,125,149,147,112,101,105,101,105,121,99,131 -NA,NA,Waveney,132,97,110,135,129,115,116,105,84,117,104,129 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -LONDON,NA,NA,4957,4239,4171,4619,3954,3421,3784,3275,3431,4011,3758,3960 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Inner London,NA,1546,1299,1294,1414,1316,1144,1210,1035,1062,1261,1217,1219 -NA,NA,Camden,123,96,108,94,97,85,93,81,74,91,100,74 -NA,NA,City of London,2,0,2,4,1,1,4,0,4,3,2,3 -NA,NA,Hackney,95,96,91,87,92,91,85,62,80,70,70,109 -NA,NA,Hammersmith and Fulham,96,94,79,81,76,67,60,60,66,76,69,63 -NA,NA,Haringey,90,95,86,101,93,98,79,85,67,99,90,102 -NA,NA,Islington,88,92,89,111,78,88,84,74,76,96,85,98 -NA,NA,Kensington and Chelsea,95,61,64,77,67,53,70,42,43,78,54,59 -NA,NA,Lambeth,141,112,129,136,126,90,125,84,103,117,114,107 -NA,NA,Lewisham,158,120,147,154,146,104,109,94,98,126,113,125 -NA,NA,Newham,144,119,99,121,115,94,110,104,94,91,101,90 -NA,NA,Southwark,131,106,112,130,118,99,102,98,82,111,110,106 -NA,NA,Tower Hamlets,113,89,77,86,73,83,85,75,71,87,80,74 -NA,NA,Wandsworth,168,117,118,140,134,115,126,97,128,125,142,123 -NA,NA,Westminster,102,102,93,92,100,76,78,79,76,91,87,86 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Outer London,NA,3411,2940,2877,3205,2638,2277,2574,2240,2369,2750,2541,2741 -NA,NA,Barking and Dagenham,134,110,111,129,89,79,95,85,86,103,89,99 -NA,NA,Barnet,239,225,205,214,187,178,199,153,174,210,197,197 -NA,NA,Bexley,211,163,162,174,175,161,136,141,141,145,161,149 -NA,NA,Brent,155,157,139,165,142,120,114,99,134,136,123,149 -NA,NA,Bromley,259,242,215,234,224,139,216,166,187,215,208,197 -NA,NA,Croydon,263,196,200,231,174,160,171,164,157,200,178,193 -NA,NA,Ealing,175,174,185,186,146,121,148,142,150,158,134,156 -NA,NA,Enfield,226,163,185,214,163,139,172,142,140,163,147,167 -NA,NA,Greenwich,170,176,132,132,97,111,118,117,117,119,132,114 -NA,NA,Harrow,118,121,139,135,118,99,115,90,99,144,111,141 -NA,NA,Havering,249,215,197,247,180,149,179,151,146,190,152,213 -NA,NA,Hillingdon,185,151,144,177,158,109,154,135,146,136,163,141 -NA,NA,Hounslow,147,131,132,153,126,101,107,91,104,119,117,142 -NA,NA,Kingston upon Thames,124,101,108,109,73,86,89,72,89,101,80,90 -NA,NA,Merton,119,116,102,109,89,93,105,89,90,122,106,104 -NA,NA,Redbridge,193,179,172,184,154,123,126,120,131,146,137,144 -NA,NA,Richmond upon Thames,136,95,111,131,118,97,96,84,65,95,98,100 -NA,NA,Sutton,146,102,118,155,109,114,112,106,122,114,103,142 -NA,NA,Waltham Forest,162,123,120,126,116,98,122,93,91,134,105,103 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -SOUTH EAST,NA,NA,8083,6611,6819,7652,6534,5539,6168,5620,5651,6419,6104,6578 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Bracknell Forest UA,NA,62,62,66,54,59,50,59,46,56,76,47,56 -NA,Brighton and Hove UA,NA,215,172,182,196,175,150,172,175,148,157,157,166 -NA,Isle of Wight UA,NA,186,171,190,168,152,138,137,104,107,129,132,129 -NA,Medway UA,NA,233,157,157,178,179,153,167,167,159,182,162,178 -NA,Milton Keynes UA,NA,161,141,150,163,144,106,155,118,111,131,111,146 -NA,Portsmouth UA,NA,181,144,158,157,140,134,147,125,111,156,126,149 -NA,Reading UA,NA,125,103,105,98,88,61,80,81,78,94,87,108 -NA,Slough UA,NA,81,87,79,78,72,55,60,50,46,64,63,78 -NA,Southampton UA,NA,194,162,184,182,155,132,139,122,120,167,164,167 -NA,West Berkshire UA,NA,119,110,109,110,87,94,104,93,105,100,87,92 -NA,Windsor and Maidenhead UA,NA,115,98,112,124,96,83,103,83,89,111,99,111 -NA,Wokingham UA,NA,128,101,102,112,93,72,76,69,87,107,100,89 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Buckinghamshire,NA,390,333,309,383,300,265,336,294,303,354,315,365 -NA,NA,Aylesbury Vale,138,95,99,160,107,78,106,101,98,122,119,144 -NA,NA,Chiltern,69,68,66,60,59,41,79,61,69,76,61,76 -NA,NA,South Bucks,57,70,53,61,45,49,51,44,26,51,54,51 -NA,NA,Wycombe,126,100,91,102,89,97,100,88,110,105,81,94 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,East Sussex,NA,660,509,559,692,543,439,489,468,483,520,495,518 -NA,NA,Eastbourne,133,106,122,156,104,94,104,106,88,99,95,103 -NA,NA,Hastings,99,65,76,95,87,83,80,66,85,85,65,78 -NA,NA,Lewes,114,91,102,125,92,65,85,85,76,81,89,84 -NA,NA,Rother,131,118,122,156,122,87,100,90,106,117,112,104 -NA,NA,Wealden,183,129,137,160,138,110,120,121,128,138,134,149 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Hampshire,NA,1255,974,1096,1212,1025,865,1020,902,932,973,969,1058 -NA,NA,Basingstoke and Deane,142,82,104,131,93,88,100,88,102,107,101,97 -NA,NA,East Hampshire,104,86,90,104,104,84,88,99,82,80,90,111 -NA,NA,Eastleigh,105,86,97,110,88,72,91,77,77,71,71,96 -NA,NA,Fareham,132,102,101,129,80,82,100,72,79,103,121,95 -NA,NA,Gosport,98,58,79,85,68,69,56,53,77,58,68,74 -NA,NA,Hart,47,46,37,67,50,51,60,46,54,54,58,46 -NA,NA,Havant,134,114,134,118,119,104,103,117,92,105,95,124 -NA,NA,New Forest,209,174,201,212,182,130,166,146,156,157,161,172 -NA,NA,Rushmoor,80,60,69,64,64,40,64,45,57,66,50,57 -NA,NA,Test Valley,110,65,92,104,86,73,100,77,85,82,93,96 -NA,NA,Winchester,94,101,92,88,91,72,92,82,71,90,61,90 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Kent,NA,1493,1214,1229,1394,1192,998,1081,1010,1005,1131,1100,1141 -NA,NA,Ashford,91,91,93,113,89,93,68,54,74,85,80,87 -NA,NA,Canterbury,161,107,165,159,150,93,104,101,91,118,112,117 -NA,NA,Dartford,115,78,86,78,75,50,64,60,53,74,53,69 -NA,NA,Dover,106,110,97,110,106,83,97,91,92,95,101,108 -NA,NA,Gravesham,101,87,67,81,74,72,89,77,63,61,68,67 -NA,NA,Maidstone,167,132,112,139,111,94,111,92,104,124,130,126 -NA,NA,Sevenoaks,112,94,93,108,70,79,70,85,76,81,100,81 -NA,NA,Shepway,123,106,100,102,98,93,94,83,84,103,96,103 -NA,NA,Swale,137,96,92,138,135,91,108,101,89,108,80,102 -NA,NA,Thanet,173,133,155,168,130,132,111,117,139,136,126,124 -NA,NA,Tonbridge and Malling,108,87,78,98,81,55,85,71,75,73,75,85 -NA,NA,Tunbridge Wells,99,93,91,100,73,63,80,78,65,73,79,72 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Oxfordshire,NA,557,493,445,540,459,376,379,391,366,438,428,483 -NA,NA,Cherwell,111,103,80,99,106,99,85,88,77,103,99,101 -NA,NA,Oxford,100,96,78,85,81,61,52,59,70,70,64,103 -NA,NA,South Oxfordshire,130,121,101,135,90,65,84,81,79,83,85,101 -NA,NA,Vale of White Horse,111,90,97,119,95,86,75,78,75,96,86,84 -NA,NA,West Oxfordshire,105,83,89,102,87,65,83,85,65,86,94,94 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Surrey,NA,1025,800,837,980,848,733,793,710,716,826,756,819 -NA,NA,Elmbridge,126,83,105,125,77,92,82,79,92,81,70,95 -NA,NA,Epsom and Ewell,62,49,46,48,51,39,48,45,48,55,39,53 -NA,NA,Guildford,109,94,91,102,97,69,72,95,79,95,93,92 -NA,NA,Mole Valley,91,65,71,79,70,68,73,58,51,71,57,58 -NA,NA,Reigate and Banstead,126,108,121,129,110,92,114,93,95,107,72,100 -NA,NA,Runnymede,66,68,58,68,65,65,50,53,56,55,52,54 -NA,NA,Spelthorne,93,56,67,105,69,79,68,66,48,67,71,78 -NA,NA,Surrey Heath,70,55,63,61,82,55,46,42,60,63,69,57 -NA,NA,Tandridge,104,70,65,72,68,59,71,55,50,72,69,81 -NA,NA,Waverley,109,94,86,127,98,66,89,78,81,98,103,86 -NA,NA,Woking,69,58,64,64,61,49,80,46,56,62,61,65 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,West Sussex,NA,903,780,750,831,727,635,671,612,629,703,706,725 -NA,NA,Adur,73,59,70,72,59,40,50,53,37,55,64,65 -NA,NA,Arun,208,175,188,182,159,156,177,135,170,166,139,165 -NA,NA,Chichester,149,116,111,136,104,105,92,101,95,102,112,113 -NA,NA,Crawley,75,72,69,60,63,53,53,50,47,59,66,67 -NA,NA,Horsham,125,132,101,107,123,94,87,86,97,124,99,84 -NA,NA,Mid Sussex,118,118,97,139,110,106,101,95,96,102,136,112 -NA,NA,Worthing,155,108,114,135,109,81,111,92,87,95,90,119 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -SOUTH WEST,NA,NA,5571,4654,4915,5423,4534,3789,4238,3867,3971,4561,4367,4646 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Bath and North East Somerset UA,NA,170,124,155,156,162,122,130,110,118,140,134,149 -NA,Bournemouth UA,NA,213,181,180,216,176,152,149,119,132,185,144,148 -NA,"Bristol, City of UA",NA,328,275,335,354,291,244,284,255,287,293,314,286 -NA,Cornwall UA,NA,604,483,512,624,516,447,472,432,421,521,488,527 -NA,Isles of Scilly UA,NA,4,4,0,4,2,1,1,1,3,1,2,0 -NA,North Somerset UA,NA,224,193,195,226,186,174,197,138,138,196,199,202 -NA,Plymouth UA,NA,259,208,206,244,197,156,172,186,202,185,181,178 -NA,Poole UA,NA,166,138,165,151,119,108,138,115,119,140,111,154 -NA,South Gloucestershire UA,NA,221,178,205,190,185,150,174,164,126,182,162,172 -NA,Swindon UA,NA,164,140,140,176,138,114,119,111,126,163,153,139 -NA,Torbay UA,NA,208,157,161,168,144,96,140,125,118,157,133,155 -NA,Wiltshire UA,NA,450,379,402,415,360,288,325,309,322,374,355,381 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Devon,NA,877,726,710,840,690,592,656,636,655,655,624,681 -NA,NA,East Devon,197,160,155,165,175,129,136,138,152,158,146,156 -NA,NA,Exeter,112,86,92,109,92,67,76,68,73,72,69,94 -NA,NA,Mid Devon,76,65,44,78,42,51,50,57,50,50,57,55 -NA,NA,North Devon,130,99,103,114,74,74,87,81,84,80,65,80 -NA,NA,South Hams,75,65,79,89,79,70,77,61,77,72,71,76 -NA,NA,Teignbridge,148,112,114,150,115,108,123,115,123,144,118,117 -NA,NA,Torridge,78,71,67,81,59,51,68,63,53,37,58,50 -NA,NA,West Devon,61,68,56,54,54,42,39,53,43,42,40,53 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Dorset,NA,485,428,471,537,397,312,367,347,345,412,426,429 -NA,NA,Christchurch,59,50,70,60,55,41,66,52,48,60,54,53 -NA,NA,East Dorset,117,93,94,127,85,61,88,65,71,84,106,69 -NA,NA,North Dorset,63,61,64,73,50,49,49,49,41,48,60,67 -NA,NA,Purbeck,47,41,43,67,34,46,42,38,32,49,45,54 -NA,NA,West Dorset,136,118,127,130,116,70,77,89,98,112,96,114 -NA,NA,Weymouth and Portland,63,65,73,80,57,45,45,54,55,59,65,72 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Gloucestershire,NA,612,528,545,562,508,447,477,420,475,467,485,540 -NA,NA,Cheltenham,108,90,100,104,89,85,84,63,77,88,83,96 -NA,NA,Cotswold,91,79,68,87,76,63,56,88,73,90,68,73 -NA,NA,Forest of Dean,93,66,82,89,75,62,71,70,71,61,63,82 -NA,NA,Gloucester,103,81,109,100,97,77,76,67,94,69,91,112 -NA,NA,Stroud,135,135,102,117,103,95,123,81,100,94,113,108 -NA,NA,Tewkesbury,82,77,84,65,68,65,67,51,60,65,67,69 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Somerset,NA,586,512,533,560,463,386,437,399,384,490,456,505 -NA,NA,Mendip,108,107,115,117,79,86,84,73,71,83,86,88 -NA,NA,Sedgemoor,137,86,95,108,98,94,94,83,90,99,83,102 -NA,NA,South Somerset,152,157,163,171,154,113,118,116,117,152,136,156 -NA,NA,Taunton Deane,136,121,119,110,101,64,92,94,82,104,117,112 -NA,NA,West Somerset,53,41,41,54,31,29,49,33,24,52,34,47 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -WALES,NA,NA,3321,2710,2918,3278,2704,2276,2449,2263,2327,2629,2531,2732 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,Isle of Anglesey,95,66,81,77,77,61,70,81,55,61,54,63 -NA,NA,Gwynedd,116,115,118,134,119,79,77,92,95,89,104,105 -NA,NA,Conwy,163,142,116,140,127,127,110,120,128,134,120,119 -NA,NA,Denbighshire,125,97,93,124,96,83,90,99,94,88,91,117 -NA,NA,Flintshire,164,142,154,144,116,102,99,72,102,104,128,142 -NA,NA,Wrexham,126,111,121,124,108,99,108,85,96,100,113,121 -NA,NA,Powys,165,121,112,153,133,101,108,111,106,145,116,120 -NA,NA,Ceredigion,86,65,79,71,71,54,60,55,51,44,58,60 -NA,NA,Pembrokeshire,136,151,127,126,120,111,108,84,99,115,104,103 -NA,NA,Carmarthenshire,229,177,194,220,166,161,175,144,158,165,181,172 -NA,NA,Swansea,279,209,217,270,212,196,217,172,182,198,172,200 -NA,NA,Neath Port Talbot,159,121,143,188,135,100,100,122,126,129,126,132 -NA,NA,Bridgend,127,103,140,161,106,97,131,105,96,138,123,131 -NA,NA,The Vale of Glamorgan,116,104,120,126,98,105,89,99,101,107,93,111 -NA,NA,Cardiff,277,229,257,297,239,193,214,182,191,225,245,250 -NA,NA,"Rhondda, Cynon, Taff",272,216,238,276,200,174,198,198,210,235,193,205 -NA,NA,Merthyr Tydfil,77,58,54,49,60,37,42,43,40,48,53,50 -NA,NA,Caerphilly,170,144,171,197,142,125,131,113,129,155,140,158 -NA,NA,Blaenau Gwent,79,80,59,87,72,68,61,52,47,60,58,90 -NA,NA,Torfaen,106,76,96,93,79,55,77,73,70,87,70,80 -NA,NA,Monmouthshire,109,90,93,81,101,58,66,52,60,73,76,80 -NA,NA,Newport,145,93,135,140,127,90,118,109,91,129,113,123 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,Non-residents of England & Wales,85,66,82,105,94,87,97,106,98,108,88,84 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Footnotes:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -1,"The deaths of those whose usual residence is outside England and Wales are included in 'total registrations' but excluded from any sub-division of -England and Wales.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Source: Office for National Statistics,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA diff --git a/working_files/Monthly/Monthly2013Mortality-Metadata.csv b/working_files/Monthly/Monthly2013Mortality-Metadata.csv deleted file mode 100644 index dba7f47..0000000 --- a/working_files/Monthly/Monthly2013Mortality-Metadata.csv +++ /dev/null @@ -1,53 +0,0 @@ -Contents -Metadata -NA -Introduction -NA -"Monthly death figures provide counts of the number of deaths registered in a calendar month, by area of usual residence in England and Wales." -NA -"These figures are presented by regions (within England), unitary authorities, counties, districts & London boroughs." -NA -Notes -NA -Deaths occurring in England and Wales are registered on the General Register Office's Registration Online (RON) system. -Daily extracts of death registration records from RON are processed on ONS' database systems. -NA -The number of deaths registered in 2013 by month in England and Wales have now been finalised. There are only small changes from the provisional figures released during the year. -NA -Weekly deaths counts cannot be summed to match the counts for monthly deaths as some weeks may span more than one month. -NA -Bank Holidays could affect the number of registrations made within those months. -NA -Symbols -NA -In ONS mortality outputs published from July 2014 onwards symbols used are: -0 denotes nil -NA -In ONS mortality outputs published prior to July 2014 symbols used were: -- denotes nil -NA -"The new set of symbols used are being implemented across ONS outputs in order to improve harmonisation and consistency, and facilitate understanding of data and comparability." -NA -NA -The ONS policy on protecting confidentiality in birth and death statistics is available on the ONS website: -www.ons.gov.uk/ons/guide-method/best-practice/disclosure-control-policy-for-birth-and-death-statistics/index.html -NA -Further information and enquiries -NA -General enquiries should be addressed to: -Vital Statistics Outputs Branch -Office for National Statistics -Segensworth Road -Titchfield -Fareham -Hants PO15 5RR -Telephone: +44 (0)1329 444110 -email: vsob@ons.gsi.gov.uk -NA -"Special extracts and tabulations of mortality data for England and Wales are available to order (subject to legal frameworks, disclosure control, resources and agreement of costs, where appropriate). Such enquiries should be made to the postal or email address above." -NA -The ONS charging policy is available on the ONS website. -NA -Feedback -NA -We welcome feedback from users. Please send feedback to the postal or email address above. diff --git a/working_files/Monthly/Monthly2013Mortality-Related publications.csv b/working_files/Monthly/Monthly2013Mortality-Related publications.csv deleted file mode 100644 index 36af817..0000000 --- a/working_files/Monthly/Monthly2013Mortality-Related publications.csv +++ /dev/null @@ -1,34 +0,0 @@ -Contents -Related publications -NA -Mortality metadata -Supporting information for these tables can be found in mortality metadata. -NA -Quality and Methodology Information -Quality and Methodology Information notes for Mortality and Child Mortality. -NA -Further mortality statistics based on death registrations are available on the ONS website: -NA -"Interactive Mapping Tool, England and Wales" -An interactive mapping tool which enables trends in mortality to be analysed at the local level. Mortality rates for 2001 onwards have been calculated using the 2013 European Standard Population (ESP) and revised population estimates for 2002-2010 which take account of the 2011 Census. -NA -"Death Summary Tables, England and Wales" -The summary tables provide key death registration statistics for the reference year. -NA -"Annual Reference Volume: Series DR, England and Wales" -Series DR (Mortality Statistics: Deaths Registered in England and Wales) provides detailed death registration statistics for the reference year. This includes numbers of deaths by detailed underlying cause by age-sex group defined by the different chapters of the Tenth Revision of the International Classification of Diseases and Related Health Problems (ICD-10). -NA -"Vital Statistics: Population and Health Reference Table, United Kingdom and constituent countries" -"These tables provide annual data for a selection of key statistics under the following themes: population, demography and health. Figures for the latest years may be provisional, these will be updated to final figures when data is available." -NA -Mortality Statistics: Deaths registered in England and Wales by area of usual residence -Presents data on death registrations in the United Kingdom by area of usual residence. The release contains a summary table providing key mortality measures (numbers and rates including age standardised mortality rates) for the United Kingdom and its constituent countries and a table providing numbers of deaths in England and Wales by age and sex. -NA -"Weekly provisional figures on deaths registered, England and Wales" -Weekly death figures provide provisional counts of the number of deaths registered in England and Wales in the latest eight weeks for which data are available. -NA -20th Century Mortality Files -"The 20th Century mortality files are a record of mortality in England & Wales from 1901 to 2000. The files consist of an aggregated database of deaths by age group, sex, year and underlying cause, and include populations for England & Wales." -NA -21st Century Mortality Files -"The 21st Century Mortality Files are a record of mortality in England and Wales from 2001 onwards. They are designed to complement the Twentieth Century Mortality files. The files consist of an aggregated database of deaths by age group, sex, year and underlying cause, and include populations for England and Wales." diff --git a/working_files/Monthly/Monthly2013Mortality-Terms and conditions.csv b/working_files/Monthly/Monthly2013Mortality-Terms and conditions.csv deleted file mode 100644 index fd3f18e..0000000 --- a/working_files/Monthly/Monthly2013Mortality-Terms and conditions.csv +++ /dev/null @@ -1,31 +0,0 @@ -Contents -Terms and conditions -NA -A National Statistics publication -NA -National Statistics are produced to high professional standards set out in the Code of Practice for Official Statistics. They are produced free from any political interference. -NA -"The United Kingdom Statistics Authority has designated these statistics as National Statistics, in accordance with the Statistics and Registration Service Act 2007 and signifying compliance with the Code of Practice for Official Statistics." -Designation can be broadly interpreted to mean that the statistics: -• meet identified user needs; -• are well explained and readily accessible; -"• are produced according to sound methods, and" -• are managed impartially and objectively in the public interest. -NA -Once statistics have been designated as National Statistics it is a statutory requirement that the Code of Practice shall continue to be observed. -NA -About us -"The Office for National Statistics (ONS) is the executive office of the UK Statistics Authority, a non-ministerial department which reports directly to Parliament. ONS is the UK government’s single largest statistical producer. It compiles information about the UK’s society and economy, and provides the evidence-base for policy and decision-making, the allocation of resources, and public accountability." -NA -The Director-General of ONS reports directly to the National Statistician who is the Authority's Chief Executive and the Head of the Government Statistical Service. -NA -Copyright and reproduction -NA -© Crown copyright 2014 -"You may re-use this information (not including logos) free of charge in any format or medium, under the terms of the Open Government Licence." -Users should include a source accreditation to ONS - Source: Office for National Statistics (www.ons.gov.uk) -NA -"To view the Open Government licence, go to:" -www.nationalarchives.gov.uk/doc/open-government-licence -"or write to the Information Policy Team, The National Archives, Kew, London TW9 4DU" -email: psi@nationalarchives.gsi.gov.uk diff --git a/working_files/Monthly/Monthly2013Mortality.xls b/working_files/Monthly/Monthly2013Mortality.xls deleted file mode 100644 index f05de16..0000000 Binary files a/working_files/Monthly/Monthly2013Mortality.xls and /dev/null differ diff --git a/working_files/Monthly/Monthly2014Mortality-Contents.csv b/working_files/Monthly/Monthly2014Mortality-Contents.csv deleted file mode 100644 index ac4b323..0000000 --- a/working_files/Monthly/Monthly2014Mortality-Contents.csv +++ /dev/null @@ -1,10 +0,0 @@ -Contents,Monthly Figures on Deaths Registered in England and Wales -NA,NA -NA,NA -Metadata,Information on monthly deaths -NA,NA -Terms and conditions,Terms and conditions -NA,NA -Figures for 2014,"Deaths (numbers): by region, 2014 registrations, England and Wales" -NA,NA -Related publications,Provides links to further mortality statistics based on death registrations diff --git a/working_files/Monthly/Monthly2014Mortality-Figures for 2014.csv b/working_files/Monthly/Monthly2014Mortality-Figures for 2014.csv deleted file mode 100644 index b864649..0000000 --- a/working_files/Monthly/Monthly2014Mortality-Figures for 2014.csv +++ /dev/null @@ -1,469 +0,0 @@ -Contents,...2,...3,...4,...5,...6,...7,...8,...9,...10,...11,...12,...13,...14,...15 -"Monthly figures on deaths registered by area of usual residence, 2014",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,England and Wales -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Area of usual residence,NA,NA,Jan-14,Feb-14,Mar-14,Apr-14,May-14,Jun-14,Jul-14,Aug-14,Sep-14,Oct-14,Nov-14,Dec-14 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"ENGLAND, WALES AND ELSEWHERE 1",NA,NA,49026,41199,41217,41487,39422,38505,41244,35959,40979,43159,39457,49770 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -ENGLAND AND WALES,NA,NA,48916,41114,41129,41419,39338,38434,41140,35861,40874,43052,39373,49664 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -ENGLAND,NA,NA,45929,38566,38573,38729,36880,36058,38512,33640,38339,40201,36967,46481 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -WALES,NA,NA,2987,2548,2556,2690,2458,2376,2628,2221,2535,2851,2406,3183 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NORTH EAST,NA,NA,2556,2196,2220,2205,2129,2017,2221,2023,2238,2360,2020,2703 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,County Durham UA,NA,558,454,454,452,417,405,429,359,431,444,428,517 -NA,Darlington UA,NA,104,90,104,94,78,86,97,76,101,83,64,110 -NA,Hartlepool UA,NA,83,73,60,69,74,71,105,79,73,96,72,117 -NA,Middlesbrough UA,NA,138,123,120,116,124,111,117,118,130,148,104,135 -NA,Northumberland UA,NA,326,284,238,278,280,265,271,268,295,295,258,358 -NA,Redcar and Cleveland UA,NA,113,114,115,119,115,114,100,125,139,142,102,131 -NA,Stockton-on-Tees UA,NA,173,157,142,153,125,119,147,152,155,148,125,184 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Tyne and Wear (Met County),NA,1061,901,987,924,916,846,955,846,914,1004,867,1151 -NA,NA,Gateshead,217,165,195,184,163,136,195,146,164,162,164,221 -NA,NA,Newcastle upon Tyne,247,200,221,204,194,177,214,208,190,222,202,254 -NA,NA,North Tyneside,173,144,170,160,212,182,172,161,194,203,165,235 -NA,NA,South Tyneside,158,142,147,123,136,133,133,120,132,135,119,151 -NA,NA,Sunderland,266,250,254,253,211,218,241,211,234,282,217,290 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NORTH WEST,NA,NA,6611,5724,5655,5711,5314,5228,5625,4917,5470,5781,5303,6979 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Blackburn with Darwen UA,NA,120,100,99,105,102,96,93,96,96,113,86,128 -NA,Blackpool UA,NA,168,144,142,157,149,148,157,116,156,159,126,160 -NA,Cheshire East UA,NA,383,315,283,320,257,232,309,241,269,324,293,361 -NA,Cheshire West and Chester UA,NA,312,299,280,280,246,247,257,230,257,272,227,320 -NA,Halton UA,NA,81,95,120,106,111,88,91,90,89,89,102,122 -NA,Warrington UA,NA,206,140,152,179,114,125,142,143,147,170,162,204 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Cumbria,NA,485,431,469,438,443,453,411,415,386,468,435,493 -NA,NA,Allerdale,97,76,93,113,83,95,99,88,76,97,83,100 -NA,NA,Barrow-in-Furness,72,70,73,45,71,71,53,57,48,71,56,68 -NA,NA,Carlisle,98,90,78,87,88,96,69,82,82,100,99,102 -NA,NA,Copeland,75,48,66,46,60,63,62,56,58,61,70,77 -NA,NA,Eden,38,45,44,44,41,36,41,40,31,46,33,46 -NA,NA,South Lakeland,105,102,115,103,100,92,87,92,91,93,94,100 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Greater Manchester (Met County),NA,2295,1993,1916,1957,1840,1847,1989,1762,1962,2013,1821,2425 -NA,NA,Bolton,213,212,197,190,191,189,209,162,211,203,203,289 -NA,NA,Bury,171,152,135,140,133,137,121,134,153,152,137,183 -NA,NA,Manchester,352,317,287,296,275,272,306,290,300,269,284,331 -NA,NA,Oldham,225,173,171,184,152,191,180,143,205,185,193,214 -NA,NA,Rochdale,189,161,165,166,179,148,175,147,165,144,142,211 -NA,NA,Salford,210,186,175,186,192,162,174,156,163,173,153,216 -NA,NA,Stockport,236,218,212,234,186,206,245,199,210,261,216,260 -NA,NA,Tameside,221,187,176,172,150,164,153,167,181,207,142,200 -NA,NA,Trafford,188,157,139,165,148,139,181,141,142,177,138,198 -NA,NA,Wigan,290,230,259,224,234,239,245,223,232,242,213,323 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Lancashire,NA,1162,1007,987,1025,945,897,998,836,933,991,941,1282 -NA,NA,Burnley,85,77,72,75,70,65,72,59,87,71,81,97 -NA,NA,Chorley,117,92,88,92,81,71,66,70,78,97,80,112 -NA,NA,Fylde,105,92,82,77,84,85,94,66,73,91,69,101 -NA,NA,Hyndburn,67,61,59,73,59,51,78,71,62,68,65,98 -NA,NA,Lancaster,153,142,117,116,95,105,117,113,135,132,105,151 -NA,NA,Pendle,78,66,78,84,71,44,83,64,55,71,72,107 -NA,NA,Preston,112,91,108,113,91,110,95,84,85,92,84,140 -NA,NA,Ribble Valley,57,37,51,55,52,47,52,39,39,52,59,68 -NA,NA,Rossendale,57,49,39,57,60,41,56,45,49,60,50,87 -NA,NA,South Ribble,89,93,77,61,83,66,81,69,80,74,79,87 -NA,NA,West Lancashire,91,85,87,108,87,90,89,72,83,79,92,112 -NA,NA,Wyre,151,122,129,114,112,122,115,84,107,104,105,122 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Merseyside (Met County),NA,1399,1200,1207,1144,1107,1095,1178,988,1175,1182,1110,1484 -NA,NA,Knowsley,150,121,112,134,102,98,127,107,136,119,111,175 -NA,NA,Liverpool,408,353,370,316,333,347,320,305,337,356,336,419 -NA,NA,Sefton,313,271,285,261,233,232,283,234,248,235,255,342 -NA,NA,St. Helens,157,154,142,137,147,151,157,113,165,164,141,209 -NA,NA,Wirral,371,301,298,296,292,267,291,229,289,308,267,339 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -YORKSHIRE AND THE HUMBER,NA,NA,4820,3980,4014,4034,3873,3703,4004,3575,4098,4235,3865,5067 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,East Riding of Yorkshire UA,NA,332,316,252,311,280,299,280,262,269,321,275,394 -NA,"Kingston upon Hull, City of UA",NA,216,225,196,200,204,192,212,189,182,213,203,244 -NA,North East Lincolnshire UA,NA,151,125,124,125,125,129,146,111,120,140,117,157 -NA,North Lincolnshire UA,NA,149,116,133,156,125,112,148,119,134,127,147,188 -NA,York UA,NA,199,147,141,138,113,137,158,119,155,137,157,170 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,North Yorkshire,NA,583,505,467,501,513,443,498,438,544,524,474,589 -NA,NA,Craven,55,48,46,54,40,37,56,53,55,57,38,67 -NA,NA,Hambleton,88,72,61,75,73,69,71,72,82,57,60,83 -NA,NA,Harrogate,150,140,131,130,140,112,118,103,144,150,144,139 -NA,NA,Richmondshire,43,38,39,33,39,27,40,40,40,38,31,38 -NA,NA,Ryedale,52,36,52,43,37,46,36,34,43,34,46,53 -NA,NA,Scarborough,112,105,90,104,124,103,113,88,123,117,96,148 -NA,NA,Selby,83,66,48,62,60,49,64,48,57,71,59,61 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,South Yorkshire (Met County),NA,1284,1009,1045,1005,985,955,1013,956,1111,1055,968,1298 -NA,NA,Barnsley,243,207,210,182,167,155,185,188,174,196,171,227 -NA,NA,Doncaster,338,235,244,235,262,230,241,215,274,249,224,267 -NA,NA,Rotherham,267,192,186,204,231,206,191,192,226,223,200,279 -NA,NA,Sheffield,436,375,405,384,325,364,396,361,437,387,373,525 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,West Yorkshire (Met County),NA,1906,1537,1656,1598,1528,1436,1549,1381,1583,1718,1524,2027 -NA,NA,Bradford,394,377,352,396,346,304,332,316,373,412,323,491 -NA,NA,Calderdale,177,151,148,156,153,136,140,137,159,158,148,205 -NA,NA,Kirklees,380,297,322,306,288,293,286,255,268,310,282,398 -NA,NA,Leeds,645,474,560,510,517,483,516,454,500,578,493,587 -NA,NA,Wakefield,310,238,274,230,224,220,275,219,283,260,278,346 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -EAST MIDLANDS,NA,NA,4093,3498,3485,3466,3300,3297,3498,3003,3301,3599,3323,4076 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Derby UA,NA,221,166,184,193,171,161,177,156,181,177,169,203 -NA,Leicester UA,NA,225,235,210,178,194,201,189,178,194,220,185,249 -NA,Nottingham UA,NA,219,186,201,175,182,155,223,165,182,210,164,237 -NA,Rutland UA,NA,33,24,25,25,25,21,33,31,37,29,25,32 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Derbyshire,NA,794,664,663,627,592,592,639,609,604,682,589,756 -NA,NA,Amber Valley,150,111,94,112,111,85,96,109,80,92,96,119 -NA,NA,Bolsover,90,77,74,72,75,70,58,69,67,67,69,86 -NA,NA,Chesterfield,103,75,99,77,87,101,89,81,97,93,96,111 -NA,NA,Derbyshire Dales,80,78,66,47,54,58,83,52,62,78,44,73 -NA,NA,Erewash,123,83,102,95,71,86,95,79,88,109,92,91 -NA,NA,High Peak,81,80,78,60,47,50,81,64,60,77,52,84 -NA,NA,North East Derbyshire,101,89,83,86,80,82,77,91,77,96,81,109 -NA,NA,South Derbyshire,66,71,67,78,67,60,60,64,73,70,59,83 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Leicestershire,NA,577,449,476,440,452,465,491,380,453,481,470,621 -NA,NA,Blaby,76,66,61,63,65,65,58,48,67,73,59,84 -NA,NA,Charnwood,126,109,114,103,111,117,113,93,116,113,122,160 -NA,NA,Harborough,75,56,63,71,62,55,78,57,55,72,64,87 -NA,NA,Hinckley and Bosworth,90,77,75,68,63,82,73,57,74,81,79,94 -NA,NA,Melton,51,24,47,43,35,31,38,35,26,32,38,45 -NA,NA,North West Leicestershire,95,70,70,61,71,60,76,57,75,71,58,93 -NA,NA,Oadby and Wigston,64,47,46,31,45,55,55,33,40,39,50,58 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Lincolnshire,NA,708,652,594,662,634,597,605,526,597,629,603,649 -NA,NA,Boston,62,61,44,53,61,65,60,61,49,54,58,58 -NA,NA,East Lindsey,168,150,135,160,163,155,134,115,132,151,166,150 -NA,NA,Lincoln,83,66,65,67,60,60,78,55,78,58,62,74 -NA,NA,North Kesteven,98,89,84,81,91,70,74,62,78,93,84,89 -NA,NA,South Holland,91,98,88,92,74,80,97,85,93,90,76,97 -NA,NA,South Kesteven,116,118,112,122,103,96,100,88,100,107,92,127 -NA,NA,West Lindsey,90,70,66,87,82,71,62,60,67,76,65,54 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Northamptonshire,NA,555,489,490,483,472,488,469,411,461,508,462,586 -NA,NA,Corby,53,47,54,46,51,43,36,42,41,45,37,42 -NA,NA,Daventry,78,52,57,56,56,69,56,51,48,48,43,60 -NA,NA,East Northamptonshire,67,62,64,70,61,65,69,54,56,72,78,100 -NA,NA,Kettering,76,55,77,65,59,63,80,66,59,84,68,76 -NA,NA,Northampton,153,160,143,136,137,130,119,111,147,143,137,172 -NA,NA,South Northamptonshire,75,62,52,48,48,56,56,38,52,62,54,78 -NA,NA,Wellingborough,53,51,43,62,60,62,53,49,58,54,45,58 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Nottinghamshire,NA,761,633,642,683,578,617,672,547,592,663,656,743 -NA,NA,Ashfield,127,97,103,104,112,88,81,84,108,88,107,122 -NA,NA,Bassetlaw,123,102,82,109,78,108,98,87,87,94,116,97 -NA,NA,Broxtowe,100,83,84,99,76,88,97,70,76,97,103,90 -NA,NA,Gedling,117,77,103,100,84,94,105,75,78,91,91,106 -NA,NA,Mansfield,93,82,92,95,83,63,92,70,83,94,77,123 -NA,NA,Newark and Sherwood,108,97,102,94,83,98,105,83,95,124,85,117 -NA,NA,Rushcliffe,93,95,76,82,62,78,94,78,65,75,77,88 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -WEST MIDLANDS,NA,NA,5242,4271,4289,4268,3929,3967,4185,3694,4297,4441,4089,5032 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,"Herefordshire, County of UA",NA,190,147,144,154,152,148,181,129,165,157,145,208 -NA,Shropshire UA,NA,348,266,227,256,247,236,249,222,235,248,218,287 -NA,Stoke-on-Trent UA,NA,215,232,176,185,214,185,184,176,212,193,203,193 -NA,Telford and Wrekin UA,NA,138,100,118,113,107,89,118,81,94,100,109,129 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Staffordshire,NA,896,680,684,664,602,611,634,581,674,692,661,850 -NA,NA,Cannock Chase,103,65,87,67,64,63,70,58,75,70,78,82 -NA,NA,East Staffordshire,116,94,77,100,80,75,77,70,84,83,91,123 -NA,NA,Lichfield,119,92,97,72,81,77,81,69,91,73,73,101 -NA,NA,Newcastle-under-Lyme,131,96,95,70,76,84,98,83,92,125,102,133 -NA,NA,South Staffordshire,106,98,92,97,80,73,76,67,102,95,85,113 -NA,NA,Stafford,152,92,101,124,104,108,84,97,111,98,109,146 -NA,NA,Staffordshire Moorlands,110,98,88,82,68,83,78,92,72,85,71,97 -NA,NA,Tamworth,59,45,47,52,49,48,70,45,47,63,52,55 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Warwickshire,NA,504,394,407,406,346,409,400,369,416,471,410,533 -NA,NA,North Warwickshire,54,48,50,48,48,51,50,43,42,61,49,71 -NA,NA,Nuneaton and Bedworth,103,92,97,95,72,86,90,83,104,107,96,128 -NA,NA,Rugby,93,62,59,70,56,79,64,67,74,91,69,100 -NA,NA,Stratford-on-Avon,142,90,113,104,93,94,108,100,108,116,108,126 -NA,NA,Warwick,112,102,88,89,77,99,88,76,88,96,88,108 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,West Midlands (Met County),NA,2393,1992,2048,2019,1839,1850,1952,1752,2003,2084,1885,2296 -NA,NA,Birmingham,813,735,739,705,637,644,714,644,728,716,624,817 -NA,NA,Coventry,283,211,223,221,210,182,196,199,211,239,223,275 -NA,NA,Dudley,301,270,248,234,242,236,247,233,262,252,276,287 -NA,NA,Sandwell,288,219,230,234,198,236,213,185,242,260,220,289 -NA,NA,Solihull,208,171,169,187,172,149,171,119,155,153,137,156 -NA,NA,Walsall,263,199,216,236,197,202,219,188,215,238,202,255 -NA,NA,Wolverhampton,237,187,223,202,183,201,192,184,190,226,203,217 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Worcestershire,NA,558,460,485,471,422,439,467,384,498,496,458,536 -NA,NA,Bromsgrove,99,95,89,90,75,84,85,70,107,85,76,85 -NA,NA,Malvern Hills,89,79,99,60,69,57,79,58,103,93,87,78 -NA,NA,Redditch,59,46,48,57,49,54,42,37,43,66,44,77 -NA,NA,Worcester,90,62,68,64,67,57,63,46,65,75,73,79 -NA,NA,Wychavon,115,98,96,118,93,108,101,89,102,100,99,117 -NA,NA,Wyre Forest,106,80,85,82,69,79,97,84,78,77,79,100 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -EAST,NA,NA,5193,4441,4282,4393,4110,4173,4471,3768,4407,4555,4293,5150 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Bedford UA,NA,110,108,96,113,110,117,119,79,104,110,113,135 -NA,Central Bedfordshire UA,NA,173,174,181,157,140,156,137,121,160,168,151,184 -NA,Luton UA,NA,138,146,112,121,109,123,110,83,121,123,126,117 -NA,Peterborough UA,NA,132,121,113,105,111,116,133,113,112,132,134,164 -NA,Southend-on-Sea UA,NA,181,146,160,144,145,135,144,138,145,146,141,146 -NA,Thurrock UA,NA,122,106,107,92,82,91,102,73,96,98,101,85 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Cambridgeshire,NA,486,426,364,438,413,351,403,345,384,443,398,550 -NA,NA,Cambridge,76,63,65,71,65,50,76,58,69,76,63,95 -NA,NA,East Cambridgeshire,61,60,48,68,63,49,73,46,50,58,48,73 -NA,NA,Fenland,119,99,65,98,78,80,83,82,86,78,94,114 -NA,NA,Huntingdonshire,113,117,81,97,105,97,93,89,91,125,102,141 -NA,NA,South Cambridgeshire,117,87,105,104,102,75,78,70,88,106,91,127 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Essex,NA,1350,1140,1115,1088,1037,1109,1186,1004,1110,1104,1060,1291 -NA,NA,Basildon,160,156,125,112,139,102,126,109,115,108,128,142 -NA,NA,Braintree,125,104,116,111,80,122,131,89,113,106,102,132 -NA,NA,Brentwood,72,69,58,60,66,74,59,58,68,64,68,60 -NA,NA,Castle Point,84,78,82,90,79,82,81,71,85,79,74,91 -NA,NA,Chelmsford,132,113,124,101,96,108,128,102,102,101,110,126 -NA,NA,Colchester,167,123,115,123,132,118,120,112,125,117,115,160 -NA,NA,Epping Forest,132,122,117,98,108,111,115,104,105,117,110,136 -NA,NA,Harlow,78,56,46,62,50,58,69,54,57,69,64,71 -NA,NA,Maldon,67,41,54,51,43,53,48,46,59,51,43,58 -NA,NA,Rochford,54,70,56,68,58,57,74,65,71,59,49,65 -NA,NA,Tendring,207,145,157,153,136,167,173,132,164,179,146,194 -NA,NA,Uttlesford,72,63,65,59,50,57,62,62,46,54,51,56 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Hertfordshire,NA,860,753,749,752,704,705,714,652,751,827,725,970 -NA,NA,Broxbourne,66,40,58,61,49,56,50,49,58,62,52,70 -NA,NA,Dacorum,92,103,106,85,97,80,86,84,78,94,81,114 -NA,NA,East Hertfordshire,93,99,79,80,68,81,66,79,85,77,88,116 -NA,NA,Hertsmere,74,87,80,76,68,69,67,51,89,79,80,92 -NA,NA,North Hertfordshire,136,96,100,102,78,101,91,90,88,108,102,140 -NA,NA,St Albans,105,76,90,80,74,82,101,65,88,92,85,108 -NA,NA,Stevenage,73,63,51,57,73,54,69,45,57,78,48,81 -NA,NA,Three Rivers,68,47,68,72,61,51,59,63,58,78,55,73 -NA,NA,Watford,54,65,51,61,51,48,58,57,72,68,52,78 -NA,NA,Welwyn Hatfield,99,77,66,78,85,83,67,69,78,91,82,98 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Norfolk,NA,934,733,719,751,738,726,801,681,782,812,761,832 -NA,NA,Breckland,141,118,112,132,111,120,117,101,140,121,122,126 -NA,NA,Broadland,134,106,109,104,111,97,118,91,108,142,110,123 -NA,NA,Great Yarmouth,118,88,95,89,88,98,106,107,96,109,82,101 -NA,NA,King’s Lynn and West Norfolk,166,124,131,140,122,126,157,116,122,141,133,143 -NA,NA,North Norfolk,114,118,112,107,114,106,127,104,120,109,110,126 -NA,NA,Norwich,128,87,70,72,97,73,84,78,86,84,89,95 -NA,NA,South Norfolk,133,92,90,107,95,106,92,84,110,106,115,118 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Suffolk,NA,707,588,566,632,521,544,622,479,642,592,583,676 -NA,NA,Babergh,85,77,80,77,59,72,75,68,72,76,77,85 -NA,NA,Forest Heath,58,47,34,48,33,36,48,33,38,46,44,57 -NA,NA,Ipswich,121,109,81,95,76,70,101,74,98,84,104,110 -NA,NA,Mid Suffolk,73,80,89,70,62,59,62,65,79,66,75,95 -NA,NA,St Edmundsbury,86,66,73,96,66,78,81,69,98,84,72,86 -NA,NA,Suffolk Coastal,130,98,93,132,111,111,140,80,112,129,101,117 -NA,NA,Waveney,154,111,116,114,114,118,115,90,145,107,110,126 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -LONDON,NA,NA,4548,3839,4024,3889,3846,3607,3838,3408,3908,4063,3736,4877 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Inner London,NA,1445,1225,1302,1234,1287,1135,1162,1117,1200,1255,1145,1555 -NA,NA,Camden,111,79,80,89,91,87,92,86,75,91,84,95 -NA,NA,City of London,2,0,5,5,0,2,2,2,1,5,1,3 -NA,NA,Hackney,103,80,90,72,90,74,82,79,80,89,79,127 -NA,NA,Hammersmith and Fulham,92,63,68,69,73,66,71,57,79,66,55,87 -NA,NA,Haringey,116,104,95,88,88,86,96,88,96,93,94,129 -NA,NA,Islington,98,91,85,80,78,69,82,88,73,98,69,92 -NA,NA,Kensington and Chelsea,67,59,74,67,61,65,70,48,71,58,68,77 -NA,NA,Lambeth,121,106,142,104,161,89,101,101,96,112,88,157 -NA,NA,Lewisham,150,135,140,142,141,111,106,102,115,131,119,144 -NA,NA,Newham,116,103,109,85,97,107,80,88,117,106,110,146 -NA,NA,Southwark,126,104,118,130,108,108,94,105,117,122,92,133 -NA,NA,Tower Hamlets,117,74,79,90,76,87,89,72,76,91,90,121 -NA,NA,Wandsworth,122,137,136,120,139,108,107,107,106,105,106,149 -NA,NA,Westminster,104,90,81,93,84,76,90,94,98,88,90,95 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Outer London,NA,3103,2614,2722,2655,2559,2472,2676,2291,2708,2808,2591,3322 -NA,NA,Barking and Dagenham,105,112,119,102,104,90,109,79,94,106,115,131 -NA,NA,Barnet,242,196,197,210,169,178,198,175,190,196,195,203 -NA,NA,Bexley,202,165,159,157,150,148,140,150,157,150,139,179 -NA,NA,Brent,114,123,145,130,112,110,141,111,171,160,132,163 -NA,NA,Bromley,247,217,227,217,226,218,199,187,213,223,203,254 -NA,NA,Croydon,240,183,192,195,184,183,200,168,207,234,192,230 -NA,NA,Ealing,175,151,141,150,150,133,181,146,154,156,183,169 -NA,NA,Enfield,194,175,167,160,172,149,172,130,166,155,134,230 -NA,NA,Greenwich,162,138,124,132,120,141,123,102,144,136,125,143 -NA,NA,Harrow,135,101,134,127,95,105,133,95,115,134,124,155 -NA,NA,Havering,207,186,190,164,186,173,180,158,144,197,178,230 -NA,NA,Hillingdon,186,134,144,122,151,142,149,149,162,184,139,202 -NA,NA,Hounslow,135,113,111,110,115,94,122,104,114,97,100,157 -NA,NA,Kingston upon Thames,91,68,77,92,75,72,80,84,85,81,65,102 -NA,NA,Merton,108,101,91,97,85,103,95,85,89,120,105,134 -NA,NA,Redbridge,158,112,145,136,123,142,111,117,146,136,141,190 -NA,NA,Richmond upon Thames,109,92,101,97,90,74,96,55,95,103,86,112 -NA,NA,Sutton,145,130,141,132,130,113,133,96,125,114,115,195 -NA,NA,Waltham Forest,148,117,117,125,122,104,114,100,137,126,120,143 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -SOUTH EAST,NA,NA,7683,6266,6326,6359,6148,5981,6389,5432,6283,6540,6240,7324 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Bracknell Forest UA,NA,62,55,57,58,53,61,54,48,59,57,45,59 -NA,Brighton and Hove UA,NA,214,161,149,165,149,148,165,142,165,180,150,188 -NA,Isle of Wight UA,NA,148,130,146,153,135,150,122,120,148,141,143,154 -NA,Medway UA,NA,190,209,176,208,184,140,171,158,175,195,193,228 -NA,Milton Keynes UA,NA,187,121,136,155,143,101,135,122,142,154,131,160 -NA,Portsmouth UA,NA,179,138,164,138,167,136,149,98,130,137,128,151 -NA,Reading UA,NA,94,88,84,81,81,69,84,82,88,74,85,111 -NA,Slough UA,NA,86,64,46,58,60,47,72,54,60,69,69,70 -NA,Southampton UA,NA,181,125,144,152,135,147,149,125,147,142,138,175 -NA,West Berkshire UA,NA,109,93,86,88,102,81,91,76,106,108,87,120 -NA,Windsor and Maidenhead UA,NA,112,81,103,87,98,96,116,77,112,114,86,122 -NA,Wokingham UA,NA,115,107,94,92,94,89,76,87,102,96,92,98 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Buckinghamshire,NA,364,349,312,299,313,336,317,298,315,363,343,405 -NA,NA,Aylesbury Vale,131,122,106,92,113,119,119,85,93,129,121,139 -NA,NA,Chiltern,70,68,63,67,61,61,52,62,64,60,63,73 -NA,NA,South Bucks,62,44,47,47,46,60,45,55,46,62,56,71 -NA,NA,Wycombe,101,115,96,93,93,96,101,96,112,112,103,122 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,East Sussex,NA,586,512,473,504,493,473,565,420,489,530,528,596 -NA,NA,Eastbourne,127,107,98,97,93,87,105,83,102,110,102,154 -NA,NA,Hastings,91,66,73,74,70,83,95,71,79,80,73,94 -NA,NA,Lewes,81,85,85,89,98,88,90,59,63,81,91,93 -NA,NA,Rother,139,114,100,110,112,91,121,83,111,116,117,115 -NA,NA,Wealden,148,140,117,134,120,124,154,124,134,143,145,140 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Hampshire,NA,1140,944,969,1009,1005,957,1049,838,938,1031,942,1137 -NA,NA,Basingstoke and Deane,133,93,103,95,106,97,109,88,114,131,92,121 -NA,NA,East Hampshire,113,92,71,96,88,80,105,70,80,90,107,98 -NA,NA,Eastleigh,100,93,77,76,79,84,87,65,73,75,75,100 -NA,NA,Fareham,101,84,92,119,97,101,107,70,77,108,95,120 -NA,NA,Gosport,61,66,71,66,70,63,70,59,64,61,54,73 -NA,NA,Hart,58,53,47,45,61,55,55,42,51,56,48,65 -NA,NA,Havant,103,108,116,95,108,102,97,93,102,117,100,114 -NA,NA,New Forest,182,151,180,170,179,152,176,167,168,171,151,190 -NA,NA,Rushmoor,76,44,46,54,46,45,54,47,57,49,52,59 -NA,NA,Test Valley,118,78,83,97,70,85,97,64,80,77,73,87 -NA,NA,Winchester,95,82,83,96,101,93,92,73,72,96,95,110 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Kent,NA,1472,1119,1227,1171,1098,1069,1154,948,1125,1174,1146,1311 -NA,NA,Ashford,112,71,97,95,69,92,86,79,97,94,83,112 -NA,NA,Canterbury,176,128,144,114,131,108,120,109,128,119,134,151 -NA,NA,Dartford,74,68,63,49,66,65,72,58,66,74,71,97 -NA,NA,Dover,130,113,107,113,96,86,97,94,97,93,112,93 -NA,NA,Gravesham,97,78,68,75,73,64,74,61,73,92,63,76 -NA,NA,Maidstone,172,108,122,120,118,106,98,100,111,119,111,146 -NA,NA,Sevenoaks,97,76,88,86,72,87,90,54,74,98,89,91 -NA,NA,Shepway,138,75,110,112,89,101,105,93,100,83,103,119 -NA,NA,Swale,118,104,111,98,101,94,115,91,106,106,109,115 -NA,NA,Thanet,180,140,170,152,117,129,138,87,121,127,137,154 -NA,NA,Tonbridge and Malling,85,88,68,69,82,65,74,58,72,81,75,70 -NA,NA,Tunbridge Wells,93,70,79,88,84,72,85,64,80,88,59,87 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Oxfordshire,NA,559,441,472,431,435,436,421,400,452,445,429,478 -NA,NA,Cherwell,143,103,135,108,98,101,89,100,99,91,90,111 -NA,NA,Oxford,89,78,71,69,77,76,66,70,81,82,71,80 -NA,NA,South Oxfordshire,123,101,98,98,94,80,99,83,119,100,79,104 -NA,NA,Vale of White Horse,101,73,81,74,75,95,90,77,76,101,107,82 -NA,NA,West Oxfordshire,103,86,87,82,91,84,77,70,77,71,82,101 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Surrey,NA,1048,809,817,777,741,787,798,654,809,805,804,913 -NA,NA,Elmbridge,98,93,81,70,80,90,87,62,96,97,88,95 -NA,NA,Epsom and Ewell,60,51,45,47,47,49,57,36,48,40,45,74 -NA,NA,Guildford,102,92,90,84,85,89,63,52,84,94,90,80 -NA,NA,Mole Valley,110,65,73,85,52,70,60,68,66,70,61,77 -NA,NA,Reigate and Banstead,145,100,120,97,105,102,120,86,120,118,106,123 -NA,NA,Runnymede,73,50,40,44,55,51,50,53,49,63,37,51 -NA,NA,Spelthorne,94,62,75,67,68,55,64,62,63,65,93,95 -NA,NA,Surrey Heath,71,69,70,66,49,59,64,53,51,54,59,71 -NA,NA,Tandridge,91,61,74,65,49,62,71,51,66,60,76,80 -NA,NA,Waverley,119,102,84,99,81,98,101,74,109,88,87,105 -NA,NA,Woking,85,64,65,53,70,62,61,57,57,56,62,62 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,West Sussex,NA,837,720,671,733,662,658,701,685,721,725,701,848 -NA,NA,Adur,76,56,45,65,47,52,65,61,48,63,46,70 -NA,NA,Arun,178,150,158,178,153,165,157,174,178,175,176,207 -NA,NA,Chichester,130,131,101,124,94,107,111,106,122,119,101,110 -NA,NA,Crawley,74,61,73,53,51,59,54,66,45,53,47,61 -NA,NA,Horsham,123,98,87,108,96,86,98,90,97,97,109,139 -NA,NA,Mid Sussex,132,110,104,93,111,87,94,85,120,123,117,142 -NA,NA,Worthing,124,114,103,112,110,102,122,103,111,95,105,119 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -SOUTH WEST,NA,NA,5183,4351,4278,4404,4231,4085,4281,3820,4337,4627,4098,5273 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Bath and North East Somerset UA,NA,158,118,123,136,122,103,102,122,143,140,138,154 -NA,Bournemouth UA,NA,193,177,154,163,127,148,153,109,145,177,143,226 -NA,"Bristol, City of UA",NA,306,290,251,272,251,247,280,219,267,257,258,324 -NA,Cornwall UA,NA,593,488,448,474,495,469,464,451,453,502,473,559 -NA,Isles of Scilly UA,NA,1,0,3,1,0,0,5,2,2,2,2,2 -NA,North Somerset UA,NA,202,185,175,186,163,179,180,162,192,176,153,228 -NA,Plymouth UA,NA,233,168,214,202,169,158,204,160,173,204,172,209 -NA,Poole UA,NA,170,130,116,120,138,125,113,114,146,141,119,172 -NA,South Gloucestershire UA,NA,185,160,168,163,160,157,169,153,160,191,158,205 -NA,Swindon UA,NA,157,145,123,139,138,113,145,111,138,139,119,149 -NA,Torbay UA,NA,161,137,146,148,155,138,155,124,138,136,125,175 -NA,Wiltshire UA,NA,428,375,319,325,321,352,376,276,373,401,310,454 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Devon,NA,843,702,702,683,678,655,692,617,699,715,644,747 -NA,NA,East Devon,184,165,152,138,140,141,152,124,151,166,134,166 -NA,NA,Exeter,94,68,88,95,82,77,84,77,90,103,84,87 -NA,NA,Mid Devon,63,64,66,70,53,53,56,52,58,54,51,69 -NA,NA,North Devon,119,76,101,92,91,92,90,94,95,84,80,93 -NA,NA,South Hams,94,74,66,71,63,63,72,58,71,84,68,90 -NA,NA,Teignbridge,143,131,111,118,133,124,127,111,122,131,107,125 -NA,NA,Torridge,77,64,74,62,68,57,66,59,65,59,72,64 -NA,NA,West Devon,69,60,44,37,48,48,45,42,47,34,48,53 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Dorset,NA,450,353,375,417,417,390,373,350,396,420,399,472 -NA,NA,Christchurch,64,59,47,59,52,57,61,58,45,44,56,72 -NA,NA,East Dorset,110,69,77,99,103,78,73,67,87,72,94,103 -NA,NA,North Dorset,51,50,53,57,52,47,50,56,53,72,50,69 -NA,NA,Purbeck,46,23,44,34,29,49,39,25,44,46,44,46 -NA,NA,West Dorset,112,97,99,95,114,106,97,83,101,117,88,109 -NA,NA,Weymouth and Portland,67,55,55,73,67,53,53,61,66,69,67,73 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Gloucestershire,NA,565,477,491,509,472,438,438,445,466,557,444,583 -NA,NA,Cheltenham,111,90,95,93,83,82,83,69,76,117,76,89 -NA,NA,Cotswold,78,69,75,70,64,75,64,71,75,78,69,95 -NA,NA,Forest of Dean,84,67,77,78,67,54,67,66,70,89,67,83 -NA,NA,Gloucester,89,80,91,93,95,87,82,83,94,98,72,98 -NA,NA,Stroud,119,95,85,112,97,81,84,98,83,107,88,134 -NA,NA,Tewkesbury,84,76,68,63,66,59,58,58,68,68,72,84 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Somerset,NA,538,446,470,466,425,413,432,405,446,469,441,614 -NA,NA,Mendip,110,108,89,97,79,78,88,91,83,86,79,105 -NA,NA,Sedgemoor,127,91,107,91,78,90,78,83,98,107,100,134 -NA,NA,South Somerset,148,130,147,154,139,112,133,105,133,133,126,194 -NA,NA,Taunton Deane,113,89,95,87,90,110,99,92,105,103,99,127 -NA,NA,West Somerset,40,28,32,37,39,23,34,34,27,40,37,54 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -WALES,NA,NA,2987,2548,2556,2690,2458,2376,2628,2221,2535,2851,2406,3183 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,Isle of Anglesey,85,51,86,79,57,66,55,56,53,71,55,66 -NA,NA,Gwynedd,109,101,94,107,89,103,112,88,102,125,90,115 -NA,NA,Conwy,136,134,126,126,104,98,141,116,135,125,113,165 -NA,NA,Denbighshire,103,108,95,98,104,93,89,79,131,119,91,131 -NA,NA,Flintshire,139,112,99,121,103,97,121,99,123,131,97,145 -NA,NA,Wrexham,138,118,113,133,108,103,121,104,100,127,96,127 -NA,NA,Powys,135,109,121,129,131,108,95,103,129,133,118,143 -NA,NA,Ceredigion,67,62,48,55,58,65,73,51,60,79,61,67 -NA,NA,Pembrokeshire,128,103,119,116,115,108,108,77,96,126,117,113 -NA,NA,Carmarthenshire,206,179,162,174,168,161,176,147,160,194,173,221 -NA,NA,Swansea,237,200,185,196,175,188,198,162,194,231,186,248 -NA,NA,Neath Port Talbot,131,116,124,139,132,130,123,107,134,129,143,157 -NA,NA,Bridgend,154,126,128,132,96,118,126,105,120,128,104,176 -NA,NA,The Vale of Glamorgan,112,100,92,105,97,91,98,93,111,99,100,123 -NA,NA,Cardiff,234,227,211,247,195,204,235,181,238,259,213,283 -NA,NA,"Rhondda, Cynon, Taff",230,196,206,210,217,170,204,184,179,223,204,277 -NA,NA,Merthyr Tydfil,61,41,64,61,59,37,58,45,37,46,41,54 -NA,NA,Caerphilly,165,165,149,142,135,109,167,130,135,148,115,176 -NA,NA,Blaenau Gwent,75,58,69,57,52,64,67,61,67,75,53,80 -NA,NA,Torfaen,87,72,69,80,79,72,66,66,75,83,69,107 -NA,NA,Monmouthshire,102,73,84,68,79,78,83,74,60,64,54,87 -NA,NA,Newport,153,97,112,115,105,113,112,93,96,136,113,122 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,Non-residents of England & Wales,110,85,88,68,84,71,104,98,105,107,84,106 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Footnotes:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -1,"The deaths of those whose usual residence is outside England and Wales are included in 'total registrations' but excluded from any sub-division of -England and Wales.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Source: Office for National Statistics,NA,NA,Released: 28 July 2015,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA diff --git a/working_files/Monthly/Monthly2014Mortality-Metadata.csv b/working_files/Monthly/Monthly2014Mortality-Metadata.csv deleted file mode 100644 index 2e2748a..0000000 --- a/working_files/Monthly/Monthly2014Mortality-Metadata.csv +++ /dev/null @@ -1,56 +0,0 @@ -Contents -Metadata -NA -Introduction -NA -"Monthly death figures provide counts of the number of deaths registered in a calendar month, by area of usual residence in England and Wales." -NA -"These figures are presented by regions (within England), unitary authorities, counties, districts & London boroughs." -NA -Notes -NA -Deaths occurring in England and Wales are registered on the General Register Office's Registration Online (RON) system. -Daily extracts of death registration records from RON are processed on ONS' database systems. -NA -The number of deaths registered in 2014 by month in England and Wales have now been finalised. There are only small changes from the provisional figures released during the year. -NA -Weekly deaths counts cannot be summed to match the counts for monthly deaths as some weeks may span more than one month. -NA -Bank Holidays could affect the number of registrations made within those months. -NA -Symbols -NA -In ONS mortality outputs published from July 2014 onwards symbols used are: -0 denotes nil -NA -In ONS mortality outputs published prior to July 2014 symbols used were: -- denotes nil -NA -"The new set of symbols used are being implemented across ONS outputs in order to improve harmonisation and consistency, and facilitate understanding of data and comparability." -NA -https://gss.civilservice.gov.uk/statistics/a-z-of-policies-and-guidance/guidance-use-data-markers/ -NA -The ONS policy on protecting confidentiality in birth and death statistics is available on the ONS website: -www.ons.gov.uk/ons/guide-method/best-practice/disclosure-control-policy-for-birth-and-death-statistics/index.html -NA -Further information and enquiries -NA -General enquiries should be addressed to: -Vital Statistics Outputs Branch -Office for National Statistics -Segensworth Road -Titchfield -Fareham -Hants PO15 5RR -Telephone: +44 (0)1329 444110 -email: vsob@ons.gsi.gov.uk -NA -"Special extracts and tabulations of mortality data for England and Wales are available to order (subject to legal frameworks, disclosure control, resources and agreement of costs, where appropriate). Such enquiries should be made to the postal or email address above." -NA -The ONS charging policy is available on the ONS website. -"In line with the ONS approach to open data," -all ad hoc data requests will be published onto the website. -NA -Feedback -NA -We welcome feedback from users. Please send feedback to the postal or email address above. diff --git a/working_files/Monthly/Monthly2014Mortality-Related publications.csv b/working_files/Monthly/Monthly2014Mortality-Related publications.csv deleted file mode 100644 index 36af817..0000000 --- a/working_files/Monthly/Monthly2014Mortality-Related publications.csv +++ /dev/null @@ -1,34 +0,0 @@ -Contents -Related publications -NA -Mortality metadata -Supporting information for these tables can be found in mortality metadata. -NA -Quality and Methodology Information -Quality and Methodology Information notes for Mortality and Child Mortality. -NA -Further mortality statistics based on death registrations are available on the ONS website: -NA -"Interactive Mapping Tool, England and Wales" -An interactive mapping tool which enables trends in mortality to be analysed at the local level. Mortality rates for 2001 onwards have been calculated using the 2013 European Standard Population (ESP) and revised population estimates for 2002-2010 which take account of the 2011 Census. -NA -"Death Summary Tables, England and Wales" -The summary tables provide key death registration statistics for the reference year. -NA -"Annual Reference Volume: Series DR, England and Wales" -Series DR (Mortality Statistics: Deaths Registered in England and Wales) provides detailed death registration statistics for the reference year. This includes numbers of deaths by detailed underlying cause by age-sex group defined by the different chapters of the Tenth Revision of the International Classification of Diseases and Related Health Problems (ICD-10). -NA -"Vital Statistics: Population and Health Reference Table, United Kingdom and constituent countries" -"These tables provide annual data for a selection of key statistics under the following themes: population, demography and health. Figures for the latest years may be provisional, these will be updated to final figures when data is available." -NA -Mortality Statistics: Deaths registered in England and Wales by area of usual residence -Presents data on death registrations in the United Kingdom by area of usual residence. The release contains a summary table providing key mortality measures (numbers and rates including age standardised mortality rates) for the United Kingdom and its constituent countries and a table providing numbers of deaths in England and Wales by age and sex. -NA -"Weekly provisional figures on deaths registered, England and Wales" -Weekly death figures provide provisional counts of the number of deaths registered in England and Wales in the latest eight weeks for which data are available. -NA -20th Century Mortality Files -"The 20th Century mortality files are a record of mortality in England & Wales from 1901 to 2000. The files consist of an aggregated database of deaths by age group, sex, year and underlying cause, and include populations for England & Wales." -NA -21st Century Mortality Files -"The 21st Century Mortality Files are a record of mortality in England and Wales from 2001 onwards. They are designed to complement the Twentieth Century Mortality files. The files consist of an aggregated database of deaths by age group, sex, year and underlying cause, and include populations for England and Wales." diff --git a/working_files/Monthly/Monthly2014Mortality-Terms and conditions.csv b/working_files/Monthly/Monthly2014Mortality-Terms and conditions.csv deleted file mode 100644 index 3885b4b..0000000 --- a/working_files/Monthly/Monthly2014Mortality-Terms and conditions.csv +++ /dev/null @@ -1,34 +0,0 @@ -Contents -Terms and conditions -NA -A National Statistics publication -NA -National Statistics are produced to high professional standards set out in the Code of Practice for Official Statistics. They are produced free from any political interference. -NA -"The United Kingdom Statistics Authority has designated these statistics as National Statistics, in accordance with the Statistics and Registration Service Act 2007 and signifying compliance with the Code of Practice for Official Statistics." -Designation can be broadly interpreted to mean that the statistics: -• meet identified user needs; -• are well explained and readily accessible; -"• are produced according to sound methods, and" -• are managed impartially and objectively in the public interest. -NA -Once statistics have been designated as National Statistics it is a statutory requirement that the Code of Practice shall continue to be observed. -NA -About us -"We are the executive office of the UK Statistics Authority, a non-ministerial department which reports directly to Parliament and the UK government’s single largest statistical producer. We compile information about the UK’s society and economy, and provide the evidence-base for policy and decision-making, the allocation of resources, and public accountability." -NA -NA -Copyright and reproduction -NA -© Crown copyright 2015 -"You may re-use this document/publication (not including logos) free of charge in any format or medium, under the terms of the Open Government Licence." -Users should include a source accreditation to ONS - Source: Office for National Statistics licensed under the Open Government Licence. -NA -To view this licence visit: -www.nationalarchives.gov.uk/doc/open-government-licence -"or write to the Information Policy Team, The National Archives, Kew, Richmond, Surrey, TW9 4DU;" -or email: psi@nationalarchives.gsi.gov.uk -NA -Where we have identified any third party copyright information you will need to obtain permission from the copyright holders concerned. -NA -This document/publication is also available on our website at www.ons.gov.uk diff --git a/working_files/Monthly/Monthly2014Mortality.xls b/working_files/Monthly/Monthly2014Mortality.xls deleted file mode 100644 index 0d18788..0000000 Binary files a/working_files/Monthly/Monthly2014Mortality.xls and /dev/null differ diff --git a/working_files/Monthly/Monthly2015Mortality-Contents.csv b/working_files/Monthly/Monthly2015Mortality-Contents.csv deleted file mode 100644 index ae6950d..0000000 --- a/working_files/Monthly/Monthly2015Mortality-Contents.csv +++ /dev/null @@ -1,10 +0,0 @@ -Contents,Monthly figures on deaths registered in England and Wales -NA,NA -NA,NA -Metadata,Information on monthly deaths -NA,NA -Terms and conditions,Terms and conditions -NA,NA -Figures for 2015,"Deaths (numbers): by region, 2015 registrations, England and Wales" -NA,NA -Related publications,Provides links to further mortality statistics based on death registrations diff --git a/working_files/Monthly/Monthly2015Mortality-Figures for 2015.csv b/working_files/Monthly/Monthly2015Mortality-Figures for 2015.csv deleted file mode 100644 index cb24f92..0000000 --- a/working_files/Monthly/Monthly2015Mortality-Figures for 2015.csv +++ /dev/null @@ -1,468 +0,0 @@ -Contents,...2,...3,...4,...5,...6,...7,...8,...9,...10,...11,...12,...13,...14 -"Monthly figures on deaths registered by area of usual residence, 2015",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,England and Wales -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Area of usual residence,NA,Jan-15,Feb-15,Mar-15,Apr-15,May-15,Jun-15,Jul-15,Aug-15,Sep-15,Oct-15,Nov-15,Dec-15 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"K04000001, J99000001","ENGLAND, WALES AND ELSEWHERE 1,2",60891,46721,47895,45178,39343,42082,40512,36199,41573,42232,41520,45509 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -K04000001,ENGLAND AND WALES,60779,46634,47820,45077,39250,41992,40400,36096,41491,42125,41431,45412 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E92000001,ENGLAND,57034,43727,44809,42286,36713,39289,37916,33823,38876,39458,38883,42495 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000001,NORTH EAST,3239,2596,2503,2451,2109,2191,2125,1847,2152,2190,2197,2475 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000047,County Durham,635,506,520,475,410,412,414,338,435,466,409,509 -E06000005,Darlington,149,78,105,102,78,90,112,91,83,109,97,96 -E06000001,Hartlepool,138,99,109,69,82,85,71,65,74,82,81,112 -E06000002,Middlesbrough,166,144,130,116,127,124,119,104,107,95,115,101 -E06000057,Northumberland,413,330,337,302,291,285,257,224,267,279,296,295 -E06000003,Redcar and Cleveland,179,144,129,142,136,125,114,108,120,117,108,140 -E06000004,Stockton-on-Tees,263,169,155,163,127,129,142,101,161,148,140,180 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000007,Tyne and Wear (Met County),1296,1126,1018,1082,858,941,896,816,905,894,951,1042 -E08000037,Gateshead,226,195,195,187,180,171,151,150,176,170,191,205 -E08000021,Newcastle upon Tyne,298,260,223,237,177,231,204,187,175,184,222,235 -E08000022,North Tyneside,226,221,194,216,163,164,181,158,181,174,168,176 -E08000023,South Tyneside,194,180,159,160,125,124,120,122,153,130,133,143 -E08000024,Sunderland,352,270,247,282,213,251,240,199,220,236,237,283 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000002,NORTH WEST,8073,6120,6428,6058,5332,5614,5545,4965,5516,5637,5680,6331 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000008,Blackburn with Darwen,142,103,124,116,78,96,99,80,97,102,122,106 -E06000009,Blackpool,234,174,188,191,147,160,124,133,162,145,170,158 -E06000049,Cheshire East,469,331,367,330,296,314,299,277,312,268,326,295 -E06000050,Cheshire West and Chester,325,305,308,280,270,280,262,219,265,269,279,296 -E06000006,Halton,162,105,100,102,99,90,90,81,102,98,86,107 -E06000007,Warrington,234,148,172,164,147,156,151,126,174,154,164,167 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000006,Cumbria,614,479,562,463,428,422,451,413,442,420,400,486 -E07000026,Allerdale,111,95,132,96,79,80,79,78,94,95,77,101 -E07000027,Barrow-in-Furness,73,62,68,72,60,63,61,83,62,68,48,53 -E07000028,Carlisle,125,111,120,102,87,76,103,80,78,65,98,100 -E07000029,Copeland,81,67,76,55,69,72,67,46,71,64,48,65 -E07000030,Eden,73,47,49,49,45,39,44,36,49,42,47,50 -E07000031,South Lakeland,151,97,117,89,88,92,97,90,88,86,82,117 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000001,Greater Manchester (Met County),2886,2119,2184,2094,1823,1877,2005,1765,1894,2009,2013,2175 -E08000001,Bolton,292,229,233,222,198,201,215,195,224,210,191,220 -E08000002,Bury,195,173,154,155,143,133,170,144,136,170,149,180 -E08000003,Manchester,434,307,292,318,252,269,254,267,261,314,313,328 -E08000004,Oldham,255,169,205,172,145,161,182,152,154,178,181,213 -E08000005,Rochdale,240,150,185,190,149,162,153,159,165,150,157,155 -E08000006,Salford,258,190,197,204,191,161,189,152,166,160,154,201 -E08000007,Stockport,328,241,240,238,197,212,233,192,237,236,245,231 -E08000008,Tameside,295,207,192,194,174,176,178,156,161,177,189,197 -E08000009,Trafford,226,179,203,143,162,173,169,129,133,157,162,172 -E08000010,Wigan,363,274,283,258,212,229,262,219,257,257,272,278 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000017,Lancashire,1372,1055,1068,1050,924,954,930,856,962,988,935,1165 -E07000117,Burnley,103,83,88,73,68,73,74,69,63,88,81,80 -E07000118,Chorley,141,83,89,82,78,71,72,77,71,85,79,96 -E07000119,Fylde,135,79,95,98,87,75,81,71,79,84,78,94 -E07000120,Hyndburn,93,65,62,84,71,60,41,57,69,69,68,60 -E07000121,Lancaster,156,119,135,129,121,118,119,115,105,122,103,155 -E07000122,Pendle,104,86,72,66,66,50,73,53,54,71,58,105 -E07000123,Preston,158,107,108,111,94,84,87,84,102,105,89,110 -E07000124,Ribble Valley,61,52,46,52,36,44,41,45,41,33,43,56 -E07000125,Rossendale,89,57,60,50,50,56,55,42,55,42,47,67 -E07000126,South Ribble,99,92,85,97,70,92,69,65,95,79,75,88 -E07000127,West Lancashire,107,99,98,83,75,99,98,83,111,100,95,117 -E07000128,Wyre,126,133,130,125,108,132,120,95,117,110,119,137 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000002,Merseyside (Met County),1635,1301,1355,1268,1120,1265,1134,1015,1106,1184,1185,1376 -E08000011,Knowsley,160,132,137,133,103,139,128,115,116,115,108,140 -E08000012,Liverpool,529,365,391,365,357,368,340,271,321,367,355,424 -E08000014,Sefton,366,317,312,277,239,278,227,229,239,228,256,281 -E08000013,St. Helens,202,156,184,151,147,175,142,146,132,171,152,189 -E08000015,Wirral,378,331,331,342,274,305,297,254,298,303,314,342 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000003,YORKSHIRE AND THE HUMBER,5938,4462,4577,4335,3968,4170,3878,3659,4053,3986,4107,4557 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000011,East Riding of Yorkshire,444,346,355,334,308,329,286,263,338,301,312,324 -E06000010,"Kingston upon Hull, City of",322,237,226,215,180,213,190,164,192,194,175,197 -E06000012,North East Lincolnshire,181,158,149,155,123,121,132,128,140,116,113,166 -E06000013,North Lincolnshire,211,177,172,135,154,139,119,105,126,128,150,147 -E06000014,York,188,142,152,153,138,152,144,135,150,159,148,145 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000023,North Yorkshire,733,525,548,499,496,482,499,453,483,512,545,589 -E07000163,Craven,62,52,55,52,58,37,56,40,49,46,45,66 -E07000164,Hambleton,99,87,82,54,66,70,82,62,83,81,69,77 -E07000165,Harrogate,198,138,128,139,118,133,129,125,113,135,132,154 -E07000166,Richmondshire,67,34,49,38,33,36,40,27,34,40,37,42 -E07000167,Ryedale,68,54,56,40,55,46,42,38,49,46,51,51 -E07000168,Scarborough,161,110,123,102,119,101,95,102,104,111,129,118 -E07000169,Selby,78,50,55,74,47,59,55,59,51,53,82,81 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000003,South Yorkshire (Met County),1583,1156,1148,1153,970,1047,1010,887,1016,1020,1042,1195 -E08000016,Barnsley,296,210,231,204,172,176,185,163,188,219,185,257 -E08000017,Doncaster,387,267,285,248,222,272,223,207,230,216,247,294 -E08000018,Rotherham,344,241,238,243,220,207,188,188,197,195,205,226 -E08000019,Sheffield,556,438,394,458,356,392,414,329,401,390,405,418 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000006,West Yorkshire (Met County),2276,1721,1827,1691,1599,1687,1498,1524,1608,1556,1622,1794 -E08000032,Bradford,502,386,403,359,382,371,320,338,349,338,328,398 -E08000033,Calderdale,227,144,160,174,159,149,165,153,165,140,146,168 -E08000034,Kirklees,397,344,317,313,275,306,295,309,307,293,318,349 -E08000035,Leeds,749,574,633,521,526,584,464,497,538,523,572,609 -E08000036,Wakefield,401,273,314,324,257,277,254,227,249,262,258,270 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000004,EAST MIDLANDS,5239,4011,4005,3913,3342,3493,3482,3007,3523,3594,3486,3921 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000015,Derby,248,209,190,170,194,189,180,169,185,177,182,191 -E06000016,Leicester,308,202,222,223,185,193,182,190,226,242,201,247 -E06000018,Nottingham,280,208,219,227,175,203,212,155,190,162,197,218 -E06000017,Rutland,48,29,41,30,27,32,34,32,28,34,34,28 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000007,Derbyshire,963,830,739,742,628,637,656,563,670,676,658,728 -E07000032,Amber Valley,158,132,118,125,105,103,114,91,106,106,107,129 -E07000033,Bolsover,94,81,87,75,64,82,84,64,63,71,75,81 -E07000034,Chesterfield,124,106,107,90,98,100,78,83,103,91,102,107 -E07000035,Derbyshire Dales,113,89,69,73,66,65,65,47,65,83,75,67 -E07000036,Erewash,131,115,106,99,71,83,98,74,86,102,86,95 -E07000037,High Peak,97,88,77,87,69,68,56,65,58,70,55,75 -E07000038,North East Derbyshire,124,118,102,108,97,71,91,76,105,86,88,89 -E07000039,South Derbyshire,122,101,73,85,58,65,70,63,84,67,70,85 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000018,Leicestershire,660,527,492,514,460,470,482,414,471,486,488,569 -E07000129,Blaby,87,78,54,65,61,68,73,40,71,62,74,85 -E07000130,Charnwood,152,122,121,116,97,125,105,94,96,133,97,123 -E07000131,Harborough,97,68,61,65,66,57,57,50,65,64,73,83 -E07000132,Hinckley and Bosworth,123,88,85,86,71,74,90,82,102,67,86,101 -E07000133,Melton,49,40,44,44,35,36,37,29,25,43,34,46 -E07000134,North West Leicestershire,84,80,75,83,68,67,80,81,66,69,66,78 -E07000135,Oadby and Wigston,68,51,52,55,62,43,40,38,46,48,58,53 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000019,Lincolnshire,1040,674,736,669,624,626,650,563,604,685,667,680 -E07000136,Boston,111,45,77,61,66,50,60,48,51,50,55,60 -E07000137,East Lindsey,221,168,169,164,137,155,150,147,149,164,163,145 -E07000138,Lincoln,136,88,83,63,62,67,69,59,64,81,79,89 -E07000139,North Kesteven,134,94,98,87,104,92,87,75,90,80,84,101 -E07000140,South Holland,136,83,102,89,76,76,96,73,74,105,90,89 -E07000141,South Kesteven,171,111,126,115,116,104,111,103,108,126,112,108 -E07000142,West Lindsey,131,85,81,90,63,82,77,58,68,79,84,88 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000021,Northamptonshire,674,538,630,546,447,480,477,419,525,499,443,562 -E07000150,Corby,56,40,60,53,39,38,46,46,44,47,46,56 -E07000151,Daventry,77,69,65,65,48,65,54,32,56,47,48,66 -E07000152,East Northamptonshire,89,71,80,83,66,66,67,47,64,81,58,75 -E07000153,Kettering,97,84,87,73,65,63,75,61,81,59,77,66 -E07000154,Northampton,204,141,191,154,134,138,115,119,162,162,122,155 -E07000155,South Northamptonshire,86,66,82,70,53,56,66,54,58,45,47,71 -E07000156,Wellingborough,65,67,65,48,42,54,54,60,60,58,45,73 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000024,Nottinghamshire,1018,794,736,792,602,663,609,502,624,633,616,698 -E07000170,Ashfield,137,127,115,125,107,116,87,82,106,104,101,98 -E07000171,Bassetlaw,157,120,96,121,97,107,79,73,89,97,100,116 -E07000172,Broxtowe,152,103,115,103,85,92,77,61,78,79,71,104 -E07000173,Gedling,155,112,115,124,87,88,114,72,87,99,81,100 -E07000174,Mansfield,125,111,100,104,72,81,88,73,86,66,85,102 -E07000175,Newark and Sherwood,151,123,105,113,76,98,89,73,97,95,94,93 -E07000176,Rushcliffe,141,98,90,102,78,81,75,68,81,93,84,85 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000005,WEST MIDLANDS,6373,4674,4927,4743,4081,4317,4211,3668,4250,4329,4372,4618 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000019,"Herefordshire, County of",269,169,206,166,139,190,139,144,169,161,178,170 -E06000051,Shropshire,409,318,315,306,220,247,260,227,307,271,262,311 -E06000021,Stoke-on-Trent,261,240,218,244,199,206,199,157,211,205,191,201 -E06000020,Telford and Wrekin,168,143,141,131,118,121,130,95,98,113,120,124 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000028,Staffordshire,994,703,768,744,678,676,691,602,622,683,681,793 -E07000192,Cannock Chase,104,64,92,82,66,84,87,65,71,87,67,86 -E07000193,East Staffordshire,125,81,99,99,101,83,88,94,71,95,97,112 -E07000194,Lichfield,126,84,85,94,82,81,77,69,83,71,86,111 -E07000195,Newcastle-under-Lyme,141,117,107,100,112,104,118,101,95,105,102,112 -E07000196,South Staffordshire,148,83,108,113,86,100,100,68,81,96,103,99 -E07000197,Stafford,149,111,124,127,94,90,96,86,98,112,97,115 -E07000198,Staffordshire Moorlands,127,120,95,91,86,87,81,76,80,78,81,97 -E07000199,Tamworth,74,43,58,38,51,47,44,43,43,39,48,61 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000031,Warwickshire,620,503,492,444,379,448,424,397,416,399,448,475 -E07000218,North Warwickshire,78,72,59,70,35,56,51,44,57,50,51,66 -E07000219,Nuneaton and Bedworth,142,136,116,95,99,107,98,100,84,96,96,113 -E07000220,Rugby,103,90,86,70,66,82,73,74,65,67,85,86 -E07000221,Stratford-on-Avon,168,117,141,128,90,108,103,96,113,94,109,101 -E07000222,Warwick,129,88,90,81,89,95,99,83,97,92,107,109 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000005,West Midlands (Met County),2985,2102,2245,2212,1914,1986,1890,1612,1975,2040,2008,2053 -E08000025,Birmingham,1035,733,742,790,656,679,677,590,668,699,678,693 -E08000026,Coventry,304,236,236,252,228,235,214,174,257,229,210,224 -E08000027,Dudley,402,285,307,260,243,270,230,196,239,255,275,244 -E08000028,Sandwell,358,233,283,285,211,216,214,190,238,223,231,266 -E08000029,Solihull,255,177,200,164,149,148,124,128,158,178,155,147 -E08000030,Walsall,331,216,250,241,218,227,218,163,211,244,219,251 -E08000031,Wolverhampton,300,222,227,220,209,211,213,171,204,212,240,228 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000034,Worcestershire,667,496,542,496,434,443,478,434,452,457,484,491 -E07000234,Bromsgrove,129,103,101,103,82,82,75,84,95,82,104,101 -E07000235,Malvern Hills,114,101,85,97,49,76,76,80,74,73,73,95 -E07000236,Redditch,74,54,61,46,45,48,56,36,56,55,54,52 -E07000237,Worcester,93,59,79,74,61,71,75,67,49,66,77,61 -E07000238,Wychavon,139,97,106,90,109,88,94,81,96,89,95,89 -E07000239,Wyre Forest,118,82,110,86,88,78,102,86,82,92,81,93 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000006,EAST,6681,5209,5144,4784,4055,4578,4337,3856,4295,4583,4350,4535 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000055,Bedford,166,141,153,122,108,113,114,106,112,118,104,126 -E06000056,Central Bedfordshire,242,197,187,165,144,164,166,138,165,167,151,163 -E06000032,Luton,157,103,131,127,102,130,127,105,109,103,114,113 -E06000031,Peterborough,154,164,117,109,112,123,113,110,122,138,109,123 -E06000033,Southend-on-Sea,205,170,224,156,129,172,159,128,149,171,156,150 -E06000034,Thurrock,160,110,98,94,103,105,90,95,80,98,84,109 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000003,Cambridgeshire,663,472,459,454,382,432,414,379,406,470,417,438 -E07000008,Cambridge,110,93,77,70,62,57,67,63,59,84,63,83 -E07000009,East Cambridgeshire,84,68,59,63,48,57,53,50,57,70,62,50 -E07000010,Fenland,140,106,95,79,76,95,87,80,88,78,96,91 -E07000011,Huntingdonshire,159,99,125,138,106,126,104,111,113,129,103,130 -E07000012,South Cambridgeshire,170,106,103,104,90,97,103,75,89,109,93,84 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000012,Essex,1672,1345,1296,1214,1055,1183,1053,939,1103,1153,1126,1122 -E07000066,Basildon,188,148,132,127,136,144,100,86,129,128,105,132 -E07000067,Braintree,193,147,128,130,113,123,100,112,105,123,125,133 -E07000068,Brentwood,90,74,69,75,61,65,60,52,53,61,66,61 -E07000069,Castle Point,117,93,101,103,86,81,82,74,67,83,104,82 -E07000070,Chelmsford,184,138,132,129,104,110,112,94,112,121,113,115 -E07000071,Colchester,180,132,135,125,103,134,118,101,130,151,130,105 -E07000072,Epping Forest,151,134,129,110,86,97,94,91,110,92,89,100 -E07000073,Harlow,77,62,56,58,49,61,58,43,58,52,48,51 -E07000074,Maldon,86,69,63,70,53,61,48,40,35,50,49,47 -E07000075,Rochford,83,62,83,60,72,68,58,57,80,71,57,56 -E07000076,Tendring,243,218,198,167,150,182,172,135,167,167,193,163 -E07000077,Uttlesford,80,68,70,60,42,57,51,54,57,54,47,77 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000015,Hertfordshire,1190,884,929,802,716,735,748,664,733,716,751,827 -E07000095,Broxbourne,91,60,59,63,65,55,55,56,64,58,58,65 -E07000096,Dacorum,118,112,127,106,80,91,108,86,92,100,94,112 -E07000242,East Hertfordshire,134,84,97,83,89,91,89,77,86,67,86,97 -E07000098,Hertsmere,116,80,94,89,70,72,70,58,68,78,74,80 -E07000099,North Hertfordshire,167,122,136,100,75,97,90,88,93,82,104,100 -E07000240,St Albans,149,115,99,108,83,96,87,67,97,87,86,108 -E07000243,Stevenage,92,73,70,64,63,55,61,59,54,57,61,61 -E07000102,Three Rivers,95,74,75,64,68,64,60,57,65,65,59,64 -E07000103,Watford,91,76,78,57,38,49,52,50,49,65,60,58 -E07000241,Welwyn Hatfield,137,88,94,68,85,65,76,66,65,57,69,82 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000020,Norfolk,1161,847,873,828,668,803,733,659,772,839,755,773 -E07000143,Breckland,204,138,166,125,113,157,122,111,125,126,115,130 -E07000144,Broadland,184,135,155,108,119,96,113,115,108,130,133,115 -E07000145,Great Yarmouth,119,86,100,108,65,83,74,74,96,97,82,90 -E07000146,King’s Lynn and West Norfolk,206,150,122,150,94,139,133,121,155,154,134,139 -E07000147,North Norfolk,151,128,123,125,104,126,88,95,104,116,99,117 -E07000148,Norwich,128,99,87,95,93,95,89,68,88,105,88,91 -E07000149,South Norfolk,169,111,120,117,80,107,114,75,96,111,104,91 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000029,Suffolk,911,776,677,713,536,618,620,533,544,610,583,591 -E07000200,Babergh,114,101,89,98,67,90,82,80,72,57,80,66 -E07000201,Forest Heath,61,51,40,50,36,42,42,36,31,43,40,47 -E07000202,Ipswich,149,105,116,113,92,105,99,82,98,101,101,91 -E07000203,Mid Suffolk,118,90,77,96,80,70,75,64,58,76,72,56 -E07000204,St Edmundsbury,130,116,83,102,61,86,76,79,69,81,72,92 -E07000205,Suffolk Coastal,168,142,138,131,97,106,126,92,110,119,103,121 -E07000206,Waveney,171,171,134,123,103,119,120,100,106,133,115,118 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000007,LONDON,5458,4371,4781,4278,3662,4021,3838,3499,4066,4127,4046,4396 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E13000001,Inner London,1614,1389,1528,1314,1153,1319,1324,1132,1362,1362,1285,1399 -E09000007,Camden,98,113,102,92,91,90,97,60,99,103,111,104 -E09000001,City of London,4,2,2,3,6,2,6,3,1,2,5,2 -E09000012,Hackney,96,110,111,91,101,89,95,77,93,79,103,116 -E09000013,Hammersmith and Fulham,93,88,87,72,76,81,71,75,81,85,76,87 -E09000014,Haringey,121,96,114,106,87,112,86,96,119,100,96,99 -E09000019,Islington,105,109,111,96,77,86,78,82,104,89,98,90 -E09000020,Kensington and Chelsea,81,60,60,80,44,59,80,57,87,68,68,79 -E09000022,Lambeth,162,123,138,130,103,123,157,106,101,154,97,114 -E09000023,Lewisham,178,137,176,122,97,128,149,102,133,120,115,142 -E09000025,Newham,151,120,125,131,117,109,98,105,121,105,100,104 -E09000028,Southwark,124,117,126,97,86,130,103,103,111,131,120,119 -E09000030,Tower Hamlets,105,90,100,92,80,78,91,84,85,94,99,94 -E09000032,Wandsworth,177,124,153,123,100,127,117,103,130,135,111,141 -E09000033,Westminster,119,100,123,79,88,105,96,79,97,97,86,108 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E13000002,Outer London,3844,2982,3253,2964,2509,2702,2514,2367,2704,2765,2761,2997 -E09000002,Barking and Dagenham,177,131,109,110,95,95,78,80,103,106,123,139 -E09000003,Barnet,275,204,227,228,205,201,170,166,202,184,203,209 -E09000004,Bexley,213,172,218,167,137,172,171,142,181,171,180,173 -E09000005,Brent,190,142,172,157,138,123,124,119,132,149,146,163 -E09000006,Bromley,283,217,266,229,195,196,198,186,179,192,211,224 -E09000008,Croydon,306,218,219,225,188,197,175,171,253,199,199,228 -E09000009,Ealing,210,191,189,147,148,150,162,131,132,140,150,176 -E09000010,Enfield,267,175,197,189,133,181,161,154,157,167,193,192 -E09000011,Greenwich,160,130,157,135,110,122,145,130,141,112,130,146 -E09000015,Harrow,158,122,160,146,97,140,111,107,131,126,132,122 -E09000016,Havering,263,207,211,195,182,205,159,149,172,190,183,165 -E09000017,Hillingdon,205,178,194,205,148,131,141,143,157,168,164,161 -E09000018,Hounslow,165,119,122,133,116,122,98,105,108,133,101,142 -E09000021,Kingston upon Thames,118,101,101,85,87,99,87,76,65,111,97,92 -E09000024,Merton,153,111,107,107,94,88,94,84,111,115,83,104 -E09000026,Redbridge,202,168,165,181,140,145,134,147,162,152,145,169 -E09000027,Richmond upon Thames,143,124,123,98,93,108,92,94,86,130,103,116 -E09000029,Sutton,162,145,147,110,109,112,104,86,105,99,109,132 -E09000031,Waltham Forest,194,127,169,117,94,115,110,97,127,121,109,144 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000008,SOUTH EAST,9606,7160,7140,7030,5978,6464,6117,5483,6494,6359,6319,6899 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000036,Bracknell Forest,85,57,62,75,61,78,54,54,56,49,53,57 -E06000043,Brighton and Hove,239,194,189,184,167,155,178,157,150,168,177,172 -E06000046,Isle of Wight,179,161,156,143,137,137,128,127,155,145,153,138 -E06000035,Medway,279,209,187,193,181,165,181,169,174,175,200,200 -E06000042,Milton Keynes,193,166,166,159,116,121,132,114,132,142,160,150 -E06000044,Portsmouth,195,167,141,169,122,142,130,127,140,126,131,142 -E06000038,Reading,137,97,85,87,97,73,67,84,85,83,83,102 -E06000039,Slough,99,67,77,73,55,57,59,59,60,72,70,71 -E06000045,Southampton,203,154,178,142,131,153,165,115,148,156,136,145 -E06000037,West Berkshire,149,106,95,96,92,100,107,67,107,80,86,104 -E06000040,Windsor and Maidenhead,134,103,104,110,100,106,101,79,103,99,92,90 -E06000041,Wokingham,131,100,97,96,102,89,100,86,92,79,113,104 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000002,Buckinghamshire,529,339,386,358,325,359,307,275,340,348,336,363 -E07000004,Aylesbury Vale,186,113,126,134,129,116,92,79,107,119,121,136 -E07000005,Chiltern,100,55,85,70,55,85,65,51,72,70,59,58 -E07000006,South Bucks,73,65,59,57,56,58,50,47,49,54,57,57 -E07000007,Wycombe,170,106,116,97,85,100,100,98,112,105,99,112 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000011,East Sussex,802,586,562,569,510,502,505,428,526,572,514,557 -E07000061,Eastbourne,158,102,125,110,93,104,105,77,84,121,97,115 -E07000062,Hastings,122,103,91,99,74,71,70,68,67,100,77,84 -E07000063,Lewes,142,104,83,96,101,76,77,59,98,104,73,91 -E07000064,Rother,176,130,121,123,127,111,117,92,121,106,112,115 -E07000065,Wealden,204,147,142,141,115,140,136,132,156,141,155,152 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000014,Hampshire,1414,1129,1100,1100,911,1026,1008,836,1008,941,1007,1138 -E07000084,Basingstoke and Deane,141,116,132,135,96,114,114,104,118,100,103,119 -E07000085,East Hampshire,114,105,108,103,70,83,94,94,78,94,92,96 -E07000086,Eastleigh,121,107,92,86,74,92,72,63,83,78,74,100 -E07000087,Fareham,121,100,92,107,95,87,90,69,82,81,93,109 -E07000088,Gosport,97,58,63,76,51,79,71,55,79,64,65,71 -E07000089,Hart,70,65,56,56,53,51,50,34,68,57,52,54 -E07000090,Havant,168,110,116,113,104,100,112,85,98,90,95,129 -E07000091,New Forest,247,207,192,173,170,192,186,134,170,165,185,196 -E07000092,Rushmoor,76,57,57,58,42,60,56,38,75,50,55,53 -E07000093,Test Valley,140,104,91,83,81,78,73,81,81,80,95,115 -E07000094,Winchester,119,100,101,110,75,90,90,79,76,82,98,96 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000016,Kent,1822,1279,1315,1306,1122,1175,1116,1046,1190,1131,1074,1235 -E07000105,Ashford,134,104,98,81,83,97,77,64,79,93,88,77 -E07000106,Canterbury,188,170,154,139,113,121,138,115,129,122,102,137 -E07000107,Dartford,135,81,67,81,68,56,80,64,76,69,67,91 -E07000108,Dover,166,96,135,103,111,119,89,111,109,98,94,104 -E07000109,Gravesham,92,87,77,68,62,65,70,65,63,73,69,67 -E07000110,Maidstone,185,118,132,112,111,128,116,109,107,104,106,113 -E07000111,Sevenoaks,139,86,115,96,84,80,64,72,80,84,99,103 -E07000112,Shepway,171,122,116,122,103,86,100,87,108,103,88,124 -E07000113,Swale,143,107,112,129,109,126,91,99,110,101,90,106 -E07000114,Thanet,215,139,161,172,123,133,129,115,147,111,133,143 -E07000115,Tonbridge and Malling,123,73,77,99,76,83,77,61,96,88,79,88 -E07000116,Tunbridge Wells,131,96,71,104,79,81,85,84,86,85,59,82 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000025,Oxfordshire,629,467,475,468,387,436,348,356,454,429,425,425 -E07000177,Cherwell,138,112,106,112,91,91,72,69,115,94,89,102 -E07000178,Oxford,109,93,70,75,70,70,70,61,84,77,68,55 -E07000179,South Oxfordshire,146,111,102,101,95,99,70,76,102,92,110,87 -E07000180,Vale of White Horse,133,86,99,85,62,94,71,79,75,71,75,79 -E07000181,West Oxfordshire,103,65,98,95,69,82,65,71,78,95,83,102 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000030,Surrey,1262,934,920,915,704,875,761,676,833,834,781,922 -E07000207,Elmbridge,140,96,101,95,67,100,80,75,76,85,72,110 -E07000208,Epsom and Ewell,83,56,56,36,32,57,57,43,45,45,49,58 -E07000209,Guildford,139,103,93,88,68,97,91,65,81,81,83,100 -E07000210,Mole Valley,95,77,95,77,69,82,62,64,68,54,68,72 -E07000211,Reigate and Banstead,175,138,128,137,98,127,87,83,118,117,120,127 -E07000212,Runnymede,92,66,66,76,46,61,65,46,59,59,39,75 -E07000213,Spelthorne,113,81,84,72,60,76,76,58,89,77,74,81 -E07000214,Surrey Heath,80,68,57,75,73,57,59,45,59,78,51,64 -E07000215,Tandridge,94,62,64,71,62,68,42,59,69,72,59,68 -E07000216,Waverley,162,120,114,119,71,92,88,87,109,93,103,104 -E07000217,Woking,89,67,62,69,58,58,54,51,60,73,63,63 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000032,West Sussex,1125,845,845,787,658,715,670,628,741,730,728,784 -E07000223,Adur,90,72,70,55,51,51,66,55,59,68,55,63 -E07000224,Arun,258,207,180,188,151,192,166,140,175,169,170,179 -E07000225,Chichester,186,132,151,123,122,101,110,102,113,124,111,139 -E07000226,Crawley,88,61,58,63,43,68,43,53,81,64,63,52 -E07000227,Horsham,171,126,125,112,93,106,85,95,92,106,103,124 -E07000228,Mid Sussex,148,118,135,125,105,94,106,87,110,113,112,112 -E07000229,Worthing,184,129,126,121,93,103,94,96,111,86,114,115 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000009,SOUTH WEST,6427,5124,5304,4694,4186,4441,4383,3839,4527,4653,4326,4763 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000022,Bath and North East Somerset,192,150,156,126,110,127,132,106,151,141,130,181 -E06000028,Bournemouth,244,179,191,173,148,153,159,136,161,185,152,163 -E06000023,"Bristol, City of",374,295,299,275,245,275,245,216,289,267,259,277 -E06000052,Cornwall,628,611,642,490,460,499,478,404,526,482,456,515 -E06000053,Isles of Scilly,2,0,2,3,1,3,1,3,0,1,3,0 -E06000024,North Somerset,258,237,248,199,168,202,184,156,182,189,188,217 -E06000026,Plymouth,277,234,227,188,153,192,204,173,216,201,168,206 -E06000029,Poole,242,168,180,147,107,129,112,127,140,142,147,128 -E06000025,South Gloucestershire,252,211,192,182,185,155,171,154,168,199,162,189 -E06000030,Swindon,213,151,146,122,120,127,155,104,183,113,142,166 -E06000027,Torbay,213,139,196,166,133,133,124,116,128,152,146,162 -E06000054,Wiltshire,549,373,469,414,363,357,345,315,392,379,378,398 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000008,Devon,982,816,791,748,635,749,674,659,670,716,669,729 -E07000040,East Devon,222,176,163,159,128,154,155,155,147,151,139,143 -E07000041,Exeter,130,91,98,91,81,85,71,66,85,85,91,93 -E07000042,Mid Devon,79,72,88,63,56,80,64,49,65,53,77,72 -E07000043,North Devon,124,104,110,111,83,105,80,90,88,87,74,89 -E07000044,South Hams,103,94,80,84,65,85,69,76,56,98,69,87 -E07000045,Teignbridge,180,150,118,118,121,124,118,114,114,111,121,123 -E07000046,Torridge,69,70,71,72,56,71,57,69,69,76,60,72 -E07000047,West Devon,75,59,63,50,45,45,60,40,46,55,38,50 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000009,Dorset,601,445,486,459,402,426,424,328,396,437,399,416 -E07000048,Christchurch,82,62,61,60,58,54,61,63,60,44,53,58 -E07000049,East Dorset,145,105,97,108,82,82,91,73,82,101,83,101 -E07000050,North Dorset,78,60,68,67,76,66,50,42,56,63,53,56 -E07000051,Purbeck,60,45,54,44,54,50,39,21,44,47,37,32 -E07000052,West Dorset,152,107,131,124,94,114,118,78,100,117,110,115 -E07000053,Weymouth and Portland,84,66,75,56,38,60,65,51,54,65,63,54 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000013,Gloucestershire,687,568,544,501,488,484,467,408,457,545,460,476 -E07000078,Cheltenham,133,102,108,96,98,76,90,95,82,108,82,92 -E07000079,Cotswold,113,92,76,68,64,70,64,53,71,90,67,72 -E07000080,Forest of Dean,89,77,78,79,73,92,76,69,68,79,56,64 -E07000081,Gloucester,114,97,99,97,91,99,103,67,87,86,96,90 -E07000082,Stroud,153,123,106,96,99,80,76,78,88,108,100,94 -E07000083,Tewkesbury,85,77,77,65,63,67,58,46,61,74,59,64 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000027,Somerset,713,547,535,501,468,430,508,434,468,504,467,540 -E07000187,Mendip,152,111,112,97,77,80,116,86,86,118,105,81 -E07000188,Sedgemoor,138,112,106,92,106,93,94,100,92,90,90,124 -E07000189,South Somerset,220,152,157,148,132,118,148,113,145,152,139,178 -E07000190,Taunton Deane,151,119,117,123,112,93,103,100,107,98,97,122 -E07000191,West Somerset,52,53,43,41,41,46,47,35,38,46,36,35 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W92000004,WALES,3745,2907,3011,2791,2537,2703,2484,2273,2615,2667,2548,2917 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W06000001,Isle of Anglesey,101,80,76,64,64,74,57,50,84,64,70,78 -W06000002,Gwynedd,169,152,125,116,89,108,112,98,91,139,102,142 -W06000003,Conwy,159,145,130,131,129,122,117,106,113,107,126,140 -W06000004,Denbighshire,147,96,86,105,93,94,85,71,85,93,91,100 -W06000005,Flintshire,168,140,129,118,115,133,124,104,124,118,114,129 -W06000006,Wrexham,190,119,154,123,121,122,101,75,94,98,123,113 -W06000023,Powys,214,124,125,133,132,135,112,107,131,125,109,133 -W06000008,Ceredigion,92,63,79,59,70,68,53,46,78,59,68,74 -W06000009,Pembrokeshire,158,154,144,137,104,128,95,102,122,119,131,118 -W06000010,Carmarthenshire,232,207,204,194,193,177,153,154,188,189,154,192 -W06000011,Swansea,287,231,246,206,195,214,195,169,208,215,185,246 -W06000012,Neath Port Talbot,181,140,143,153,129,126,127,118,138,122,117,148 -W06000013,Bridgend,186,146,120,123,112,130,143,121,142,108,92,137 -W06000014,Vale of Glamorgan,138,122,121,85,102,110,113,98,94,117,88,122 -W06000015,Cardiff,318,222,255,255,209,239,192,182,216,254,192,263 -W06000016,Rhondda Cynon Taff,277,215,236,238,176,184,203,179,211,203,218,231 -W06000024,Merthyr Tydfil,67,54,58,51,58,48,49,48,44,55,44,41 -W06000018,Caerphilly,210,155,173,153,142,147,132,129,125,142,158,171 -W06000019,Blaenau Gwent,69,63,75,67,71,65,59,63,53,61,74,64 -W06000020,Torfaen,125,89,87,78,60,81,73,81,68,74,77,69 -W06000021,Monmouthshire,106,76,93,89,70,86,73,62,90,80,86,73 -W06000022,Newport,151,114,152,113,103,112,116,110,116,125,129,133 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -J99000001,Non-residents of England & Wales,112,87,75,101,93,90,112,103,82,107,89,97 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Footnotes:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"1 This may include records where the place of usual residence is either missing or not yet fully coded. For this reason counts for ''England and Wales'' and ''non-residents of England and Wales'' may not sum to ''England, Wales and Elsewhere''.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2 The deaths of those whose usual residence is outside England and Wales are included in counts for 'England Wales and Elsewhere' but excluded from any sub-division of England and Wales.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Source: Office for National Statistics,NA,Released: 26 July 2016,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA diff --git a/working_files/Monthly/Monthly2015Mortality-Metadata.csv b/working_files/Monthly/Monthly2015Mortality-Metadata.csv deleted file mode 100644 index 972898b..0000000 --- a/working_files/Monthly/Monthly2015Mortality-Metadata.csv +++ /dev/null @@ -1,46 +0,0 @@ -Contents -Metadata -NA -Introduction -NA -"Monthly death figures provide counts of the number of deaths registered in a calendar month, by area of usual residence in England and Wales for 2015." -NA -"These figures are presented by regions (within England), unitary authorities, counties, districts & London boroughs." -NA -Notes -NA -Deaths occurring in England and Wales are registered on the General Register Office's Registration Online (RON) system. -Daily extracts of death registration records from RON are processed on our database systems. -NA -The number of deaths registered in 2015 by month in England and Wales have now been finalised. There are only small changes from the provisional figures released during the year. -"Due to the timeliness of this release, death registrations may be included in this publication before they are fully coded with area information. The order in which area of usual residence information is coded can affect the additivity within this publication. When provisional figures are collated:" -- A very small number of death registrations can sometimes have region of usual residence coded but no local area coding. Consequently counts for local areas may not always sum to the regional count. -"- A very small number of death registrations can sometimes have some area information coded but may still require the country of usual residence code. If necessary, country counts are derived from regional counts to ensure they are representative." -NA -Weekly deaths counts cannot be summed to match the counts for monthly deaths as some weeks may span more than one month. -NA -Bank Holidays could affect the number of registrations made within those months. -NA -Symbols -NA -In ONS mortality outputs published symbols used are: -0 denotes nil -For further information please refer to -https://gss.civilservice.gov.uk/statistics/a-z-of-policies-and-guidance/guidance-use-data-markers/ -NA -The ONS policy on protecting confidentiality in birth and death statistics is available on the ONS website: -www.ons.gov.uk/ons/guide-method/best-practice/disclosure-control-policy-for-birth-and-death-statistics/index.html -NA -Further information and enquiries -NA -Special extracts and tabulations of mortality data for England and Wales are available to order for a charge (subject to legal -"frameworks, disclosure control, resources and the ONS charging policy, where appropriate). Enquiries should be made to" -Vital Statistics Outputs Branch (vsob@ons.gsi.gov.uk or telephone: +44 (0)1329 444110). -User requested data will be published onto our website. -NA -"Access to microdata and disclosive data, that is, data which have the potential to identify an individual record, requires the approval of the ONS Microdata Release Procedure (MRP) before the data can be provided." -NA -Feedback -"We welcome feedback from users, please contact Vital Statistics Outputs Branch" -email: vsob@ons.gsi.gov.uk -telephone: +44 (0)1329 444110 diff --git a/working_files/Monthly/Monthly2015Mortality-Related publications.csv b/working_files/Monthly/Monthly2015Mortality-Related publications.csv deleted file mode 100644 index 48d49cd..0000000 --- a/working_files/Monthly/Monthly2015Mortality-Related publications.csv +++ /dev/null @@ -1,36 +0,0 @@ -Contents -Related publications -NA -User guide to mortality statistics -Supporting information for these tables can be found in the User guide to mortality statistics -NA -Quality and Methodology Information -"A Quality and Methodology Information document contains important information on: -• the strengths and limitations of the data -• the quality of the output: including the accuracy of the data, how it compares with related data -• uses and users -• how the output was created -" -NA -Further mortality statistics based on death registrations are available on the ONS website: -NA -"Death summary tables, England and Wales" -The summary tables provide key death registration statistics for the reference year. -NA -Deaths registered in England and Wales (Series DR) -Series DR (Mortality Statistics: Deaths Registered in England and Wales) provides detailed death registration statistics for the reference year. This includes numbers of deaths by detailed underlying cause by age-sex group defined by the different chapters of the Tenth Revision of the International Classification of Diseases and Related Health Problems (ICD-10). -NA -"Vital statistics: Population and health reference tables, United Kingdom and constituent countries" -"These tables provide annual data for a selection of key statistics under the following themes: population, demography and health. Figures for the latest years may be provisional, these will be updated to final figures when data is available." -NA -Mortality Statistics: Deaths registered in England and Wales by area of usual residence -Presents data on death registrations in the United Kingdom by area of usual residence. The release contains a summary table providing key mortality measures (numbers and rates including age standardised mortality rates) for the United Kingdom and its constituent countries and a table providing numbers of deaths in England and Wales by age and sex. -NA -"Weekly provisional figures on deaths registered, England and Wales" -Weekly death figures provide provisional counts of the number of deaths registered in England and Wales in the latest eight weeks for which data are available. -NA -20th Century Mortality Files -"The 20th Century mortality files are a record of mortality in England & Wales from 1901 to 2000. The files consist of an aggregated database of deaths by age group, sex, year and underlying cause, and include populations for England & Wales." -NA -21st Century Mortality Files -"The 21st Century Mortality Files are a record of mortality in England and Wales from 2001 onwards. They are designed to complement the Twentieth Century Mortality files. The files consist of an aggregated database of deaths by age group, sex, year and underlying cause, and include populations for England and Wales." diff --git a/working_files/Monthly/Monthly2015Mortality-Terms and conditions.csv b/working_files/Monthly/Monthly2015Mortality-Terms and conditions.csv deleted file mode 100644 index 6e92f28..0000000 --- a/working_files/Monthly/Monthly2015Mortality-Terms and conditions.csv +++ /dev/null @@ -1,34 +0,0 @@ -Contents -Terms and conditions -NA -A National Statistics publication -NA -National Statistics are produced to high professional standards set out in the Code of Practice for Official Statistics. They are produced free from any political interference. -NA -"The UK Statistics Authority has designated these statistics as National Statistics, in accordance with the Statistics and Registration Service Act 2007 and signifying compliance with the Code of Practice for Official Statistics." -Designation can be broadly interpreted to mean that the statistics: -• meet identified user needs -• are well explained and readily accessible -• are produced according to sound methods -• are managed impartially and objectively in the public interest -NA -Once statistics have been designated as National Statistics it is a statutory requirement that the Code of Practice shall continue to be observed. -NA -About us -"We are the executive office of the UK Statistics Authority, a non-ministerial department which reports directly to Parliament and the UK government’s single largest statistical producer. We compile information about the UK’s society and economy, and provide the evidence-base for policy and decision-making, the allocation of resources, and public accountability." -NA -NA -Copyright and reproduction -NA -© Crown copyright 2016 -"You may re-use this publication (not including logos) free of charge in any format or medium, under the terms of the Open Government Licence." -Users should include a source accreditation to ONS - Source: Office for National Statistics licensed under the Open Government Licence. -NA -To view this licence visit: -www.nationalarchives.gov.uk/doc/open-government-licence -"or write to the Information Policy Team, The National Archives, Kew, Richmond, Surrey, TW9 4DU;" -or email: psi@nationalarchives.gsi.gov.uk -NA -Where we have identified any third party copyright information you will need to obtain permission from the copyright holders concerned. -NA -This publication is also available on our website at www.ons.gov.uk diff --git a/working_files/Monthly/Monthly2015Mortality.xls b/working_files/Monthly/Monthly2015Mortality.xls deleted file mode 100644 index bb10c3a..0000000 Binary files a/working_files/Monthly/Monthly2015Mortality.xls and /dev/null differ diff --git a/working_files/Monthly/Monthly2016Mortality-Contents.csv b/working_files/Monthly/Monthly2016Mortality-Contents.csv deleted file mode 100644 index 4027757..0000000 --- a/working_files/Monthly/Monthly2016Mortality-Contents.csv +++ /dev/null @@ -1,10 +0,0 @@ -Contents,Monthly figures on deaths registered in England and Wales -NA,NA -NA,NA -Metadata,Information on monthly deaths -NA,NA -Terms and conditions,Terms and conditions -NA,NA -Figures for 2016,"Deaths (numbers): by region, 2016 registrations, England and Wales" -NA,NA -Related publications,Provides links to further mortality statistics based on death registrations diff --git a/working_files/Monthly/Monthly2016Mortality-Figures for 2016.csv b/working_files/Monthly/Monthly2016Mortality-Figures for 2016.csv deleted file mode 100644 index 9e4b6be..0000000 --- a/working_files/Monthly/Monthly2016Mortality-Figures for 2016.csv +++ /dev/null @@ -1,466 +0,0 @@ -Contents,...2,...3,...4,...5,...6,...7,...8,...9,...10,...11,...12,...13,...14 -"Monthly figures on deaths registered by area of usual residence, 2016",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,England and Wales -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Area of usual residence,NA,Jan-16,Feb-16,Mar-16,Apr-16,May-16,Jun-16,Jul-16,Aug-16,Sep-16,Oct-16,Nov-16,Dec-16 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"K04000001, J99000001","ENGLAND, WALES AND ELSEWHERE 1",47457,46021,48665,46856,41384,42012,38983,40786,40367,40448,46514,45555 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -K04000001,ENGLAND AND WALES,47351,45922,48562,46755,41291,41921,38882,40676,40250,40360,46418,45469 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E92000001,ENGLAND,44387,43033,45308,43755,38716,39378,36484,38006,37742,37835,43523,42624 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000001,NORTH EAST,2555,2492,2515,2460,2165,2255,2109,2119,2121,2123,2415,2507 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000047,County Durham,569,489,525,494,436,438,429,437,421,421,492,521 -E06000005,Darlington,105,113,85,92,87,92,74,78,91,85,88,86 -E06000001,Hartlepool,79,97,90,92,82,87,75,74,74,79,68,93 -E06000002,Middlesbrough,116,143,138,131,139,95,107,107,102,121,125,142 -E06000057,Northumberland,338,352,337,331,273,298,264,275,273,280,296,336 -E06000003,Redcar and Cleveland,129,132,147,141,137,137,115,108,115,127,135,124 -E06000004,Stockton-on-Tees,159,176,171,191,146,169,160,128,161,143,159,161 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000007,Tyne and Wear (Met County),1060,990,1022,988,865,939,885,912,884,867,1052,1044 -E08000037,Gateshead,195,186,188,207,133,188,184,175,173,178,204,219 -E08000021,Newcastle upon Tyne,237,215,232,204,196,202,205,205,186,178,223,221 -E08000022,North Tyneside,207,177,188,180,180,175,145,166,165,165,219,163 -E08000023,South Tyneside,137,150,151,156,134,126,126,132,149,143,154,147 -E08000024,Sunderland,284,262,263,241,222,248,225,234,211,203,252,294 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000002,NORTH WEST,6415,6134,6599,6254,5547,5628,5237,5675,5526,5644,6364,6292 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000008,Blackburn with Darwen,103,128,114,116,98,96,89,124,101,116,135,129 -E06000009,Blackpool,161,175,179,147,143,156,148,143,145,150,155,160 -E06000049,Cheshire East,397,339,371,341,311,321,270,301,302,307,355,346 -E06000050,Cheshire West and Chester,329,316,313,346,290,280,268,260,270,253,274,321 -E06000006,Halton,113,98,108,117,90,99,92,107,101,93,123,111 -E06000007,Warrington,162,179,175,159,151,161,146,130,146,162,178,167 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000006,Cumbria,451,496,497,524,431,433,394,452,461,406,530,560 -E07000026,Allerdale,93,95,112,92,95,84,71,99,75,77,108,120 -E07000027,Barrow-in-Furness,65,69,56,75,68,57,55,56,77,69,67,81 -E07000028,Carlisle,104,98,101,114,72,104,85,91,104,92,110,111 -E07000029,Copeland,38,68,69,69,74,63,58,73,71,41,66,69 -E07000030,Eden,48,55,48,51,32,31,50,37,57,43,52,50 -E07000031,South Lakeland,103,111,111,123,90,94,75,96,77,84,127,129 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000001,Greater Manchester (Met County),2170,2111,2271,2125,1923,1947,1830,2034,1949,1904,2108,2066 -E08000001,Bolton,220,233,228,223,211,204,181,233,210,215,210,227 -E08000002,Bury,155,165,164,175,149,142,139,165,150,151,139,123 -E08000003,Manchester,331,308,349,324,299,290,272,289,264,272,298,285 -E08000004,Oldham,188,190,185,179,160,152,152,202,156,163,214,186 -E08000005,Rochdale,189,180,190,175,153,167,158,173,166,153,174,171 -E08000006,Salford,186,185,209,181,173,186,176,204,162,163,194,175 -E08000007,Stockport,229,243,233,225,194,215,231,206,252,220,223,225 -E08000008,Tameside,180,184,223,195,175,166,166,160,169,185,202,197 -E08000009,Trafford,193,149,186,154,166,189,139,153,167,144,164,179 -E08000010,Wigan,299,274,304,294,243,236,216,249,253,238,290,298 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000017,Lancashire,1165,1012,1127,1033,939,978,921,960,936,1034,1112,1116 -E07000117,Burnley,90,77,75,82,62,54,58,68,58,73,80,88 -E07000118,Chorley,107,86,102,87,78,84,87,83,74,94,102,103 -E07000119,Fylde,95,94,98,89,82,80,85,83,87,77,96,89 -E07000120,Hyndburn,85,71,74,74,67,73,66,65,66,78,63,63 -E07000121,Lancaster,157,118,142,111,114,119,114,121,120,124,147,143 -E07000122,Pendle,57,70,71,78,58,71,59,57,68,96,69,81 -E07000123,Preston,97,98,100,127,93,105,91,100,86,90,88,102 -E07000124,Ribble Valley,58,43,63,40,46,55,48,45,47,48,55,63 -E07000125,Rossendale,75,51,55,48,32,37,51,54,48,48,50,72 -E07000126,South Ribble,88,88,104,67,83,70,77,79,80,87,100,98 -E07000127,West Lancashire,100,96,98,110,113,107,75,87,94,103,129,98 -E07000128,Wyre,156,120,145,120,111,123,110,118,108,116,133,116 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000002,Merseyside (Met County),1364,1280,1444,1346,1171,1157,1079,1164,1115,1219,1394,1316 -E08000011,Knowsley,127,134,162,140,131,104,120,124,134,124,156,145 -E08000012,Liverpool,392,375,432,386,374,368,317,353,309,366,403,402 -E08000014,Sefton,310,284,304,312,245,264,247,240,231,273,300,276 -E08000013,St. Helens,163,161,188,179,146,152,127,160,168,166,185,172 -E08000015,Wirral,372,326,358,329,275,269,268,287,273,290,350,321 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000003,YORKSHIRE AND THE HUMBER,4695,4595,4764,4493,4060,4255,3828,3945,3965,3884,4508,4521 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000011,East Riding of Yorkshire,344,360,354,335,292,289,272,280,277,316,332,380 -E06000010,"Kingston upon Hull, City of",255,230,217,216,183,224,187,172,183,173,234,213 -E06000012,North East Lincolnshire,145,153,180,156,118,138,137,135,143,149,160,147 -E06000013,North Lincolnshire,161,149,179,141,135,171,138,115,143,133,152,149 -E06000014,York,161,184,159,173,129,134,129,123,152,140,170,156 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000023,North Yorkshire,567,572,576,587,544,515,481,498,494,487,536,581 -E07000163,Craven,58,69,55,71,52,53,48,55,47,53,57,60 -E07000164,Hambleton,76,92,90,96,72,76,78,64,52,75,67,83 -E07000165,Harrogate,152,138,141,131,138,134,105,115,139,132,145,155 -E07000166,Richmondshire,37,44,36,44,31,31,42,48,37,33,35,43 -E07000167,Ryedale,57,37,68,59,57,46,48,45,46,38,40,52 -E07000168,Scarborough,112,119,107,122,122,109,103,119,114,98,113,116 -E07000169,Selby,75,73,79,64,72,66,57,52,59,58,79,72 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000003,South Yorkshire (Met County),1156,1161,1234,1118,1016,1145,1023,1041,1041,999,1095,1148 -E08000016,Barnsley,210,222,242,180,176,185,172,162,178,170,203,217 -E08000017,Doncaster,259,305,325,280,247,290,222,269,229,259,239,281 -E08000018,Rotherham,254,214,233,256,212,240,224,231,238,199,214,229 -E08000019,Sheffield,433,420,434,402,381,430,405,379,396,371,439,421 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000006,West Yorkshire (Met County),1906,1786,1865,1767,1643,1639,1461,1581,1532,1487,1829,1747 -E08000032,Bradford,420,417,400,384,396,359,352,355,322,342,436,388 -E08000033,Calderdale,187,177,173,155,144,190,155,163,132,149,174,153 -E08000034,Kirklees,364,330,380,326,299,304,280,324,285,264,335,336 -E08000035,Leeds,628,572,601,579,544,531,445,496,514,499,607,576 -E08000036,Wakefield,307,290,311,323,260,255,229,243,279,233,277,294 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000004,EAST MIDLANDS,3855,3836,4042,3822,3470,3642,3321,3382,3385,3411,3919,3942 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000015,Derby,188,192,213,208,182,198,187,169,174,161,204,205 -E06000016,Leicester,238,216,235,214,189,205,187,189,200,190,243,226 -E06000018,Nottingham,199,210,225,184,186,210,192,182,171,188,199,197 -E06000017,Rutland,33,32,21,19,33,25,32,32,23,25,36,28 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000007,Derbyshire,731,703,725,711,641,650,586,594,654,626,727,775 -E07000032,Amber Valley,113,116,110,108,105,96,99,96,93,85,115,114 -E07000033,Bolsover,66,66,77,78,64,79,62,59,71,55,80,70 -E07000034,Chesterfield,94,102,103,115,77,91,85,100,86,92,98,124 -E07000035,Derbyshire Dales,69,81,75,76,86,53,46,55,65,59,76,73 -E07000036,Erewash,109,96,93,104,104,104,69,80,100,112,84,119 -E07000037,High Peak,76,72,97,74,60,74,68,55,85,76,85,76 -E07000038,North East Derbyshire,112,90,96,87,81,87,91,77,97,78,117,122 -E07000039,South Derbyshire,92,80,74,69,64,66,66,72,57,69,72,77 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000018,Leicestershire,542,496,561,565,497,528,457,485,476,468,526,511 -E07000129,Blaby,64,76,77,84,70,96,68,69,76,69,68,70 -E07000130,Charnwood,138,113,127,128,117,126,117,133,131,127,139,133 -E07000131,Harborough,67,65,75,74,61,66,62,55,62,52,73,71 -E07000132,Hinckley and Bosworth,88,88,110,89,86,70,62,72,70,73,89,67 -E07000133,Melton,43,34,40,46,41,41,43,40,31,32,33,46 -E07000134,North West Leicestershire,92,70,77,88,79,78,57,69,68,67,78,73 -E07000135,Oadby and Wigston,50,50,55,56,43,51,48,47,38,48,46,51 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000019,Lincolnshire,661,739,731,685,643,640,598,620,602,671,716,772 -E07000136,Boston,61,68,67,65,59,60,69,54,65,71,60,57 -E07000137,East Lindsey,158,160,172,186,157,160,152,152,148,167,154,187 -E07000138,Lincoln,67,76,70,72,69,76,66,68,52,69,84,102 -E07000139,North Kesteven,93,107,91,91,83,94,79,75,91,78,106,91 -E07000140,South Holland,84,100,103,89,77,75,66,66,77,101,106,89 -E07000141,South Kesteven,127,131,139,106,113,102,90,120,111,113,128,156 -E07000142,West Lindsey,71,97,89,76,85,73,76,85,58,72,78,90 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000021,Northamptonshire,549,544,576,571,464,494,465,488,467,485,568,538 -E07000150,Corby,59,53,47,52,40,45,33,47,45,50,57,42 -E07000151,Daventry,60,73,67,77,49,58,54,52,46,50,57,46 -E07000152,East Northamptonshire,69,71,82,71,56,68,63,70,54,70,88,73 -E07000153,Kettering,81,75,79,69,72,68,74,65,64,71,72,83 -E07000154,Northampton,147,139,156,176,138,145,128,139,131,129,160,166 -E07000155,South Northamptonshire,70,64,65,61,51,61,55,54,57,52,73,67 -E07000156,Wellingborough,63,69,80,65,58,49,58,61,70,63,61,61 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000024,Nottinghamshire,714,704,755,665,635,692,617,623,618,597,700,690 -E07000170,Ashfield,113,113,120,108,91,95,104,90,99,90,102,102 -E07000171,Bassetlaw,105,115,134,90,98,94,93,83,92,90,104,104 -E07000172,Broxtowe,113,79,110,84,81,104,65,86,87,73,99,99 -E07000173,Gedling,100,98,92,87,83,99,77,94,77,81,101,92 -E07000174,Mansfield,77,100,107,99,95,102,93,94,100,88,99,97 -E07000175,Newark and Sherwood,105,97,102,123,99,114,92,105,88,98,105,97 -E07000176,Rushcliffe,101,102,90,74,88,84,93,71,75,77,90,99 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000005,WEST MIDLANDS,5025,4874,4762,4838,4188,4362,3933,4314,4095,4038,4746,4639 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000019,"Herefordshire, County of",230,200,179,190,160,175,152,165,157,151,179,166 -E06000051,Shropshire,296,293,297,335,283,263,279,253,259,287,309,328 -E06000021,Stoke-on-Trent,220,233,225,232,198,195,208,215,189,182,199,208 -E06000020,Telford and Wrekin,126,129,137,142,96,108,113,116,114,124,123,126 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000028,Staffordshire,826,778,711,690,632,711,648,697,690,622,765,749 -E07000192,Cannock Chase,87,92,85,88,79,61,54,77,81,66,64,61 -E07000193,East Staffordshire,110,98,91,86,72,81,94,98,85,79,102,91 -E07000194,Lichfield,97,99,86,74,95,84,63,96,81,79,97,105 -E07000195,Newcastle-under-Lyme,122,132,95,113,86,136,116,92,102,82,117,116 -E07000196,South Staffordshire,113,98,71,98,92,77,78,102,98,82,127,103 -E07000197,Stafford,118,97,122,101,88,115,111,108,104,82,98,124 -E07000198,Staffordshire Moorlands,109,105,106,81,73,101,76,83,90,98,105,99 -E07000199,Tamworth,70,57,55,49,47,56,56,41,49,54,55,50 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000031,Warwickshire,484,516,490,489,432,432,369,428,428,454,481,438 -E07000218,North Warwickshire,68,77,65,67,68,50,54,64,58,53,55,63 -E07000219,Nuneaton and Bedworth,112,122,99,114,81,96,68,87,94,101,106,96 -E07000220,Rugby,90,83,91,74,79,91,67,76,89,75,92,73 -E07000221,Stratford-on-Avon,115,126,120,130,111,94,98,114,105,112,119,114 -E07000222,Warwick,99,108,115,104,93,101,82,87,82,113,109,92 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000005,West Midlands (Met County),2342,2216,2176,2217,1927,1995,1721,1958,1834,1817,2137,2111 -E08000025,Birmingham,787,761,731,782,676,689,593,685,687,631,729,675 -E08000026,Coventry,262,252,240,234,239,208,192,223,204,200,230,228 -E08000027,Dudley,322,262,254,294,245,242,237,237,224,242,250,310 -E08000028,Sandwell,283,260,268,259,215,267,188,236,203,208,278,248 -E08000029,Solihull,181,189,207,182,157,164,142,171,135,156,183,167 -E08000030,Walsall,280,249,255,252,184,217,172,202,183,213,227,232 -E08000031,Wolverhampton,227,243,221,214,211,208,197,204,198,167,240,251 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000034,Worcestershire,501,509,547,543,460,483,443,482,424,401,553,513 -E07000234,Bromsgrove,92,112,101,96,76,78,77,91,79,58,105,96 -E07000235,Malvern Hills,78,86,90,95,70,86,84,85,67,71,97,94 -E07000236,Redditch,64,46,76,71,54,59,44,63,46,46,82,51 -E07000237,Worcester,74,70,73,65,77,71,62,72,48,54,65,73 -E07000238,Wychavon,93,109,103,125,97,95,102,92,94,86,95,95 -E07000239,Wyre Forest,100,86,104,91,86,94,74,79,90,86,109,104 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000006,EAST,5133,4806,5098,4980,4607,4509,4179,4461,4298,4256,5060,4747 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000055,Bedford,143,138,116,128,96,128,88,114,121,94,123,143 -E06000056,Central Bedfordshire,174,167,175,192,153,194,133,164,155,152,203,206 -E06000032,Luton,128,144,132,125,104,109,119,121,109,115,155,153 -E06000031,Peterborough,144,127,131,124,118,133,106,146,153,102,158,149 -E06000033,Southend-on-Sea,188,162,176,146,147,155,164,160,141,138,167,183 -E06000034,Thurrock,116,117,99,110,96,95,97,80,99,114,119,108 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000003,Cambridgeshire,474,450,469,483,449,443,399,407,409,372,497,423 -E07000008,Cambridge,76,78,71,82,72,65,71,75,66,51,75,62 -E07000009,East Cambridgeshire,71,68,62,68,63,62,52,49,49,52,64,61 -E07000010,Fenland,98,94,97,115,104,98,76,88,85,86,109,80 -E07000011,Huntingdonshire,123,114,130,122,128,113,114,94,118,105,132,126 -E07000012,South Cambridgeshire,106,96,109,96,82,105,86,101,91,78,117,94 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000012,Essex,1297,1268,1318,1280,1245,1168,1127,1084,1082,1065,1247,1094 -E07000066,Basildon,157,125,122,149,144,132,129,138,140,115,115,123 -E07000067,Braintree,124,133,126,132,125,111,95,106,102,110,142,112 -E07000068,Brentwood,61,61,64,66,64,69,76,54,60,62,59,59 -E07000069,Castle Point,101,98,108,94,82,66,79,70,73,86,90,96 -E07000070,Chelmsford,123,133,126,121,129,123,112,110,113,103,163,107 -E07000071,Colchester,164,156,148,147,131,124,131,113,137,113,122,123 -E07000072,Epping Forest,105,122,125,121,108,106,95,106,88,88,95,86 -E07000073,Harlow,68,62,67,65,76,59,65,59,50,53,70,44 -E07000074,Maldon,49,59,60,65,55,60,62,49,60,52,41,47 -E07000075,Rochford,64,73,84,69,73,78,63,52,66,64,77,73 -E07000076,Tendring,221,185,211,185,186,186,167,169,145,173,191,161 -E07000077,Uttlesford,60,61,77,66,72,54,53,58,48,46,82,63 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000015,Hertfordshire,867,725,892,821,759,708,678,766,672,754,869,820 -E07000095,Broxbourne,83,54,76,55,65,60,52,59,46,59,69,68 -E07000096,Dacorum,116,96,107,101,96,105,89,88,107,120,110,103 -E07000242,East Hertfordshire,93,82,121,89,84,82,76,77,83,77,93,86 -E07000098,Hertsmere,88,62,76,90,59,71,58,87,64,73,70,69 -E07000099,North Hertfordshire,105,93,118,101,110,86,86,107,93,89,113,108 -E07000240,St Albans,101,58,98,90,90,82,81,74,69,89,108,107 -E07000243,Stevenage,67,61,72,77,67,45,56,66,40,67,67,63 -E07000102,Three Rivers,73,66,67,74,54,55,54,66,55,67,74,69 -E07000103,Watford,52,64,68,59,53,57,55,51,52,44,68,74 -E07000241,Welwyn Hatfield,89,89,89,85,81,65,71,91,63,69,97,73 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000020,Norfolk,920,841,873,919,828,769,710,817,802,750,872,802 -E07000143,Breckland,150,148,140,142,136,119,113,132,127,126,130,122 -E07000144,Broadland,144,120,130,139,132,124,95,119,121,96,143,145 -E07000145,Great Yarmouth,112,88,108,110,106,91,91,86,91,80,112,99 -E07000146,King’s Lynn and West Norfolk,164,155,148,165,148,135,115,141,145,137,150,148 -E07000147,North Norfolk,139,113,140,132,115,111,104,126,116,109,120,110 -E07000148,Norwich,98,103,98,99,98,81,89,87,84,91,90,85 -E07000149,South Norfolk,113,114,109,132,93,108,103,126,118,111,127,93 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000029,Suffolk,682,667,717,652,612,607,558,602,555,600,650,666 -E07000200,Babergh,107,85,87,97,83,79,72,67,64,90,97,80 -E07000201,Forest Heath,40,67,48,41,35,41,37,49,39,46,49,40 -E07000202,Ipswich,99,115,105,88,93,93,88,98,81,84,91,102 -E07000203,Mid Suffolk,73,76,95,78,95,68,63,75,75,82,85,73 -E07000204,St Edmundsbury,109,98,108,88,78,90,76,82,77,86,87,108 -E07000205,Suffolk Coastal,123,118,133,124,117,122,99,108,101,103,132,127 -E07000206,Waveney,131,108,141,136,111,114,123,123,118,109,109,136 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000007,LONDON,4421,4336,4652,4331,3797,3881,3544,3681,3819,3761,4210,4174 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E13000001,Inner London,1408,1379,1458,1331,1176,1248,1122,1149,1225,1195,1294,1295 -E09000007,Camden,94,94,102,96,89,86,72,81,89,90,98,107 -E09000001,City of London,3,5,4,3,5,2,5,3,4,4,0,3 -E09000012,Hackney,95,106,117,85,77,91,79,80,79,98,101,87 -E09000013,Hammersmith and Fulham,68,80,95,71,70,66,65,61,61,70,65,89 -E09000014,Haringey,97,120,123,98,104,87,90,83,87,78,100,96 -E09000019,Islington,87,79,86,66,77,81,80,81,102,67,97,98 -E09000020,Kensington and Chelsea,76,80,80,66,64,56,68,57,74,55,71,60 -E09000022,Lambeth,129,114,147,132,113,141,99,95,123,110,117,120 -E09000023,Lewisham,131,123,141,151,114,92,106,138,120,113,132,106 -E09000025,Newham,133,123,125,116,82,106,92,85,83,114,97,107 -E09000028,Southwark,124,115,122,131,103,108,105,113,117,103,104,109 -E09000030,Tower Hamlets,101,83,92,97,84,97,70,80,86,90,80,99 -E09000032,Wandsworth,161,143,137,126,116,132,116,105,111,104,138,119 -E09000033,Westminster,109,114,87,93,78,103,75,87,89,99,94,95 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E13000002,Outer London,3013,2957,3194,3000,2621,2633,2422,2532,2594,2566,2916,2879 -E09000002,Barking and Dagenham,105,94,124,104,90,78,89,85,102,99,117,104 -E09000003,Barnet,187,225,210,222,193,209,196,176,195,188,210,219 -E09000004,Bexley,161,185,161,178,167,166,135,151,140,164,199,198 -E09000005,Brent,160,137,155,154,144,136,129,122,136,126,157,146 -E09000006,Bromley,231,227,241,254,206,209,194,215,226,195,243,214 -E09000008,Croydon,219,236,222,230,169,189,183,187,192,178,214,205 -E09000009,Ealing,164,173,215,182,156,168,135,139,149,137,161,171 -E09000010,Enfield,196,184,195,175,158,153,142,167,147,142,193,165 -E09000011,Greenwich,164,148,137,131,125,129,126,103,135,141,129,148 -E09000015,Harrow,126,131,159,108,125,118,119,106,104,111,135,126 -E09000016,Havering,238,203,235,220,177,183,151,207,177,196,203,197 -E09000017,Hillingdon,143,157,173,167,141,152,131,122,165,172,169,141 -E09000018,Hounslow,146,133,149,145,120,99,128,114,112,134,105,132 -E09000021,Kingston upon Thames,107,99,111,103,72,88,81,72,75,72,82,105 -E09000024,Merton,108,102,122,108,109,81,82,106,82,85,107,114 -E09000026,Redbridge,160,150,178,154,147,170,124,135,127,118,145,130 -E09000027,Richmond upon Thames,104,122,122,109,101,81,87,93,85,69,113,90 -E09000029,Sutton,151,133,160,131,116,115,103,121,128,121,117,131 -E09000031,Waltham Forest,143,118,125,125,105,109,87,111,117,118,117,143 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000008,SOUTH EAST,7172,6950,7464,7341,6349,6431,6010,6041,6167,6305,7262,6937 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000036,Bracknell Forest,62,67,69,68,55,57,47,51,65,58,64,55 -E06000043,Brighton and Hove,191,199,202,183,162,145,153,162,158,182,197,203 -E06000046,Isle of Wight,156,132,160,142,134,154,146,122,130,150,175,159 -E06000035,Medway,207,196,185,203,159,170,152,151,161,166,210,184 -E06000042,Milton Keynes,171,144,184,133,129,127,128,137,156,140,166,146 -E06000044,Portsmouth,155,149,179,155,143,154,122,138,124,134,161,132 -E06000038,Reading,98,76,90,103,81,93,82,89,74,105,100,116 -E06000039,Slough,57,71,90,84,57,80,77,77,66,50,80,70 -E06000045,Southampton,151,167,190,163,151,149,134,144,153,149,194,179 -E06000037,West Berkshire,89,93,128,121,105,106,99,93,86,90,107,114 -E06000040,Windsor and Maidenhead,93,109,117,110,110,101,87,101,92,93,117,94 -E06000041,Wokingham,109,94,112,120,86,105,96,69,77,111,109,106 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000002,Buckinghamshire,363,384,363,396,297,284,294,345,295,333,370,345 -E07000004,Aylesbury Vale,125,139,112,132,109,95,87,113,104,129,123,124 -E07000005,Chiltern,75,74,71,68,63,50,59,75,53,52,70,49 -E07000006,South Bucks,55,58,80,61,43,53,55,56,52,47,67,68 -E07000007,Wycombe,108,113,100,135,82,86,93,101,86,105,110,104 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000011,East Sussex,567,549,617,579,482,547,477,472,481,517,613,544 -E07000061,Eastbourne,117,114,123,103,82,121,102,97,90,112,112,111 -E07000062,Hastings,86,84,88,102,91,90,68,89,73,70,112,87 -E07000063,Lewes,113,96,109,98,76,100,85,74,93,84,99,94 -E07000064,Rother,113,116,140,115,101,95,97,86,81,101,119,107 -E07000065,Wealden,138,139,157,161,132,141,125,126,144,150,171,145 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000014,Hampshire,1183,1109,1169,1161,1029,952,988,948,951,950,1135,1088 -E07000084,Basingstoke and Deane,116,133,124,109,100,88,108,96,107,93,132,113 -E07000085,East Hampshire,99,113,98,121,109,89,75,96,88,96,120,99 -E07000086,Eastleigh,95,104,96,111,82,72,84,59,74,71,87,95 -E07000087,Fareham,112,114,130,95,98,98,99,93,90,102,105,127 -E07000088,Gosport,72,76,71,72,61,56,71,73,47,76,68,72 -E07000089,Hart,74,58,54,71,52,60,55,51,66,44,55,64 -E07000090,Havant,133,103,142,118,117,90,113,108,101,113,113,116 -E07000091,New Forest,203,161,196,207,168,165,163,156,150,163,206,182 -E07000092,Rushmoor,67,65,63,67,70,56,46,57,56,45,50,61 -E07000093,Test Valley,117,90,95,96,86,93,101,85,73,81,104,83 -E07000094,Winchester,95,92,100,94,86,85,73,74,99,66,95,76 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000016,Kent,1312,1268,1380,1375,1173,1200,1093,1120,1135,1141,1275,1272 -E07000105,Ashford,101,96,102,108,74,85,80,87,73,73,99,99 -E07000106,Canterbury,147,134,166,144,117,126,130,126,129,128,120,134 -E07000107,Dartford,80,72,85,89,81,72,74,62,68,63,83,84 -E07000108,Dover,107,112,121,134,91,99,116,90,86,117,103,120 -E07000109,Gravesham,84,78,83,65,71,69,58,52,82,79,76,69 -E07000110,Maidstone,128,144,137,130,124,128,108,119,95,115,146,145 -E07000111,Sevenoaks,89,85,83,88,90,74,83,89,64,84,89,84 -E07000112,Shepway,128,102,115,126,107,106,92,107,108,73,103,92 -E07000113,Swale,108,119,133,117,112,103,93,101,116,89,121,110 -E07000114,Thanet,152,174,157,170,130,150,111,138,158,146,157,155 -E07000115,Tonbridge and Malling,96,78,99,107,70,88,70,76,81,83,82,95 -E07000116,Tunbridge Wells,92,74,99,97,106,100,78,73,75,91,96,85 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000025,Oxfordshire,478,490,484,519,465,439,416,393,441,412,488,410 -E07000177,Cherwell,102,105,112,128,118,83,84,92,106,114,117,76 -E07000178,Oxford,88,99,83,74,72,68,81,53,73,75,77,64 -E07000179,South Oxfordshire,98,110,102,115,96,117,108,83,110,74,116,97 -E07000180,Vale of White Horse,105,84,89,99,93,84,76,84,82,65,83,89 -E07000181,West Oxfordshire,85,92,98,103,86,87,67,81,70,84,95,84 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000030,Surrey,906,852,906,952,846,834,725,778,817,826,886,906 -E07000207,Elmbridge,104,79,96,92,83,82,77,87,94,97,86,101 -E07000208,Epsom and Ewell,52,61,58,62,43,47,51,46,59,45,38,57 -E07000209,Guildford,97,98,91,88,106,95,88,76,79,81,96,106 -E07000210,Mole Valley,82,65,74,98,58,86,66,68,56,70,81,77 -E07000211,Reigate and Banstead,120,128,136,110,110,105,92,95,110,107,120,90 -E07000212,Runnymede,66,52,76,65,61,60,57,53,61,59,60,66 -E07000213,Spelthorne,74,60,78,79,75,62,62,73,74,67,83,81 -E07000214,Surrey Heath,59,69,58,78,74,61,46,57,58,59,77,72 -E07000215,Tandridge,78,62,71,89,66,65,56,63,60,77,60,72 -E07000216,Waverley,108,107,95,120,92,103,74,104,97,83,102,104 -E07000217,Woking,66,71,73,71,78,68,56,56,69,81,83,80 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000032,West Sussex,824,801,839,774,685,734,694,651,705,698,815,814 -E07000223,Adur,56,55,64,71,51,54,46,57,58,45,50,59 -E07000224,Arun,224,207,202,171,175,217,169,141,167,167,183,196 -E07000225,Chichester,130,114,132,119,106,100,131,100,105,118,128,132 -E07000226,Crawley,55,65,63,61,65,65,62,66,57,62,78,60 -E07000227,Horsham,100,119,122,112,93,117,98,101,97,88,113,102 -E07000228,Mid Sussex,133,135,111,126,77,95,89,97,106,115,132,127 -E07000229,Worthing,126,106,145,114,118,86,99,89,115,103,131,138 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000009,SOUTH WEST,5116,5010,5412,5236,4533,4415,4323,4388,4366,4413,5039,4865 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000022,Bath and North East Somerset,159,139,176,144,126,108,139,150,143,127,140,168 -E06000028,Bournemouth,166,176,188,193,171,149,154,159,143,152,191,164 -E06000023,"Bristol, City of",311,317,309,326,265,248,264,240,272,222,319,286 -E06000052,Cornwall,522,572,561,576,504,515,484,499,498,503,531,523 -E06000053,Isles of Scilly,3,4,1,1,0,2,1,1,1,1,2,1 -E06000024,North Somerset,215,208,223,271,158,172,196,182,156,177,245,228 -E06000026,Plymouth,216,210,246,209,207,201,195,173,202,192,221,202 -E06000029,Poole,126,168,144,167,132,135,133,121,121,139,142,124 -E06000025,South Gloucestershire,190,200,214,201,192,148,160,182,176,171,222,166 -E06000030,Swindon,166,170,167,153,122,128,106,139,129,131,141,148 -E06000027,Torbay,182,165,180,165,133,145,125,137,149,152,167,154 -E06000054,Wiltshire,412,413,427,415,372,342,337,362,339,362,418,414 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000008,Devon,847,774,859,800,749,721,688,697,677,685,717,751 -E07000040,East Devon,174,180,187,154,161,172,159,145,145,124,170,161 -E07000041,Exeter,107,95,113,106,79,88,89,79,82,78,95,97 -E07000042,Mid Devon,76,75,72,78,62,60,60,57,54,91,61,68 -E07000043,North Devon,94,90,105,109,97,82,84,99,82,98,104,106 -E07000044,South Hams,87,92,94,78,74,74,68,73,87,59,70,84 -E07000045,Teignbridge,159,121,136,144,162,128,121,134,113,118,109,123 -E07000046,Torridge,78,60,84,85,68,49,62,54,70,64,64,57 -E07000047,West Devon,72,61,68,46,46,68,45,56,44,53,44,55 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000009,Dorset,486,455,497,508,408,435,415,391,390,404,484,437 -E07000048,Christchurch,69,53,63,56,44,72,45,45,52,56,71,56 -E07000049,East Dorset,111,92,119,114,97,88,88,88,89,84,105,82 -E07000050,North Dorset,69,63,56,49,73,62,62,66,49,50,77,76 -E07000051,Purbeck,52,38,47,54,30,52,45,35,30,43,41,45 -E07000052,West Dorset,122,143,145,144,91,97,98,96,105,109,131,121 -E07000053,Weymouth and Portland,63,66,67,91,73,64,77,61,65,62,59,57 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000013,Gloucestershire,573,514,627,597,510,487,470,478,520,532,579,554 -E07000078,Cheltenham,105,92,112,121,82,112,79,95,89,90,111,106 -E07000079,Cotswold,81,67,96,98,71,52,68,76,73,61,79,86 -E07000080,Forest of Dean,100,77,100,80,72,66,82,74,81,84,87,68 -E07000081,Gloucester,98,90,111,111,104,96,71,75,94,98,109,94 -E07000082,Stroud,100,112,127,120,101,94,107,81,97,122,124,120 -E07000083,Tewkesbury,89,76,81,67,80,67,63,77,86,77,69,80 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000027,Somerset,542,525,593,510,484,479,456,477,450,463,520,545 -E07000187,Mendip,98,107,106,92,99,77,79,93,91,83,90,107 -E07000188,Sedgemoor,103,93,123,121,99,86,107,107,92,97,97,100 -E07000189,South Somerset,167,161,167,140,137,163,145,149,142,152,164,164 -E07000190,Taunton Deane,121,126,139,99,110,108,98,92,92,89,126,136 -E07000191,West Somerset,53,38,58,58,39,45,27,36,33,42,43,38 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W92000004,WALES,2964,2889,3254,3000,2575,2543,2398,2670,2508,2525,2895,2845 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W06000001,Isle of Anglesey,82,65,69,74,61,68,63,72,62,60,86,59 -W06000002,Gwynedd,107,110,123,126,110,104,92,110,119,93,104,120 -W06000003,Conwy,165,122,130,124,117,113,94,108,121,109,122,145 -W06000004,Denbighshire,121,102,122,107,92,106,89,99,100,88,118,114 -W06000005,Flintshire,136,139,133,111,140,113,114,129,106,117,135,141 -W06000006,Wrexham,122,125,138,140,102,93,115,131,91,124,127,117 -W06000023,Powys,124,146,144,142,119,150,117,106,123,134,121,135 -W06000008,Ceredigion,76,65,68,59,55,64,54,63,55,57,77,87 -W06000009,Pembrokeshire,123,127,146,138,121,102,102,97,102,116,133,128 -W06000010,Carmarthenshire,201,203,227,225,192,179,173,190,141,169,179,187 -W06000011,Swansea,244,210,286,257,226,198,208,208,203,182,228,235 -W06000012,Neath Port Talbot,156,143,169,156,105,120,107,150,135,141,165,143 -W06000013,Bridgend,138,134,139,134,112,134,118,133,123,121,140,117 -W06000014,Vale of Glamorgan,127,104,141,119,114,87,81,102,96,89,114,127 -W06000015,Cardiff,236,248,299,235,222,245,223,233,209,218,241,212 -W06000016,Rhondda Cynon Taff,232,223,241,221,190,202,177,191,192,193,221,204 -W06000024,Merthyr Tydfil,49,64,63,69,48,49,47,49,35,43,62,59 -W06000018,Caerphilly,166,164,176,166,131,117,118,165,138,141,162,153 -W06000019,Blaenau Gwent,76,58,78,87,59,56,57,63,76,65,74,68 -W06000020,Torfaen,82,99,101,96,72,67,65,82,80,73,84,85 -W06000021,Monmouthshire,75,80,108,81,74,66,82,75,87,90,81,83 -W06000022,Newport,126,158,153,133,113,110,102,114,114,102,121,126 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -J99000001,Non-residents of England & Wales,106,99,103,101,93,91,101,110,117,88,96,86 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Footnotes:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -1 The deaths of those whose usual residence is outside England and Wales are included in counts for 'England Wales and Elsewhere' but excluded from any sub-division of England and Wales.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Source: Office for National Statistics,NA,Released: 25 July 2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA diff --git a/working_files/Monthly/Monthly2016Mortality-Metadata.csv b/working_files/Monthly/Monthly2016Mortality-Metadata.csv deleted file mode 100644 index 1162569..0000000 --- a/working_files/Monthly/Monthly2016Mortality-Metadata.csv +++ /dev/null @@ -1,43 +0,0 @@ -Contents -Metadata -NA -Introduction -NA -"Monthly death figures provide counts of the number of deaths registered in a calendar month, by area of usual residence in England and Wales for 2016." -NA -"These figures are presented by regions (within England), unitary authorities, counties, districts & London boroughs." -NA -Notes -NA -Deaths occurring in England and Wales are registered on the General Register Office's Registration Online (RON) system. -Daily extracts of death registration records from RON are processed on our database systems. -NA -The number of deaths registered in 2016 by month in England and Wales have now been finalised. There are only small changes from the provisional figures released during the year. -NA -Weekly deaths counts cannot be summed to match the counts for monthly deaths as some weeks may span more than one month. -NA -Bank Holidays could affect the number of registrations made within those months. -NA -Symbols -NA -In ONS mortality outputs published symbols used are: -0 denotes nil -For further information please refer to -https://gss.civilservice.gov.uk/statistics/a-z-of-policies-and-guidance/guidance-use-data-markers/ -NA -The ONS policy on protecting confidentiality in birth and death statistics is available on the ONS website: -www.ons.gov.uk/ons/guide-method/best-practice/disclosure-control-policy-for-birth-and-death-statistics/index.html -NA -Further information and enquiries -NA -Special extracts and tabulations of mortality data for England and Wales are available to order for a charge (subject to legal -"frameworks, disclosure control, resources and the ONS charging policy, where appropriate). Enquiries should be made to" -Vital Statistics Outputs Branch (vsob@ons.gsi.gov.uk or telephone: +44 (0)1329 444110). -User requested data will be published onto our website. -NA -"Access to microdata and disclosive data, that is, data which have the potential to identify an individual record, requires the approval of the ONS Microdata Release Procedure (MRP) before the data can be provided." -NA -Feedback -"We welcome feedback from users, please contact Vital Statistics Outputs Branch" -email: vsob@ons.gsi.gov.uk -telephone: +44 (0)1329 444110 diff --git a/working_files/Monthly/Monthly2016Mortality-Related publications.csv b/working_files/Monthly/Monthly2016Mortality-Related publications.csv deleted file mode 100644 index 48d49cd..0000000 --- a/working_files/Monthly/Monthly2016Mortality-Related publications.csv +++ /dev/null @@ -1,36 +0,0 @@ -Contents -Related publications -NA -User guide to mortality statistics -Supporting information for these tables can be found in the User guide to mortality statistics -NA -Quality and Methodology Information -"A Quality and Methodology Information document contains important information on: -• the strengths and limitations of the data -• the quality of the output: including the accuracy of the data, how it compares with related data -• uses and users -• how the output was created -" -NA -Further mortality statistics based on death registrations are available on the ONS website: -NA -"Death summary tables, England and Wales" -The summary tables provide key death registration statistics for the reference year. -NA -Deaths registered in England and Wales (Series DR) -Series DR (Mortality Statistics: Deaths Registered in England and Wales) provides detailed death registration statistics for the reference year. This includes numbers of deaths by detailed underlying cause by age-sex group defined by the different chapters of the Tenth Revision of the International Classification of Diseases and Related Health Problems (ICD-10). -NA -"Vital statistics: Population and health reference tables, United Kingdom and constituent countries" -"These tables provide annual data for a selection of key statistics under the following themes: population, demography and health. Figures for the latest years may be provisional, these will be updated to final figures when data is available." -NA -Mortality Statistics: Deaths registered in England and Wales by area of usual residence -Presents data on death registrations in the United Kingdom by area of usual residence. The release contains a summary table providing key mortality measures (numbers and rates including age standardised mortality rates) for the United Kingdom and its constituent countries and a table providing numbers of deaths in England and Wales by age and sex. -NA -"Weekly provisional figures on deaths registered, England and Wales" -Weekly death figures provide provisional counts of the number of deaths registered in England and Wales in the latest eight weeks for which data are available. -NA -20th Century Mortality Files -"The 20th Century mortality files are a record of mortality in England & Wales from 1901 to 2000. The files consist of an aggregated database of deaths by age group, sex, year and underlying cause, and include populations for England & Wales." -NA -21st Century Mortality Files -"The 21st Century Mortality Files are a record of mortality in England and Wales from 2001 onwards. They are designed to complement the Twentieth Century Mortality files. The files consist of an aggregated database of deaths by age group, sex, year and underlying cause, and include populations for England and Wales." diff --git a/working_files/Monthly/Monthly2016Mortality-Terms and conditions.csv b/working_files/Monthly/Monthly2016Mortality-Terms and conditions.csv deleted file mode 100644 index 6829c7c..0000000 --- a/working_files/Monthly/Monthly2016Mortality-Terms and conditions.csv +++ /dev/null @@ -1,33 +0,0 @@ -Contents -Terms and conditions -NA -A National Statistics publication -NA -National Statistics are produced to high professional standards set out in the Code of Practice for Official Statistics. They are produced free from any political interference. -NA -"The UK Statistics Authority has designated these statistics as National Statistics, in accordance with the Statistics and Registration Service Act 2007 and signifying compliance with the Code of Practice for Official Statistics." -Designation can be broadly interpreted to mean that the statistics: -• meet identified user needs -• are well explained and readily accessible -• are produced according to sound methods -• are managed impartially and objectively in the public interest -NA -Once statistics have been designated as National Statistics it is a statutory requirement that the Code of Practice shall continue to be observed. -NA -About us -"We are the executive office of the UK Statistics Authority, a non-ministerial department which reports directly to Parliament and the UK government’s single largest statistical producer. We compile information about the UK’s society and economy, and provide the evidence-base for policy and decision-making, the allocation of resources, and public accountability." -NA -NA -Copyright and reproduction -NA -© Crown copyright 2017 -"You may re-use this publication (not including logos) free of charge in any format or medium, under the terms of the Open Government Licence." -Users should include a source accreditation to ONS - Source: Office for National Statistics licensed under the Open Government Licence. -NA -Visit the Open Government Licence -"or write to the Information Policy Team, The National Archives, Kew, Richmond, Surrey, TW9 4DU;" -or email: psi@nationalarchives.gsi.gov.uk -NA -Where we have identified any third party copyright information you will need to obtain permission from the copyright holders concerned. -NA -This publication is also available on our website. diff --git a/working_files/Monthly/Monthly2016Mortality.xls b/working_files/Monthly/Monthly2016Mortality.xls deleted file mode 100644 index f7c851f..0000000 Binary files a/working_files/Monthly/Monthly2016Mortality.xls and /dev/null differ diff --git a/working_files/Monthly/Monthly2017Mortality-Contents.csv b/working_files/Monthly/Monthly2017Mortality-Contents.csv deleted file mode 100644 index 9ec3192..0000000 --- a/working_files/Monthly/Monthly2017Mortality-Contents.csv +++ /dev/null @@ -1,10 +0,0 @@ -Contents,Monthly figures on deaths registered in England and Wales -NA,NA -NA,NA -Information,Information on monthly deaths -NA,NA -Terms and conditions,Terms and conditions -NA,NA -Figures for 2017,"Deaths (numbers): by region, 2017 registrations, England and Wales" -NA,NA -Related publications,Provides links to further mortality statistics based on death registrations diff --git a/working_files/Monthly/Monthly2017Mortality-Figures for 2017.csv b/working_files/Monthly/Monthly2017Mortality-Figures for 2017.csv deleted file mode 100644 index e6979b3..0000000 --- a/working_files/Monthly/Monthly2017Mortality-Figures for 2017.csv +++ /dev/null @@ -1,466 +0,0 @@ -Contents,...2,...3,...4,...5,...6,...7,...8,...9,...10,...11,...12,...13,...14 -"Monthly figures on deaths registered by area of usual residence, 2017",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,England and Wales -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Area of usual residence,NA,Jan-17,Feb-17,Mar-17,Apr-17,May-17,Jun-17,Jul-17,Aug-17,Sep-17,Oct-17,Nov-17,Dec-17 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"K04000001, J99000001","ENGLAND, WALES AND ELSEWHERE 1",57368,47766,48664,39101,44279,42175,38425,41074,40095,43597,45580,45129 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -K04000001,ENGLAND AND WALES,57266,47695,48577,39024,44183,42074,38314,40963,40002,43504,45476,45052 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E92000001,ENGLAND,53675,44815,45594,36422,41383,39447,35940,38341,37535,40745,42690,42295 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000001,NORTH EAST,2905,2504,2548,2044,2301,2178,2081,2145,2180,2286,2335,2527 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000047,County Durham,594,523,513,410,510,402,425,400,443,433,433,502 -E06000005,Darlington,103,110,105,88,101,89,73,92,87,96,102,86 -E06000001,Hartlepool,116,83,101,76,85,86,52,80,85,88,98,94 -E06000002,Middlesbrough,151,137,131,111,112,114,127,112,113,120,150,151 -E06000057,Northumberland,393,313,307,263,292,307,266,276,315,298,289,310 -E06000003,Redcar and Cleveland,171,126,158,104,120,134,122,119,107,145,126,134 -E06000004,Stockton-on-Tees,177,166,176,129,157,148,141,148,168,143,142,186 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000007,Tyne and Wear (Met County),1200,1046,1057,863,924,898,875,918,862,963,995,1064 -E08000037,Gateshead,220,191,193,146,161,166,169,163,187,197,183,221 -E08000021,Newcastle upon Tyne,254,235,206,218,186,189,161,184,172,188,219,229 -E08000022,North Tyneside,227,208,193,153,193,170,209,181,152,209,205,193 -E08000023,South Tyneside,164,162,161,128,143,124,114,141,121,139,162,157 -E08000024,Sunderland,335,250,304,218,241,249,222,249,230,230,226,264 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000002,NORTH WEST,7622,6229,6432,5462,5949,5646,5090,5566,5361,5942,6113,6245 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000008,Blackburn with Darwen,149,103,110,94,114,89,92,130,87,97,107,105 -E06000009,Blackpool,227,176,196,114,173,145,109,129,150,130,173,146 -E06000049,Cheshire East,427,341,314,288,294,317,280,343,304,329,328,365 -E06000050,Cheshire West and Chester,389,323,316,253,311,267,241,237,238,266,288,293 -E06000006,Halton,117,95,115,94,99,105,93,110,110,86,89,84 -E06000007,Warrington,231,161,148,145,154,174,148,147,136,160,161,168 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000006,Cumbria,544,520,499,462,517,457,376,460,404,504,498,460 -E07000026,Allerdale,104,119,116,107,94,104,73,96,92,103,104,96 -E07000027,Barrow-in-Furness,80,77,54,61,75,68,45,75,51,59,58,51 -E07000028,Carlisle,123,99,112,98,106,91,81,79,103,116,105,98 -E07000029,Copeland,70,76,76,70,64,60,63,64,54,63,70,59 -E07000030,Eden,46,37,54,36,51,48,40,45,26,45,60,59 -E07000031,South Lakeland,121,112,87,90,127,86,74,101,78,118,101,97 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000001,Greater Manchester (Met County),2584,2120,2221,1936,2097,1925,1775,1931,1902,2108,2092,2172 -E08000001,Bolton,280,200,239,231,227,172,174,191,186,233,199,247 -E08000002,Bury,230,169,169,151,148,171,104,132,131,132,160,170 -E08000003,Manchester,356,309,304,253,301,274,259,284,287,321,288,281 -E08000004,Oldham,191,168,208,171,196,154,156,178,147,160,193,193 -E08000005,Rochdale,207,172,191,163,182,145,142,129,158,174,194,205 -E08000006,Salford,233,209,210,159,178,166,155,168,168,206,185,176 -E08000007,Stockport,308,226,225,234,220,210,219,218,230,264,236,233 -E08000008,Tameside,232,195,177,180,203,176,186,177,187,185,192,210 -E08000009,Trafford,193,178,209,147,167,196,167,174,143,170,176,171 -E08000010,Wigan,354,294,289,247,275,261,213,280,265,263,269,286 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000017,Lancashire,1381,1127,1190,965,996,1000,891,924,901,1069,1099,1154 -E07000117,Burnley,106,93,94,75,72,77,64,77,55,71,80,86 -E07000118,Chorley,109,103,111,95,94,88,74,90,86,91,103,105 -E07000119,Fylde,125,111,107,79,75,100,84,75,72,91,81,86 -E07000120,Hyndburn,78,78,72,70,81,72,63,58,45,76,82,70 -E07000121,Lancaster,147,120,148,115,103,120,105,97,111,119,115,151 -E07000122,Pendle,123,75,87,71,70,74,83,60,78,62,85,84 -E07000123,Preston,127,113,105,96,108,98,83,102,83,102,114,114 -E07000124,Ribble Valley,80,47,54,44,42,56,40,44,31,54,66,64 -E07000125,Rossendale,81,59,55,47,58,36,45,43,46,65,61,54 -E07000126,South Ribble,112,74,93,81,86,85,70,78,74,111,99,80 -E07000127,West Lancashire,125,112,124,89,89,95,78,87,99,109,83,112 -E07000128,Wyre,168,142,140,103,118,99,102,113,121,118,130,148 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000002,Merseyside (Met County),1573,1263,1323,1111,1194,1167,1085,1155,1129,1193,1278,1298 -E08000011,Knowsley,153,125,135,128,127,115,116,111,141,122,139,115 -E08000012,Liverpool,504,376,421,355,370,384,327,350,335,375,381,409 -E08000014,Sefton,319,294,288,226,266,234,219,265,241,252,284,296 -E08000013,St. Helens,201,159,146,141,144,161,163,152,147,168,163,176 -E08000015,Wirral,396,309,333,261,287,273,260,277,265,276,311,302 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000003,YORKSHIRE AND THE HUMBER,5715,4743,4999,3798,4317,4074,3774,3934,3866,4272,4614,4301 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000011,East Riding of Yorkshire,444,383,399,284,291,319,283,283,273,339,321,301 -E06000010,"Kingston upon Hull, City of",295,262,246,181,246,193,206,195,183,229,216,204 -E06000012,North East Lincolnshire,216,166,161,137,152,115,118,128,134,142,163,180 -E06000013,North Lincolnshire,199,172,167,129,171,125,128,126,120,159,159,131 -E06000014,York,225,182,152,129,151,137,131,151,128,142,163,134 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000023,North Yorkshire,660,611,659,500,518,492,461,484,495,525,584,557 -E07000163,Craven,68,53,76,39,50,52,49,44,48,54,52,58 -E07000164,Hambleton,101,85,104,77,74,51,70,83,62,86,90,73 -E07000165,Harrogate,167,165,156,127,129,136,104,118,120,124,141,140 -E07000166,Richmondshire,48,48,43,32,45,28,34,40,41,39,43,37 -E07000167,Ryedale,64,61,56,44,53,47,42,38,51,54,49,56 -E07000168,Scarborough,131,126,137,119,98,107,113,103,118,116,135,137 -E07000169,Selby,81,73,87,62,69,71,49,58,55,52,74,56 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000003,South Yorkshire (Met County),1479,1201,1357,939,1102,1028,996,1006,965,1026,1178,1082 -E08000016,Barnsley,279,246,255,160,196,199,168,190,176,194,204,219 -E08000017,Doncaster,323,293,307,202,230,244,248,240,245,245,290,273 -E08000018,Rotherham,308,269,276,186,237,223,200,183,185,193,243,239 -E08000019,Sheffield,569,393,519,391,439,362,380,393,359,394,441,351 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000006,West Yorkshire (Met County),2197,1766,1858,1499,1686,1665,1451,1561,1568,1710,1830,1712 -E08000032,Bradford,483,361,400,338,370,388,331,315,386,358,382,428 -E08000033,Calderdale,212,166,176,163,192,157,151,144,169,160,178,164 -E08000034,Kirklees,382,374,347,274,309,328,276,292,291,313,342,332 -E08000035,Leeds,742,566,635,465,539,504,463,544,476,586,634,519 -E08000036,Wakefield,378,299,300,259,276,288,230,266,246,293,294,269 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000004,EAST MIDLANDS,4907,3973,4381,3251,3770,3659,3369,3443,3324,3540,3876,3869 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000015,Derby,260,163,219,161,201,177,177,187,183,188,185,185 -E06000016,Leicester,298,241,248,183,213,220,180,190,174,204,196,231 -E06000018,Nottingham,285,182,241,142,177,215,197,189,149,164,204,222 -E06000017,Rutland,41,35,31,29,27,34,21,35,35,28,31,39 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000007,Derbyshire,899,738,760,599,657,690,595,643,626,645,703,686 -E07000032,Amber Valley,144,120,119,78,112,113,101,119,94,103,110,89 -E07000033,Bolsover,101,84,86,57,79,60,71,85,63,58,83,72 -E07000034,Chesterfield,119,125,111,85,94,109,91,95,110,106,107,119 -E07000035,Derbyshire Dales,87,74,77,64,51,75,51,51,51,65,53,53 -E07000036,Erewash,114,99,100,99,101,102,80,72,78,99,92,84 -E07000037,High Peak,98,64,68,55,67,62,57,61,67,67,95,89 -E07000038,North East Derbyshire,146,109,116,89,79,104,85,96,103,83,98,100 -E07000039,South Derbyshire,90,63,83,72,74,65,59,64,60,64,65,80 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000018,Leicestershire,707,501,571,443,503,491,465,489,461,475,475,548 -E07000129,Blaby,114,67,65,53,72,65,83,66,71,54,55,84 -E07000130,Charnwood,173,109,147,108,109,125,108,109,92,112,121,130 -E07000131,Harborough,91,68,85,56,68,60,61,81,61,64,46,66 -E07000132,Hinckley and Bosworth,114,79,91,80,89,81,61,81,86,90,85,94 -E07000133,Melton,41,50,49,39,47,27,37,34,27,38,47,40 -E07000134,North West Leicestershire,113,81,83,68,70,72,72,81,73,74,68,82 -E07000135,Oadby and Wigston,61,47,51,39,48,61,43,37,51,43,53,52 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000019,Lincolnshire,840,797,836,626,729,588,637,615,636,687,785,745 -E07000136,Boston,64,82,74,54,75,58,64,59,63,65,76,64 -E07000137,East Lindsey,207,179,169,152,169,139,140,162,146,155,166,166 -E07000138,Lincoln,87,85,100,64,77,60,65,72,66,79,81,84 -E07000139,North Kesteven,139,109,140,82,111,85,85,94,94,93,128,98 -E07000140,South Holland,132,122,112,79,82,72,84,67,92,99,89,102 -E07000141,South Kesteven,123,127,148,125,114,100,124,91,99,119,147,125 -E07000142,West Lindsey,88,93,93,70,101,74,75,70,76,77,98,106 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000021,Northamptonshire,681,597,617,475,506,537,433,464,488,522,562,532 -E07000150,Corby,55,69,51,49,35,55,42,40,45,53,54,50 -E07000151,Daventry,82,62,63,49,58,61,48,56,54,53,70,72 -E07000152,East Northamptonshire,105,93,87,64,65,76,66,55,74,73,75,61 -E07000153,Kettering,90,92,98,70,67,70,58,59,59,72,69,69 -E07000154,Northampton,188,147,172,142,139,138,122,131,132,143,158,158 -E07000155,South Northamptonshire,90,63,76,54,75,57,46,51,67,68,64,63 -E07000156,Wellingborough,71,71,70,47,67,80,51,72,57,60,72,59 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000024,Nottinghamshire,896,719,858,593,757,707,664,631,572,627,735,681 -E07000170,Ashfield,122,103,132,97,115,102,89,103,88,81,108,117 -E07000171,Bassetlaw,122,126,123,89,120,92,97,75,78,102,107,113 -E07000172,Broxtowe,140,101,119,63,101,96,81,95,83,86,96,69 -E07000173,Gedling,138,101,133,92,108,100,101,96,84,84,98,90 -E07000174,Mansfield,121,105,121,84,107,100,109,90,76,97,108,102 -E07000175,Newark and Sherwood,127,100,134,98,107,109,102,95,87,100,106,95 -E07000176,Rushcliffe,126,83,96,70,99,108,85,77,76,77,112,95 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000005,WEST MIDLANDS,5975,4938,5066,4027,4557,4481,4033,4159,4179,4483,4741,4587 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000019,"Herefordshire, County of",261,198,186,155,178,165,158,148,157,160,186,148 -E06000051,Shropshire,388,315,338,265,284,274,255,288,269,299,316,271 -E06000021,Stoke-on-Trent,309,240,209,167,212,201,211,217,176,205,204,196 -E06000020,Telford and Wrekin,144,118,141,125,113,145,125,111,116,133,130,150 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000028,Staffordshire,983,814,758,627,700,717,613,631,677,688,732,745 -E07000192,Cannock Chase,91,91,93,71,73,94,74,57,69,82,84,74 -E07000193,East Staffordshire,139,99,97,77,103,75,65,78,95,93,87,109 -E07000194,Lichfield,127,84,98,84,98,87,73,79,86,86,103,78 -E07000195,Newcastle-under-Lyme,148,124,107,84,72,106,71,92,104,95,97,108 -E07000196,South Staffordshire,121,116,120,102,95,95,94,76,75,109,125,126 -E07000197,Stafford,147,139,97,93,104,111,95,115,102,96,93,100 -E07000198,Staffordshire Moorlands,137,99,99,82,81,97,90,85,90,78,91,107 -E07000199,Tamworth,73,62,47,34,74,52,51,49,56,49,52,43 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000031,Warwickshire,566,452,503,401,472,449,403,385,397,465,477,471 -E07000218,North Warwickshire,83,47,71,44,65,54,57,46,47,39,60,58 -E07000219,Nuneaton and Bedworth,120,103,120,82,102,101,102,83,94,110,113,109 -E07000220,Rugby,88,103,81,84,82,72,67,70,71,86,78,88 -E07000221,Stratford-on-Avon,151,115,120,96,124,126,85,93,92,128,122,111 -E07000222,Warwick,124,84,111,95,99,96,92,93,93,102,104,105 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000005,West Midlands (Met County),2654,2220,2338,1843,2118,2055,1810,1867,1908,2032,2146,2108 -E08000025,Birmingham,950,719,778,614,736,720,651,623,656,682,724,698 -E08000026,Coventry,267,289,269,219,231,234,216,226,199,261,242,226 -E08000027,Dudley,345,263,269,243,275,244,190,244,246,265,275,274 -E08000028,Sandwell,321,300,278,221,236,239,211,216,232,234,231,253 -E08000029,Solihull,213,199,215,160,171,157,156,152,154,167,169,169 -E08000030,Walsall,292,224,271,194,238,235,201,218,221,215,262,255 -E08000031,Wolverhampton,266,226,258,192,231,226,185,188,200,208,243,233 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000034,Worcestershire,670,581,593,444,480,475,458,512,479,501,550,498 -E07000234,Bromsgrove,110,105,119,83,98,91,78,94,95,84,107,98 -E07000235,Malvern Hills,112,107,103,72,85,77,75,85,76,88,94,83 -E07000236,Redditch,96,57,62,42,50,45,57,58,52,62,52,55 -E07000237,Worcester,100,87,73,80,80,83,62,77,75,85,76,59 -E07000238,Wychavon,128,124,123,87,84,94,95,104,111,86,123,113 -E07000239,Wyre Forest,124,101,113,80,83,85,91,94,70,96,98,90 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000006,EAST,6203,5365,5396,4138,4750,4449,4126,4422,4445,4701,4979,4788 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000055,Bedford,160,139,118,119,101,105,115,112,126,108,127,141 -E06000056,Central Bedfordshire,190,194,180,144,163,150,156,159,152,185,178,144 -E06000032,Luton,159,158,129,115,107,122,106,119,116,145,145,111 -E06000031,Peterborough,161,138,179,117,147,138,112,124,111,116,131,132 -E06000033,Southend-on-Sea,253,173,212,118,175,153,115,155,150,163,166,181 -E06000034,Thurrock,142,113,120,114,97,92,99,85,124,104,107,101 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000003,Cambridgeshire,555,504,532,389,469,429,369,402,421,421,510,444 -E07000008,Cambridge,89,75,76,60,66,61,54,62,73,74,80,78 -E07000009,East Cambridgeshire,71,64,69,52,72,55,62,58,65,50,64,61 -E07000010,Fenland,119,124,128,95,97,93,82,77,94,91,106,83 -E07000011,Huntingdonshire,138,128,143,115,125,121,91,103,102,117,140,116 -E07000012,South Cambridgeshire,138,113,116,67,109,99,80,102,87,89,120,106 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000012,Essex,1621,1389,1402,1056,1202,1051,1041,1094,1097,1210,1229,1263 -E07000066,Basildon,189,142,152,109,142,101,128,117,133,115,136,125 -E07000067,Braintree,158,143,133,122,132,99,114,117,107,128,128,149 -E07000068,Brentwood,90,61,66,60,65,74,56,63,66,72,72,81 -E07000069,Castle Point,121,81,99,81,94,81,68,80,72,83,89,95 -E07000070,Chelmsford,164,132,135,121,116,125,98,127,118,134,116,136 -E07000071,Colchester,182,145,157,110,135,102,141,123,117,131,148,140 -E07000072,Epping Forest,140,141,119,78,111,99,85,90,102,107,91,109 -E07000073,Harlow,94,63,92,58,60,45,46,52,62,65,68,45 -E07000074,Maldon,51,67,64,56,38,54,51,48,52,63,52,50 -E07000075,Rochford,101,106,84,60,66,55,52,67,56,81,69,76 -E07000076,Tendring,255,228,227,139,174,172,163,155,154,175,206,195 -E07000077,Uttlesford,76,80,74,62,69,44,39,55,58,56,54,62 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000015,Hertfordshire,1068,933,872,708,792,748,693,784,748,823,888,823 -E07000095,Broxbourne,84,76,71,47,55,48,61,65,42,49,66,57 -E07000096,Dacorum,147,142,105,69,86,86,78,104,90,118,105,107 -E07000242,East Hertfordshire,115,91,102,72,104,89,82,100,95,92,103,102 -E07000098,Hertsmere,102,92,73,72,84,74,64,75,77,65,82,74 -E07000099,North Hertfordshire,136,98,121,96,101,80,93,94,88,109,121,119 -E07000240,St Albans,129,104,110,92,91,83,88,86,103,95,106,89 -E07000243,Stevenage,77,76,69,62,68,64,53,71,56,75,76,60 -E07000102,Three Rivers,88,82,71,68,71,72,55,62,66,61,74,69 -E07000103,Watford,89,74,72,60,62,74,49,63,60,74,68,60 -E07000241,Welwyn Hatfield,101,98,78,70,70,78,70,64,71,85,87,86 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000020,Norfolk,1039,947,905,686,832,827,759,786,806,782,805,783 -E07000143,Breckland,170,143,138,106,124,122,141,122,123,125,123,127 -E07000144,Broadland,157,129,151,85,114,121,105,97,113,113,117,111 -E07000145,Great Yarmouth,125,113,96,82,93,99,87,95,93,92,93,101 -E07000146,King’s Lynn and West Norfolk,191,182,159,120,159,158,138,153,138,149,137,152 -E07000147,North Norfolk,147,120,149,95,131,123,105,114,113,104,140,110 -E07000148,Norwich,113,112,97,89,105,95,78,98,100,91,79,83 -E07000149,South Norfolk,136,148,115,109,106,109,105,107,126,108,116,99 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000029,Suffolk,855,677,747,572,665,634,561,602,594,644,693,665 -E07000200,Babergh,107,95,89,81,94,82,69,79,76,86,82,75 -E07000201,Forest Heath,58,45,52,35,43,32,34,41,34,59,54,39 -E07000202,Ipswich,126,93,104,104,106,94,94,94,91,80,111,108 -E07000203,Mid Suffolk,100,77,88,75,57,90,80,79,76,84,90,99 -E07000204,St Edmundsbury,114,92,123,80,82,102,68,83,81,88,107,82 -E07000205,Suffolk Coastal,151,142,155,96,147,127,106,100,126,116,123,130 -E07000206,Waveney,199,133,136,101,136,107,110,126,110,131,126,132 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000007,LONDON,5470,4489,4232,3672,4049,3880,3482,3919,3673,4113,4224,4209 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E13000001,Inner London,1619,1384,1347,1181,1292,1340,1161,1311,1181,1383,1390,1308 -E09000007,Camden,118,106,114,83,95,107,93,83,94,93,112,95 -E09000001,City of London,5,2,6,2,4,1,4,4,4,2,2,4 -E09000012,Hackney,115,100,114,96,90,90,72,107,90,81,85,94 -E09000013,Hammersmith and Fulham,102,89,73,70,70,72,75,71,69,77,90,61 -E09000014,Haringey,123,105,98,86,85,94,75,105,88,113,96,114 -E09000019,Islington,119,94,104,71,80,90,86,81,80,121,94,90 -E09000020,Kensington and Chelsea,99,73,58,60,63,63,98,89,62,79,59,70 -E09000022,Lambeth,129,142,118,95,133,127,110,113,105,116,131,103 -E09000023,Lewisham,156,125,122,115,145,138,105,129,109,124,129,137 -E09000025,Newham,135,100,107,114,105,123,92,109,108,124,131,102 -E09000028,Southwark,138,113,108,119,108,130,92,102,107,137,128,112 -E09000030,Tower Hamlets,115,81,93,95,85,84,68,97,76,84,96,93 -E09000032,Wandsworth,153,151,136,111,128,127,102,137,114,134,119,131 -E09000033,Westminster,112,103,96,64,101,94,89,84,75,98,118,102 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E13000002,Outer London,3851,3105,2885,2491,2757,2540,2321,2608,2492,2730,2834,2901 -E09000002,Barking and Dagenham,144,91,109,86,107,101,94,99,80,107,106,105 -E09000003,Barnet,254,214,248,183,184,186,154,156,158,221,177,223 -E09000004,Bexley,207,191,182,168,162,137,154,170,168,168,154,157 -E09000005,Brent,193,152,153,133,147,124,120,144,129,122,173,178 -E09000006,Bromley,319,262,211,211,192,165,183,199,207,204,214,221 -E09000008,Croydon,281,219,197,189,222,189,186,204,173,203,248,207 -E09000009,Ealing,209,160,171,107,173,175,139,147,117,173,150,162 -E09000010,Enfield,225,184,187,155,167,150,145,164,149,153,176,196 -E09000011,Greenwich,194,151,135,103,135,147,105,114,129,133,124,123 -E09000015,Harrow,156,140,124,117,113,107,114,146,125,113,123,123 -E09000016,Havering,324,234,195,152,213,184,168,180,189,218,207,210 -E09000017,Hillingdon,227,181,167,150,157,149,120,136,151,132,164,190 -E09000018,Hounslow,157,173,112,129,101,124,84,145,123,132,123,124 -E09000021,Kingston upon Thames,122,110,79,92,77,100,77,89,74,82,101,99 -E09000024,Merton,156,92,109,86,104,87,79,101,96,108,88,111 -E09000026,Redbridge,207,166,143,120,171,114,131,127,134,131,148,142 -E09000027,Richmond upon Thames,137,115,113,104,88,91,81,98,87,108,109,99 -E09000029,Sutton,163,129,127,95,132,105,96,97,109,113,128,128 -E09000031,Waltham Forest,176,141,123,111,112,105,91,92,94,109,121,103 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000008,SOUTH EAST,9045,7409,7406,5938,6825,6430,5836,6298,6128,6737,6866,6997 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000036,Bracknell Forest,73,73,71,38,58,64,47,59,62,68,54,65 -E06000043,Brighton and Hove,256,227,212,136,195,163,158,175,136,153,188,197 -E06000046,Isle of Wight,204,186,188,124,146,149,141,131,143,146,136,146 -E06000035,Medway,258,179,198,181,182,159,147,189,154,172,196,182 -E06000042,Milton Keynes,179,147,156,122,142,141,159,118,117,173,158,164 -E06000044,Portsmouth,185,163,183,121,162,143,132,142,132,122,147,134 -E06000038,Reading,122,106,108,89,113,98,85,82,95,96,84,88 -E06000039,Slough,78,88,57,58,69,54,63,62,61,69,68,69 -E06000045,Southampton,220,154,176,130,151,161,139,140,141,153,166,167 -E06000037,West Berkshire,124,92,118,84,114,89,89,90,92,115,97,114 -E06000040,Windsor and Maidenhead,149,112,89,86,109,92,94,97,109,110,107,108 -E06000041,Wokingham,120,108,129,78,76,90,75,78,85,92,97,100 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000002,Buckinghamshire,461,410,358,306,365,338,334,363,314,372,365,391 -E07000004,Aylesbury Vale,153,137,137,115,123,117,116,113,111,132,127,137 -E07000005,Chiltern,83,85,73,60,64,62,75,74,69,63,71,62 -E07000006,South Bucks,84,66,52,53,58,39,52,55,44,65,45,56 -E07000007,Wycombe,141,122,96,78,120,120,91,121,90,112,122,136 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000011,East Sussex,756,609,554,501,525,529,477,484,490,586,534,553 -E07000061,Eastbourne,151,134,118,106,104,102,98,102,90,114,91,110 -E07000062,Hastings,121,82,87,70,87,75,61,66,72,81,100,88 -E07000063,Lewes,118,93,77,82,106,91,84,81,76,115,93,84 -E07000064,Rother,176,125,130,98,106,118,95,92,101,121,118,112 -E07000065,Wealden,190,175,142,145,122,143,139,143,151,155,132,159 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000014,Hampshire,1377,1156,1193,916,1083,1037,917,1037,936,1070,1121,1149 -E07000084,Basingstoke and Deane,152,131,106,76,133,123,86,122,97,124,123,121 -E07000085,East Hampshire,134,98,106,89,88,88,93,85,86,96,106,100 -E07000086,Eastleigh,130,74,103,56,85,87,82,101,87,84,91,101 -E07000087,Fareham,112,97,117,91,91,100,73,107,81,101,113,97 -E07000088,Gosport,73,82,72,60,64,66,62,72,51,52,77,70 -E07000089,Hart,80,73,57,56,67,49,50,55,54,64,54,64 -E07000090,Havant,128,107,142,121,114,101,96,108,94,107,125,131 -E07000091,New Forest,238,190,198,171,190,181,156,157,166,210,203,215 -E07000092,Rushmoor,85,65,67,31,64,62,54,60,43,69,52,51 -E07000093,Test Valley,128,120,114,81,83,78,74,93,95,89,93,108 -E07000094,Winchester,117,119,111,84,104,102,91,77,82,74,84,91 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000016,Kent,1635,1323,1322,1173,1276,1151,1091,1144,1119,1234,1250,1216 -E07000105,Ashford,114,88,104,77,86,68,78,91,104,98,95,75 -E07000106,Canterbury,171,166,147,144,148,110,121,132,119,133,152,125 -E07000107,Dartford,101,81,84,61,80,54,64,59,76,74,68,82 -E07000108,Dover,175,119,117,89,112,129,91,90,98,127,105,95 -E07000109,Gravesham,122,83,84,72,68,74,55,79,67,84,63,90 -E07000110,Maidstone,166,156,134,117,129,108,120,114,116,113,132,119 -E07000111,Sevenoaks,131,81,94,85,116,80,88,80,76,86,88,80 -E07000112,Shepway,143,97,117,112,99,118,99,117,83,106,112,121 -E07000113,Swale,138,100,120,108,106,117,96,88,104,101,128,107 -E07000114,Thanet,161,181,142,144,140,133,128,141,136,133,132,133 -E07000115,Tonbridge and Malling,116,85,94,77,87,82,69,80,58,100,95,93 -E07000116,Tunbridge Wells,97,86,85,87,105,78,82,73,82,79,80,96 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000025,Oxfordshire,557,478,504,413,458,414,377,442,441,443,484,488 -E07000177,Cherwell,129,116,109,86,114,105,100,89,84,93,105,98 -E07000178,Oxford,91,85,94,68,67,71,67,87,76,89,83,79 -E07000179,South Oxfordshire,120,92,103,95,102,82,82,93,106,101,106,102 -E07000180,Vale of White Horse,109,90,100,71,79,64,69,83,81,82,101,105 -E07000181,West Oxfordshire,108,95,98,93,96,92,59,90,94,78,89,104 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000030,Surrey,1179,959,884,710,850,827,673,773,796,805,820,889 -E07000207,Elmbridge,116,86,92,80,96,83,79,72,102,96,100,101 -E07000208,Epsom and Ewell,62,57,53,41,56,35,43,39,52,39,44,50 -E07000209,Guildford,118,106,90,72,87,85,76,88,101,76,89,102 -E07000210,Mole Valley,96,81,61,73,61,84,50,71,50,77,57,80 -E07000211,Reigate and Banstead,147,133,122,99,114,115,86,116,105,108,118,130 -E07000212,Runnymede,97,72,69,59,54,58,65,67,61,52,45,58 -E07000213,Spelthorne,106,90,82,68,74,74,56,60,58,61,65,66 -E07000214,Surrey Heath,98,72,69,48,74,65,51,59,57,66,60,63 -E07000215,Tandridge,103,68,81,57,74,69,42,53,62,66,95,79 -E07000216,Waverley,153,115,102,62,91,81,84,95,87,106,88,100 -E07000217,Woking,83,79,63,51,69,78,41,53,61,58,59,60 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000032,West Sussex,1112,839,906,672,751,731,638,692,705,758,794,777 -E07000223,Adur,77,58,85,57,68,58,40,56,51,56,58,81 -E07000224,Arun,262,186,206,147,173,171,148,161,166,194,203,176 -E07000225,Chichester,170,126,135,130,120,122,100,104,104,122,119,132 -E07000226,Crawley,88,67,78,51,54,69,51,61,64,57,61,52 -E07000227,Horsham,168,101,132,101,109,101,89,99,119,98,122,103 -E07000228,Mid Sussex,174,149,132,102,110,106,104,98,104,104,104,111 -E07000229,Worthing,173,152,138,84,117,104,106,113,97,127,127,122 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000009,SOUTH WEST,5833,5165,5134,4092,4865,4650,4149,4455,4379,4671,4942,4772 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000022,Bath and North East Somerset,168,165,151,127,148,133,106,124,119,125,148,134 -E06000028,Bournemouth,227,165,155,158,159,161,143,167,160,178,170,160 -E06000023,"Bristol, City of",344,297,308,226,279,282,257,250,264,273,310,271 -E06000052,Cornwall,564,528,577,484,553,512,474,482,485,545,555,580 -E06000053,Isles of Scilly,3,1,2,6,3,5,0,2,3,0,1,0 -E06000024,North Somerset,237,208,202,194,179,204,178,170,192,179,215,200 -E06000026,Plymouth,269,195,228,194,228,201,192,193,211,224,224,223 -E06000029,Poole,187,175,135,90,145,135,136,131,130,151,138,154 -E06000025,South Gloucestershire,247,235,198,163,206,195,153,175,192,216,205,176 -E06000030,Swindon,172,167,184,135,153,135,132,151,136,137,149,157 -E06000027,Torbay,181,172,174,136,168,137,121,148,130,148,154,129 -E06000054,Wiltshire,475,420,440,335,391,418,335,372,389,387,376,429 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000008,Devon,891,814,825,617,763,712,661,696,650,712,754,750 -E07000040,East Devon,195,183,198,112,163,148,144,149,144,150,154,163 -E07000041,Exeter,87,109,93,74,91,93,102,92,73,84,97,92 -E07000042,Mid Devon,74,66,88,60,67,65,43,60,48,71,63,66 -E07000043,North Devon,110,100,104,92,100,83,85,92,77,94,96,108 -E07000044,South Hams,95,84,73,75,69,73,77,68,75,69,87,76 -E07000045,Teignbridge,165,144,124,110,150,116,110,118,134,120,135,127 -E07000046,Torridge,91,77,81,52,70,78,62,76,63,65,75,58 -E07000047,West Devon,74,51,64,42,53,56,38,41,36,59,47,60 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000009,Dorset,539,521,445,356,441,429,381,402,409,416,472,404 -E07000048,Christchurch,76,77,70,39,54,67,26,57,63,45,58,61 -E07000049,East Dorset,134,126,93,69,78,92,75,86,81,96,102,87 -E07000050,North Dorset,91,58,56,43,67,56,66,59,61,57,70,54 -E07000051,Purbeck,50,50,48,46,43,43,36,37,38,39,48,43 -E07000052,West Dorset,119,143,125,105,122,123,114,113,108,109,122,103 -E07000053,Weymouth and Portland,69,67,53,54,77,48,64,50,58,70,72,56 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000013,Gloucestershire,676,577,541,430,520,541,452,499,453,471,517,507 -E07000078,Cheltenham,117,105,91,81,94,92,90,89,74,100,88,100 -E07000079,Cotswold,100,89,75,60,79,69,68,73,75,63,78,70 -E07000080,Forest of Dean,102,95,83,64,75,96,55,92,65,75,64,71 -E07000081,Gloucester,134,110,93,75,94,112,81,93,85,73,91,101 -E07000082,Stroud,138,98,119,92,110,101,105,97,94,89,125,98 -E07000083,Tewkesbury,85,80,80,58,68,71,53,55,60,71,71,67 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000027,Somerset,653,525,569,441,529,450,428,493,456,509,554,498 -E07000187,Mendip,125,105,118,84,111,88,87,92,76,94,96,97 -E07000188,Sedgemoor,142,101,107,84,113,97,84,106,106,97,105,110 -E07000189,South Somerset,192,157,166,136,144,143,124,136,138,182,186,156 -E07000190,Taunton Deane,144,122,135,100,111,85,95,127,110,92,119,99 -E07000191,West Somerset,50,40,43,37,50,37,38,32,26,44,48,36 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W92000004,WALES,3591,2880,2983,2602,2800,2627,2374,2622,2467,2759,2786,2757 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W06000001,Isle of Anglesey,66,58,72,64,75,63,55,59,63,59,78,89 -W06000002,Gwynedd,134,109,112,114,107,101,131,103,95,114,113,118 -W06000003,Conwy,160,138,163,127,147,117,107,109,112,126,130,112 -W06000004,Denbighshire,131,110,112,110,107,84,84,93,77,99,98,115 -W06000005,Flintshire,155,144,108,113,115,120,93,113,107,135,152,128 -W06000006,Wrexham,143,114,125,103,126,104,122,111,109,138,123,92 -W06000023,Powys,198,147,158,112,147,128,100,122,102,132,129,120 -W06000008,Ceredigion,81,60,72,56,66,70,54,57,52,59,62,60 -W06000009,Pembrokeshire,160,142,137,124,117,122,104,116,100,135,124,120 -W06000010,Carmarthenshire,210,219,174,178,175,156,165,175,179,181,210,208 -W06000011,Swansea,276,243,239,210,244,233,196,204,202,212,197,199 -W06000012,Neath Port Talbot,192,140,125,131,155,142,124,147,118,118,119,137 -W06000013,Bridgend,163,127,161,143,127,127,111,125,126,124,149,141 -W06000014,Vale of Glamorgan,136,114,99,86,102,112,97,117,106,112,123,89 -W06000015,Cardiff,337,229,269,209,213,194,202,204,236,235,252,231 -W06000016,Rhondda Cynon Taff,257,200,216,201,215,186,167,201,188,208,197,226 -W06000024,Merthyr Tydfil,77,61,56,60,50,47,45,46,43,56,45,50 -W06000018,Caerphilly,226,170,167,145,154,121,117,158,125,138,155,150 -W06000019,Blaenau Gwent,97,55,72,64,68,76,57,71,74,78,67,78 -W06000020,Torfaen,124,98,104,78,90,88,57,81,84,80,79,91 -W06000021,Monmouthshire,94,91,98,76,91,107,64,82,75,78,79,90 -W06000022,Newport,174,111,144,98,109,129,122,128,94,142,105,113 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -J99000001,Non-residents of England & Wales,102,71,87,77,96,101,111,111,93,93,104,77 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Footnotes:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -1 The deaths of those whose usual residence is outside England and Wales are included in counts for 'England Wales and elsewhere' but excluded from any sub-division of England and Wales.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Source: Office for National Statistics,NA,Released:,24 July 2018,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA diff --git a/working_files/Monthly/Monthly2017Mortality-Information.csv b/working_files/Monthly/Monthly2017Mortality-Information.csv deleted file mode 100644 index 4e6bd16..0000000 --- a/working_files/Monthly/Monthly2017Mortality-Information.csv +++ /dev/null @@ -1,41 +0,0 @@ -Contents -Information on monthly deaths -NA -Things you need to know -NA -"Monthly death figures provide counts of the number of deaths registered in a calendar month, by area of usual residence in England and Wales for 2017." -NA -"These figures are presented by regions (within England), unitary authorities, counties, districts and London boroughs." -NA -Notes -NA -Deaths occurring in England and Wales are registered on the General Register Office's Registration Online (RON) system. -Daily extracts of death registration records from RON are processed on our database systems. -NA -Weekly deaths counts cannot be summed to match the counts for monthly deaths as some weeks may span more than 1 month. -NA -Bank Holidays could affect the number of registrations made within those months. -NA -Annual figures are based on boundaries as of February 2018. -NA -Symbols -NA -In our mortality outputs published symbols used are: -0 denotes nil -Further information on the use of symbols is available on the Government Statistical Service (GSS) website. -NA -The ONS policy on protecting confidentiality in birth and death statistics is available on our website. -NA -Further information and enquiries -NA -Special extracts and tabulations of mortality data for England and Wales are available to order for a charge (subject to legal -"frameworks, disclosure control, resources and the ONS charging policy, where appropriate). Enquiries should be made to" -Vital Statistics Outputs Branch (vsob@ons.gov.uk or telephone: +44 (0)1329 444110). -User requested data will be published onto our website. -NA -"Access to microdata and disclosive data, that is, data which have the potential to identify an individual record, requires the approval of the ONS Microdata Release Procedure (MRP) before the data can be provided." -NA -Feedback -"We welcome feedback from users, please contact Vital Statistics Outputs Branch" -email: vsob@ons.gov.uk -telephone: +44 (0)1329 444110 diff --git a/working_files/Monthly/Monthly2017Mortality-Related publications.csv b/working_files/Monthly/Monthly2017Mortality-Related publications.csv deleted file mode 100644 index e81e677..0000000 --- a/working_files/Monthly/Monthly2017Mortality-Related publications.csv +++ /dev/null @@ -1,39 +0,0 @@ -Contents -Related publications -NA -User guide to mortality statistics -Supporting information for these tables can be found in the User guide to mortality statistics -NA -Quality and Methodology Information -"A Quality and Methodology Information document contains important information on: -• the strengths and limitations of the data -• the quality of the output: including the accuracy of the data, how it compares with related data -• uses and users -• how the output was created -" -NA -Further mortality statistics based on death registrations are available on the ONS website: -NA -"Death summary tables, England and Wales" -The summary tables provide key death registration statistics for the reference year. -NA -Deaths registered in England and Wales (Series DR) -Series DR (Mortality Statistics: Deaths Registered in England and Wales) provides detailed death registration statistics for the reference year. This includes numbers of deaths by detailed underlying cause by age-sex group defined by the different chapters of the Tenth Revision of the International Classification of Diseases and Related Health Problems (ICD-10). -NA -"Vital statistics: Population and health reference tables, United Kingdom and constituent countries" -"These tables provide annual data for a selection of key statistics under the following themes: population, demography and health. Figures for the latest years may be provisional, these will be updated to final figures when data is available." -NA -Mortality Statistics: Deaths registered in England and Wales by area of usual residence -Presents data on death registrations in the United Kingdom by area of usual residence. The release contains a summary table providing key mortality measures (numbers and rates including age standardised mortality rates) for the United Kingdom and its constituent countries and a table providing numbers of deaths in England and Wales by age and sex. -NA -"Weekly provisional figures on deaths registered, England and Wales" -Weekly death figures provide provisional counts of the number of deaths registered in England and Wales in the latest eight weeks for which data are available. -NA -20th Century Mortality Files -"The 20th Century mortality files are a record of mortality in England & Wales from 1901 to 2000. The files consist of an aggregated database of deaths by age group, sex, year and underlying cause, and include populations for England & Wales." -NA -21st Century Mortality Files -"The 21st Century Mortality Files are a record of mortality in England and Wales from 2001 onwards. They are designed to complement the Twentieth Century Mortality files. The files consist of an aggregated database of deaths by age group, sex, year and underlying cause, and include populations for England and Wales." -NA -Explorable datasets for mortality statistics in England and Wales -"This dataset provides mortality statistics in England and Wales, broken down by calendar year of registration, age, sex, underlying cause of death and other selected information collected at the time of registration." diff --git a/working_files/Monthly/Monthly2017Mortality-Terms and conditions.csv b/working_files/Monthly/Monthly2017Mortality-Terms and conditions.csv deleted file mode 100644 index 8231d17..0000000 --- a/working_files/Monthly/Monthly2017Mortality-Terms and conditions.csv +++ /dev/null @@ -1,33 +0,0 @@ -Contents -Terms and conditions -NA -A National Statistics publication -NA -National Statistics are produced to high professional standards set out in the Code of Practice for Official Statistics. They are produced free from any political interference. -NA -"The UK Statistics Authority has designated these statistics as National Statistics, in accordance with the Statistics and Registration Service Act 2007 and signifying compliance with the Code of Practice for Official Statistics." -Designation can be broadly interpreted to mean that the statistics: -• meet identified user needs -• are well explained and readily accessible -• are produced according to sound methods -• are managed impartially and objectively in the public interest -NA -Once statistics have been designated as National Statistics it is a statutory requirement that the Code of Practice shall continue to be observed. -NA -About us -"We are the executive office of the UK Statistics Authority, a non-ministerial department which reports directly to Parliament and the UK government’s single largest statistical producer. We compile information about the UK’s society and economy, and provide the evidence-base for policy and decision-making, the allocation of resources, and public accountability." -NA -NA -Copyright and reproduction -NA -© Crown copyright 2018 -"You may re-use this publication (not including logos) free of charge in any format or medium, under the terms of the Open Government Licence." -Users should include a source accreditation to ONS - Source: Office for National Statistics licensed under the Open Government Licence. -NA -Visit the Open Government Licence -"or write to the Information Policy Team, The National Archives, Kew, Richmond, Surrey, TW9 4DU;" -or email: psi@nationalarchives.gov.uk -NA -Where we have identified any third party copyright information you will need to obtain permission from the copyright holders concerned. -NA -This publication is also available on our website. diff --git a/working_files/Monthly/Monthly2017Mortality.xls b/working_files/Monthly/Monthly2017Mortality.xls deleted file mode 100644 index 5a4d33b..0000000 Binary files a/working_files/Monthly/Monthly2017Mortality.xls and /dev/null differ diff --git a/working_files/Monthly/Monthly2018Mortality-Contents.csv b/working_files/Monthly/Monthly2018Mortality-Contents.csv deleted file mode 100644 index 2f47e19..0000000 --- a/working_files/Monthly/Monthly2018Mortality-Contents.csv +++ /dev/null @@ -1,10 +0,0 @@ -Contents,Monthly figures on deaths registered in England and Wales -NA,NA -NA,NA -Information,Information on monthly deaths -NA,NA -Terms and conditions,Terms and conditions -NA,NA -Figures for 2018,"Deaths (numbers): by region, 2018 registrations, England and Wales" -NA,NA -Related publications,Provides links to further mortality statistics based on death registrations diff --git a/working_files/Monthly/Monthly2018Mortality-Figures for 2018.csv b/working_files/Monthly/Monthly2018Mortality-Figures for 2018.csv deleted file mode 100644 index 9a3cc97..0000000 --- a/working_files/Monthly/Monthly2018Mortality-Figures for 2018.csv +++ /dev/null @@ -1,455 +0,0 @@ -Contents,...2,...3,...4,...5,...6,...7,...8,...9,...10,...11,...12,...13,...14 -"Monthly figures on deaths registered by area of usual residence, 2018",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,England and Wales -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Area of usual residence,NA,Jan-18,Feb-18,Mar-18,Apr-18,May-18,Jun-18,Jul-18,Aug-18,Sep-18,Oct-18,Nov-18,Dec-18 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"K04000001, J99000001","ENGLAND, WALES AND ELSEWHERE 1",64154,49177,51229,46469,42784,39767,40723,40192,37137,44440,43978,41539 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -K04000001,ENGLAND AND WALES,64020,49087,51131,46383,42685,39679,40621,40071,37013,44311,43834,41430 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E92000001,ENGLAND,60075,45918,47726,43478,39951,37213,38059,37610,34682,41466,40971,38710 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000001,NORTH EAST,3502,2578,2586,2355,2276,2086,2125,2057,1961,2365,2221,2319 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000047,County Durham,666,501,534,501,471,413,445,404,357,484,495,444 -E06000005,Darlington,127,125,98,98,104,76,77,84,79,109,84,100 -E06000001,Hartlepool,126,89,97,97,77,65,64,61,76,71,94,97 -E06000002,Middlesbrough,204,117,112,132,129,106,96,115,103,111,108,121 -E06000057,Northumberland,483,326,352,291,274,295,290,259,263,293,307,297 -E06000003,Redcar and Cleveland,225,152,135,114,122,116,113,108,113,154,113,129 -E06000004,Stockton-on-Tees,256,171,189,142,146,149,142,144,128,179,152,174 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000007,Tyne and Wear (Met County),1415,1097,1069,980,953,866,898,882,842,964,868,957 -E08000037,Gateshead,256,202,208,201,174,154,166,162,148,190,160,176 -E08000021,Newcastle upon Tyne,280,247,216,213,231,206,210,203,174,198,167,198 -E08000022,North Tyneside,272,204,201,198,166,139,175,155,167,176,168,172 -E08000023,South Tyneside,221,169,174,152,147,140,144,140,121,154,133,156 -E08000024,Sunderland,386,275,270,216,235,227,203,222,232,246,240,255 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000002,NORTH WEST,8624,6555,6817,6195,5745,5190,5494,5301,4873,5892,6013,5579 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000008,Blackburn with Darwen,146,123,106,104,108,89,105,85,96,96,100,106 -E06000009,Blackpool,238,180,180,164,127,147,142,139,117,161,167,153 -E06000049,Cheshire East,522,370,438,323,322,244,318,284,299,314,352,298 -E06000050,Cheshire West and Chester,376,283,346,272,273,250,286,269,260,295,297,244 -E06000006,Halton,170,106,114,93,102,93,83,111,91,93,115,96 -E06000007,Warrington,206,163,206,181,172,153,151,132,124,155,175,165 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000006,Cumbria,666,526,511,455,466,428,409,388,387,465,462,435 -E07000026,Allerdale,140,85,90,90,95,91,76,75,88,80,95,80 -E07000027,Barrow-in-Furness,111,69,79,64,62,51,54,50,61,67,60,54 -E07000028,Carlisle,127,132,94,93,104,91,98,85,80,106,104,91 -E07000029,Copeland,84,73,70,60,82,56,60,65,49,69,55,58 -E07000030,Eden,64,46,55,35,39,39,28,29,37,38,51,49 -E07000031,South Lakeland,140,121,123,113,84,100,93,84,72,105,97,103 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000001,Greater Manchester (Met County),2889,2235,2288,2129,1967,1800,1860,1858,1638,2019,1976,1868 -E08000001,Bolton,288,246,269,220,180,204,205,199,197,213,241,187 -E08000002,Bury,222,152,163,154,130,125,140,119,136,142,126,141 -E08000003,Manchester,370,342,307,298,261,251,249,267,220,288,270,255 -E08000004,Oldham,251,171,197,172,165,140,155,160,138,174,181,168 -E08000005,Rochdale,249,192,205,161,169,128,151,146,140,174,151,144 -E08000006,Salford,284,211,205,189,174,137,141,170,149,209,160,184 -E08000007,Stockport,315,238,267,265,218,211,212,210,191,221,239,221 -E08000008,Tameside,285,231,210,217,216,190,211,184,150,196,183,170 -E08000009,Trafford,218,176,177,171,161,151,160,143,123,149,164,138 -E08000010,Wigan,407,276,288,282,293,263,236,260,194,253,261,260 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000017,Lancashire,1554,1227,1255,1139,986,897,966,928,859,1045,1090,984 -E07000117,Burnley,113,72,93,86,95,74,73,67,62,64,76,79 -E07000118,Chorley,124,113,100,111,102,62,80,75,72,96,110,81 -E07000119,Fylde,138,128,91,92,87,81,81,91,65,86,78,83 -E07000120,Hyndburn,101,81,67,76,71,75,72,73,58,75,75,49 -E07000121,Lancaster,157,120,165,132,111,100,105,103,105,136,144,121 -E07000122,Pendle,108,84,82,77,56,71,69,62,55,78,79,79 -E07000123,Preston,161,128,129,109,88,79,93,89,70,96,90,106 -E07000124,Ribble Valley,73,47,71,55,41,49,46,43,60,51,44,48 -E07000125,Rossendale,87,69,64,62,51,42,58,50,49,63,59,54 -E07000126,South Ribble,125,107,103,106,68,69,65,80,78,79,104,72 -E07000127,West Lancashire,163,114,142,108,103,99,94,82,91,97,91,100 -E07000128,Wyre,204,164,148,125,113,96,130,113,94,124,140,112 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000002,Merseyside (Met County),1857,1342,1373,1335,1222,1089,1174,1107,1002,1249,1279,1230 -E08000011,Knowsley,210,169,135,119,128,121,127,122,109,124,120,125 -E08000012,Liverpool,567,417,398,381,345,329,352,342,303,360,387,421 -E08000014,Sefton,419,279,315,299,274,210,251,230,223,294,253,254 -E08000013,St. Helens,215,165,184,174,173,150,153,152,130,145,153,164 -E08000015,Wirral,446,312,341,362,302,279,291,261,237,326,366,266 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000003,YORKSHIRE AND THE HUMBER,6338,4827,4909,4510,4009,3946,4007,3939,3645,4419,4345,4184 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000011,East Riding of Yorkshire,518,346,403,330,293,289,292,284,250,327,299,291 -E06000010,"Kingston upon Hull, City of",325,212,215,240,179,166,200,190,171,201,212,195 -E06000012,North East Lincolnshire,199,136,154,150,138,131,131,119,121,126,143,150 -E06000013,North Lincolnshire,223,155,193,133,160,117,160,117,136,159,140,139 -E06000014,York,228,193,184,139,132,149,177,115,129,154,151,151 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000023,North Yorkshire,780,632,641,567,482,507,500,467,450,556,548,523 -E07000163,Craven,75,55,64,64,36,47,56,41,43,60,46,52 -E07000164,Hambleton,108,77,77,83,78,74,79,77,71,68,67,84 -E07000165,Harrogate,207,178,161,146,117,134,109,129,115,151,154,124 -E07000166,Richmondshire,62,50,59,30,35,30,33,39,42,42,36,42 -E07000167,Ryedale,73,54,66,47,42,33,47,35,31,54,53,33 -E07000168,Scarborough,159,133,137,134,102,122,123,85,87,118,115,121 -E07000169,Selby,96,85,77,63,72,67,53,61,61,63,77,67 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000003,South Yorkshire (Met County),1591,1210,1248,1191,994,1052,1030,1075,932,1124,1125,1096 -E08000016,Barnsley,301,257,237,220,189,231,180,216,154,217,218,206 -E08000017,Doncaster,391,307,274,284,215,229,254,242,218,278,265,243 -E08000018,Rotherham,276,217,268,227,209,218,210,221,206,207,226,233 -E08000019,Sheffield,623,429,469,460,381,374,386,396,354,422,416,414 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000006,West Yorkshire (Met County),2474,1943,1871,1760,1631,1535,1517,1572,1456,1772,1727,1639 -E08000032,Bradford,534,423,394,374,351,336,347,352,298,392,384,349 -E08000033,Calderdale,263,190,176,168,155,128,150,139,145,163,177,148 -E08000034,Kirklees,501,327,352,332,331,305,272,284,279,329,349,310 -E08000035,Leeds,816,656,626,610,529,518,495,521,478,575,544,552 -E08000036,Wakefield,360,347,323,276,265,248,253,276,256,313,273,280 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000004,EAST MIDLANDS,5400,4191,4412,4016,3764,3446,3388,3425,3170,3811,3691,3521 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000015,Derby,273,203,244,224,217,171,177,190,168,204,171,199 -E06000016,Leicester,268,227,225,215,190,208,206,184,183,215,200,210 -E06000018,Nottingham,270,226,221,214,189,176,192,139,159,182,175,169 -E06000017,Rutland,53,39,46,27,32,32,22,41,26,37,35,26 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000007,Derbyshire,994,774,772,721,692,613,606,596,581,734,684,604 -E07000032,Amber Valley,144,119,124,96,108,116,105,104,101,108,108,99 -E07000033,Bolsover,81,105,77,68,77,65,72,62,59,69,53,54 -E07000034,Chesterfield,147,102,117,112,108,102,86,71,81,111,95,94 -E07000035,Derbyshire Dales,101,88,64,75,59,49,59,59,52,78,62,51 -E07000036,Erewash,157,97,103,111,90,86,74,77,93,102,99,83 -E07000037,High Peak,101,90,82,81,69,62,62,68,66,86,73,71 -E07000038,North East Derbyshire,157,96,116,106,96,84,88,84,64,109,113,91 -E07000039,South Derbyshire,106,77,89,72,85,49,60,71,65,71,81,61 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000018,Leicestershire,726,561,615,570,491,511,462,495,450,511,513,496 -E07000129,Blaby,94,83,85,96,65,58,57,69,63,52,70,78 -E07000130,Charnwood,167,136,146,142,131,126,118,124,106,141,103,129 -E07000131,Harborough,103,76,70,82,53,76,57,74,60,75,80,61 -E07000132,Hinckley and Bosworth,135,102,101,95,80,84,89,85,77,75,85,86 -E07000133,Melton,56,43,56,50,39,42,32,43,33,42,42,37 -E07000134,North West Leicestershire,113,71,101,66,73,81,66,54,66,74,79,69 -E07000135,Oadby and Wigston,58,50,56,39,50,44,43,46,45,52,54,36 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000019,Lincolnshire,1021,818,850,733,708,636,644,658,571,701,712,698 -E07000136,Boston,100,83,79,48,67,56,43,58,50,71,66,67 -E07000137,East Lindsey,225,181,192,178,161,150,171,150,138,183,168,157 -E07000138,Lincoln,93,93,96,65,65,79,86,63,69,70,73,83 -E07000139,North Kesteven,162,104,135,123,103,90,71,105,80,106,105,109 -E07000140,South Holland,129,88,113,89,90,79,94,96,68,84,97,80 -E07000141,South Kesteven,173,165,139,126,130,106,101,102,97,99,127,114 -E07000142,West Lindsey,139,104,96,104,92,76,78,84,69,88,76,88 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000021,Northamptonshire,791,576,621,595,567,482,473,483,461,509,503,481 -E07000150,Corby,73,47,52,54,52,36,48,36,52,44,40,43 -E07000151,Daventry,98,74,78,62,59,55,53,54,49,62,53,55 -E07000152,East Northamptonshire,105,76,95,87,71,65,65,72,60,84,71,64 -E07000153,Kettering,110,81,77,76,77,68,77,74,71,67,71,72 -E07000154,Northampton,231,158,169,177,170,137,125,122,132,134,136,118 -E07000155,South Northamptonshire,93,80,71,73,71,66,46,62,53,52,66,67 -E07000156,Wellingborough,81,60,79,66,67,55,59,63,44,66,66,62 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000024,Nottinghamshire,1004,767,818,717,678,617,606,639,571,718,698,638 -E07000170,Ashfield,149,119,110,102,108,98,105,102,88,103,90,102 -E07000171,Bassetlaw,145,105,118,114,95,91,110,97,85,97,91,101 -E07000172,Broxtowe,151,119,112,98,104,82,81,84,81,117,109,76 -E07000173,Gedling,146,119,125,109,102,76,83,102,90,96,101,91 -E07000174,Mansfield,135,95,121,94,89,87,80,71,66,94,99,82 -E07000175,Newark and Sherwood,154,110,129,118,91,101,74,94,93,116,109,93 -E07000176,Rushcliffe,124,100,103,82,89,82,73,89,68,95,99,93 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000005,WEST MIDLANDS,6611,5299,5498,4633,4471,4170,4218,4178,3878,4612,4539,4196 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000019,"Herefordshire, County of",286,202,218,174,166,145,140,160,153,178,175,174 -E06000051,Shropshire,399,313,342,306,271,273,269,248,236,295,309,301 -E06000021,Stoke-on-Trent,321,279,282,217,221,211,227,215,196,240,205,185 -E06000020,Telford and Wrekin,188,114,151,140,112,112,141,119,102,124,133,124 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000028,Staffordshire,1085,920,850,713,688,689,650,627,608,715,743,603 -E07000192,Cannock Chase,128,87,71,92,70,73,77,77,74,94,72,73 -E07000193,East Staffordshire,140,114,108,75,102,78,87,79,77,85,97,69 -E07000194,Lichfield,126,129,118,79,78,92,81,75,66,93,91,70 -E07000195,Newcastle-under-Lyme,157,140,138,119,98,125,90,87,92,97,118,92 -E07000196,South Staffordshire,143,147,124,101,84,93,88,83,85,88,98,82 -E07000197,Stafford,184,137,134,110,109,99,93,98,84,97,115,87 -E07000198,Staffordshire Moorlands,142,110,97,91,87,77,84,82,83,99,80,83 -E07000199,Tamworth,65,56,60,46,60,52,50,46,47,62,72,47 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000031,Warwickshire,665,529,537,499,511,424,426,437,370,479,474,419 -E07000218,North Warwickshire,91,71,68,72,49,57,47,58,52,74,60,49 -E07000219,Nuneaton and Bedworth,160,123,124,105,120,113,105,101,87,104,118,91 -E07000220,Rugby,118,96,85,87,73,68,85,75,69,72,79,70 -E07000221,Stratford-on-Avon,164,134,143,127,131,99,96,119,87,111,114,113 -E07000222,Warwick,132,105,117,108,138,87,93,84,75,118,103,96 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000005,West Midlands (Met County),2949,2354,2523,2045,1999,1884,1879,1909,1780,2072,2000,1930 -E08000025,Birmingham,916,781,862,719,691,615,677,616,616,694,703,647 -E08000026,Coventry,354,290,260,215,207,197,201,192,198,240,205,220 -E08000027,Dudley,386,318,322,278,268,259,263,263,253,261,247,280 -E08000028,Sandwell,360,288,276,223,257,254,214,242,220,250,229,237 -E08000029,Solihull,247,193,212,195,139,161,147,150,146,166,179,132 -E08000030,Walsall,347,243,298,211,231,208,186,217,170,204,206,195 -E08000031,Wolverhampton,339,241,293,204,206,190,191,229,177,257,231,219 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000034,Worcestershire,718,588,595,539,503,432,486,463,433,509,500,460 -E07000234,Bromsgrove,123,107,95,90,73,72,77,88,83,94,83,79 -E07000235,Malvern Hills,111,95,103,80,82,59,79,63,71,104,93,65 -E07000236,Redditch,73,65,64,69,67,56,60,51,42,42,66,56 -E07000237,Worcester,119,93,96,76,76,65,62,76,57,62,72,62 -E07000238,Wychavon,143,120,122,109,100,93,116,89,99,126,102,109 -E07000239,Wyre Forest,149,108,115,115,105,87,92,96,81,81,84,89 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000006,EAST,7110,5256,5470,5281,4664,4351,4352,4445,3942,4772,4738,4307 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000055,Bedford,176,126,144,130,131,107,116,108,104,115,131,107 -E06000056,Central Bedfordshire,255,217,215,188,184,178,185,181,130,187,199,164 -E06000032,Luton,177,143,146,143,134,111,106,116,85,105,121,118 -E06000031,Peterborough,173,140,155,135,139,126,121,131,109,142,133,128 -E06000033,Southend-on-Sea,251,187,184,211,168,172,129,136,148,154,147,133 -E06000034,Thurrock,155,97,118,116,108,94,101,77,79,105,104,88 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000003,Cambridgeshire,602,496,578,490,424,398,418,424,392,433,450,394 -E07000008,Cambridge,94,76,81,67,59,69,73,75,71,50,61,63 -E07000009,East Cambridgeshire,85,77,73,80,75,57,51,39,51,58,74,56 -E07000010,Fenland,106,100,126,113,89,69,101,91,95,106,101,84 -E07000011,Huntingdonshire,187,141,182,133,110,114,107,115,102,123,120,109 -E07000012,South Cambridgeshire,130,102,116,97,91,89,86,104,73,96,94,82 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000012,Essex,1841,1286,1260,1407,1258,1072,1104,1075,914,1122,1227,1069 -E07000066,Basildon,198,152,148,169,154,117,121,114,111,116,151,108 -E07000067,Braintree,231,114,119,132,122,118,127,133,81,107,126,110 -E07000068,Brentwood,87,75,72,73,62,54,59,51,35,60,62,61 -E07000069,Castle Point,134,97,92,101,75,67,79,83,65,89,103,78 -E07000070,Chelmsford,167,124,126,137,124,107,117,108,87,130,142,125 -E07000071,Colchester,217,108,121,151,124,143,117,115,128,117,132,127 -E07000072,Epping Forest,142,137,117,138,113,74,99,92,80,94,92,88 -E07000073,Harlow,79,71,72,79,69,48,65,54,52,65,64,53 -E07000074,Maldon,93,67,74,66,64,42,39,48,42,52,64,56 -E07000075,Rochford,111,89,71,97,68,69,61,61,60,71,56,65 -E07000076,Tendring,286,184,187,218,222,176,157,155,132,150,179,148 -E07000077,Uttlesford,96,68,61,46,61,57,63,61,41,71,56,50 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000015,Hertfordshire,1180,875,934,882,755,700,796,741,679,849,808,774 -E07000095,Broxbourne,91,77,82,92,60,47,60,56,64,74,87,80 -E07000096,Dacorum,164,111,116,98,103,89,96,108,83,109,105,103 -E07000242,East Hertfordshire,129,97,103,115,78,103,102,91,88,96,103,106 -E07000098,Hertsmere,104,81,105,71,87,71,78,73,65,95,64,80 -E07000099,North Hertfordshire,167,116,114,122,98,88,88,93,86,110,97,96 -E07000240,St Albans,131,82,113,97,84,79,86,85,61,88,89,81 -E07000243,Stevege,98,69,67,57,51,49,56,53,69,62,57,51 -E07000102,Three Rivers,99,80,79,54,66,60,69,60,59,78,66,72 -E07000103,Watford,80,56,67,81,47,42,56,52,48,61,67,48 -E07000241,Welwyn Hatfield,117,106,88,95,81,72,105,70,56,76,73,57 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000020,Norfolk,1298,927,969,915,750,792,710,805,738,866,777,726 -E07000143,Breckland,218,165,155,167,126,122,113,128,114,130,153,116 -E07000144,Broadland,201,125,149,135,110,114,107,125,86,125,116,102 -E07000145,Great Yarmouth,149,118,113,108,93,96,94,102,90,108,103,75 -E07000146,King’s Lynn and West Norfolk,247,186,142,160,154,152,128,146,151,144,133,132 -E07000147,North Norfolk,183,129,144,121,88,108,97,112,103,127,105,111 -E07000148,Norwich,140,90,128,99,94,89,79,82,83,105,79,88 -E07000149,South Norfolk,160,114,138,125,85,111,92,110,111,127,88,102 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000029,Suffolk,1002,762,767,664,613,601,566,651,564,694,641,606 -E07000200,Babergh,117,93,85,87,80,59,77,75,67,89,57,65 -E07000244,East Suffolk,403,309,285,258,241,242,208,242,222,273,241,241 -E07000202,Ipswich,140,118,129,97,97,94,82,100,97,95,110,92 -E07000203,Mid Suffolk,126,96,96,92,60,83,75,96,69,100,79,94 -E07000245,West Suffolk,216,146,172,130,135,123,124,138,109,137,154,114 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000007,LONDON,5704,4558,4686,4329,4018,3664,4007,3857,3477,4163,4042,3891 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E13000001,Inner London,1749,1408,1476,1346,1286,1164,1197,1212,1147,1339,1305,1195 -E09000007,Camden,118,104,105,103,92,93,97,76,94,91,96,80 -E09000001,City of London,6,1,4,3,2,2,3,1,4,3,5,3 -E09000012,Hackney,108,92,98,79,73,63,76,79,76,95,98,103 -E09000013,Hammersmith and Fulham,100,101,92,82,77,82,77,69,80,91,73,71 -E09000014,Haringey,119,98,109,120,120,86,86,105,91,94,98,98 -E09000019,Islington,134,106,111,100,84,90,89,81,82,91,99,83 -E09000020,Kensington and Chelsea,80,67,62,83,66,58,68,65,55,73,59,55 -E09000022,Lambeth,178,125,145,129,99,93,117,113,111,112,121,118 -E09000023,Lewisham,165,158,154,153,142,121,96,108,99,139,132,132 -E09000025,Newham,169,127,144,105,104,100,76,112,77,130,112,102 -E09000028,Southwark,135,118,119,97,109,106,120,109,95,137,106,97 -E09000030,Tower Hamlets,118,82,102,97,101,103,85,96,88,81,88,91 -E09000032,Wandsworth,199,136,133,99,131,97,111,120,113,113,118,95 -E09000033,Westminster,120,93,98,96,86,70,96,78,82,89,100,67 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E13000002,Outer London,3955,3150,3210,2983,2732,2500,2810,2645,2330,2824,2737,2696 -E09000002,Barking and Dagenham,147,114,115,108,89,105,96,107,89,95,94,104 -E09000003,Barnet,286,220,222,221,169,158,201,169,186,195,207,200 -E09000004,Bexley,258,190,195,193,180,157,163,178,132,175,163,166 -E09000005,Brent,190,165,164,143,142,102,157,148,115,144,151,132 -E09000006,Bromley,327,275,265,240,221,180,220,215,192,212,208,193 -E09000008,Croydon,281,247,246,211,191,188,216,217,175,237,191,206 -E09000009,Ealing,222,166,167,199,142,172,171,157,158,162,169,172 -E09000010,Enfield,223,185,193,167,160,139,175,162,126,163,196,170 -E09000011,Greenwich,214,141,134,133,119,116,110,96,93,140,133,113 -E09000015,Harrow,189,119,136,133,121,123,122,108,103,121,115,119 -E09000016,Havering,272,222,226,209,194,164,192,161,146,195,178,180 -E09000017,Hillingdon,249,200,206,192,158,167,177,166,151,173,184,162 -E09000018,Hounslow,156,127,145,121,137,125,144,134,120,123,124,137 -E09000021,Kingston upon Thames,125,104,104,107,88,93,79,86,77,93,85,77 -E09000024,Merton,162,126,121,108,95,93,106,95,79,92,92,95 -E09000026,Redbridge,193,161,171,148,151,118,134,118,116,163,128,139 -E09000027,Richmond upon Thames,142,104,102,89,112,88,111,98,95,88,84,94 -E09000029,Sutton,171,154,166,144,136,105,126,120,97,124,124,119 -E09000031,Waltham Forest,148,130,132,117,127,107,110,110,80,129,111,118 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000008,SOUTH EAST,10007,7325,7796,7144,6505,6019,6158,6191,5787,6704,6691,6296 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000036,Bracknell Forest,78,69,74,57,54,45,66,65,51,66,53,50 -E06000043,Brighton and Hove,261,215,220,178,182,148,151,164,153,171,206,182 -E06000046,Isle of Wight,216,147,179,146,172,119,141,134,119,148,144,152 -E06000035,Medway,284,205,170,202,183,193,193,188,166,186,177,182 -E06000042,Milton Keynes,190,140,166,170,157,148,141,145,132,153,130,161 -E06000044,Portsmouth,233,150,160,134,138,136,142,133,125,153,124,137 -E06000038,Reading,92,94,102,99,77,86,81,80,71,87,94,82 -E06000039,Slough,85,78,82,72,75,63,70,61,55,75,58,73 -E06000045,Southampton,218,167,175,180,165,120,132,144,135,153,175,150 -E06000037,West Berkshire,134,109,103,107,92,79,95,86,70,88,96,109 -E06000040,Windsor and Maidenhead,135,107,126,107,93,79,104,99,100,110,119,100 -E06000041,Wokingham,138,107,109,107,86,81,73,81,78,100,101,95 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000002,Buckinghamshire,537,415,378,373,365,313,308,332,313,359,363,318 -E07000004,Aylesbury Vale,175,152,129,117,126,113,88,125,104,130,123,98 -E07000005,Chiltern,107,72,72,87,76,48,67,47,75,80,64,57 -E07000006,South Bucks,81,61,50,56,55,59,52,50,55,44,59,52 -E07000007,Wycombe,174,130,127,113,108,93,101,110,79,105,117,111 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000011,East Sussex,805,601,651,598,566,462,489,476,486,554,507,488 -E07000061,Eastbourne,196,128,138,93,117,109,91,94,109,108,98,98 -E07000062,Hastings,123,78,82,119,77,83,69,63,69,91,81,78 -E07000063,Lewes,134,103,112,104,100,74,88,103,76,97,77,82 -E07000064,Rother,151,125,128,117,108,72,101,97,102,118,114,92 -E07000065,Wealden,201,167,191,165,164,124,140,119,130,140,137,138 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000014,Hampshire,1617,1138,1270,1087,1028,989,1008,968,869,1048,1130,1009 -E07000084,Basingstoke and Deane,182,111,155,118,107,111,106,101,104,106,122,115 -E07000085,East Hampshire,159,105,129,104,99,99,90,96,89,92,108,104 -E07000086,Eastleigh,134,78,107,88,85,87,89,72,69,104,88,87 -E07000087,Fareham,140,79,134,102,94,84,109,94,71,95,105,100 -E07000088,Gosport,113,87,80,77,62,74,65,56,61,84,76,66 -E07000089,Hart,103,68,62,60,64,47,58,56,56,54,72,61 -E07000090,Havant,176,126,121,111,110,99,107,110,87,90,112,89 -E07000091,New Forest,262,210,190,167,188,172,166,165,131,171,195,152 -E07000092,Rushmoor,76,68,77,65,47,51,56,46,41,70,65,47 -E07000093,Test Valley,125,111,96,94,87,72,95,87,83,107,90,92 -E07000094,Winchester,147,95,119,101,85,93,67,85,77,75,97,96 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000016,Kent,1923,1395,1409,1308,1181,1180,1188,1210,1114,1285,1175,1139 -E07000105,Ashford,144,92,107,89,94,84,85,109,81,106,99,89 -E07000106,Canterbury,219,174,138,153,131,123,133,108,118,131,125,131 -E07000107,Dartford,104,83,78,84,78,80,60,77,70,67,73,59 -E07000108,Dover,162,99,130,104,94,103,106,99,107,108,109,97 -E07000112,Folkestone and Hythe,192,119,121,105,88,95,104,103,90,117,84,101 -E07000109,Gravesham,93,88,84,88,66,72,86,75,61,89,72,67 -E07000110,Maidstone,209,135,165,131,126,115,123,128,121,130,116,102 -E07000111,Sevenoaks,130,101,108,102,82,86,89,90,85,100,98,73 -E07000113,Swale,189,125,111,114,106,97,99,98,80,108,106,104 -E07000114,Thanet,216,172,159,158,140,140,140,153,128,122,132,145 -E07000115,Tonbridge and Malling,139,101,101,94,86,98,82,95,89,101,79,97 -E07000116,Tunbridge Wells,126,106,107,86,90,87,81,75,84,106,82,74 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000025,Oxfordshire,711,504,531,490,413,408,402,419,405,417,481,403 -E07000177,Cherwell,169,116,118,102,100,93,93,90,96,107,101,88 -E07000178,Oxford,97,72,83,92,71,64,73,67,61,70,91,73 -E07000179,South Oxfordshire,151,107,130,123,94,83,90,103,91,81,108,92 -E07000180,Vale of White Horse,152,105,101,96,85,86,78,85,74,82,86,83 -E07000181,West Oxfordshire,142,104,99,77,63,82,68,74,83,77,95,67 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000030,Surrey,1156,889,973,880,792,740,704,770,678,839,806,752 -E07000207,Elmbridge,135,94,109,100,85,92,76,89,87,94,105,76 -E07000208,Epsom and Ewell,53,43,64,55,40,46,41,48,38,54,56,41 -E07000209,Guildford,120,103,88,83,94,92,83,73,90,65,66,86 -E07000210,Mole Valley,87,77,80,71,61,56,46,49,49,95,63,71 -E07000211,Reigate and Banstead,149,133,139,120,93,88,95,102,86,98,88,95 -E07000212,Runnymede,76,52,68,64,63,64,47,51,50,60,55,70 -E07000213,Spelthorne,104,80,90,78,73,59,64,69,53,75,85,61 -E07000214,Surrey Heath,101,60,76,70,64,64,54,53,54,66,59,47 -E07000215,Tandridge,87,77,80,65,59,39,59,71,50,72,78,69 -E07000216,Waverley,150,103,111,108,109,87,86,93,73,96,95,95 -E07000217,Woking,94,67,68,66,51,53,53,72,48,64,56,41 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000032,West Sussex,1194,795,918,849,686,630,670,636,667,712,752,714 -E07000223,Adur,97,65,74,57,56,28,50,58,46,53,61,50 -E07000224,Arun,306,204,204,200,154,156,165,161,144,170,203,168 -E07000225,Chichester,213,126,138,138,119,108,92,99,111,110,111,107 -E07000226,Crawley,97,63,80,68,65,56,50,56,64,57,58,50 -E07000227,Horsham,141,100,130,126,97,111,100,88,101,104,107,100 -E07000228,Mid Sussex,176,113,146,131,95,93,107,96,99,103,109,114 -E07000229,Worthing,164,124,146,129,100,78,106,78,102,115,103,125 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000009,SOUTH WEST,6779,5329,5552,5015,4499,4341,4310,4217,3949,4728,4691,4417 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000022,Bath and North East Somerset,171,146,130,145,135,107,113,147,113,136,148,133 -E06000058,"Bournemouth, Christchurch and Poole",510,405,383,384,373,331,348,298,282,336,353,295 -E06000023,"Bristol, City of",388,325,324,306,277,263,248,253,251,283,294,293 -E06000052,Cornwall,792,566,675,552,470,508,483,494,451,530,549,486 -E06000053,Isles of Scilly,4,0,2,5,0,1,1,0,2,0,0,0 -E06000059,Dorset,557,407,452,409,362,384,369,347,331,381,382,321 -E06000024,North Somerset,281,208,235,200,167,200,185,168,159,190,190,196 -E06000026,Plymouth,298,234,264,220,230,171,177,201,179,219,209,189 -E06000025,South Gloucestershire,295,210,234,207,186,162,185,156,139,193,210,170 -E06000030,Swindon,213,153,158,147,130,119,131,124,108,153,147,146 -E06000027,Torbay,209,197,169,154,145,127,137,131,124,155,122,152 -E06000054,Wiltshire,565,432,451,426,342,340,331,366,319,393,387,373 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000008,Devon,1150,823,870,775,739,686,668,636,618,758,673,678 -E07000040,East Devon,229,180,177,154,147,144,140,138,119,155,140,148 -E07000041,Exeter,133,109,103,85,78,99,75,71,74,106,98,77 -E07000042,Mid Devon,99,80,78,68,74,56,62,67,56,65,61,64 -E07000043,North Devon,159,111,113,108,98,91,74,87,64,98,84,100 -E07000044,South Hams,104,80,93,89,76,73,67,78,71,85,59,80 -E07000045,Teignbridge,212,147,150,134,130,107,124,95,113,131,130,107 -E07000046,Torridge,116,64,85,74,62,65,72,56,65,81,59,61 -E07000047,West Devon,98,52,71,63,74,51,54,44,56,37,42,41 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000013,Gloucestershire,713,580,588,530,472,477,448,482,434,520,523,506 -E07000078,Cheltenham,122,111,120,100,89,97,94,91,84,93,83,90 -E07000079,Cotswold,109,97,89,90,73,70,65,48,59,70,69,78 -E07000080,Forest of Dean,118,81,85,75,73,56,64,72,56,83,84,75 -E07000081,Gloucester,116,119,99,86,90,88,80,100,84,89,108,96 -E07000082,Stroud,152,93,124,107,79,90,87,96,89,114,107,99 -E07000083,Tewkesbury,96,79,71,72,68,76,58,75,62,71,72,68 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000027,Somerset,633,643,617,555,471,465,486,414,439,481,504,479 -E07000187,Mendip,111,124,101,93,94,93,108,77,71,111,87,75 -E07000188,Sedgemoor,129,128,138,116,84,87,105,78,89,111,118,100 -E07000246,Somerset West and Taunton,206,181,179,174,150,151,132,119,134,127,168,134 -E07000189,South Somerset,187,210,199,172,143,134,141,140,145,132,131,170 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W92000004,WALES,3945,3169,3405,2905,2734,2466,2562,2461,2331,2845,2863,2720 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W06000001,Isle of Anglesey,112,89,79,81,59,61,56,67,57,72,65,64 -W06000002,Gwynedd,160,133,146,119,101,88,95,88,95,126,149,115 -W06000003,Conwy,179,150,164,139,116,126,113,141,118,130,151,119 -W06000004,Denbighshire,153,126,124,95,91,81,78,88,87,104,105,117 -W06000005,Flintshire,155,133,137,129,135,104,112,123,102,121,144,134 -W06000006,Wrexham,177,131,146,96,108,106,107,105,94,126,135,124 -W06000023,Powys,190,157,158,149,131,111,135,127,119,149,146,128 -W06000008,Ceredigion,101,51,74,83,74,63,69,62,48,79,71,87 -W06000009,Pembrokeshire,181,127,147,138,124,107,118,87,105,116,121,116 -W06000010,Carmarthenshire,311,197,253,199,189,171,174,182,152,187,187,172 -W06000011,Swansea,311,223,262,225,204,209,208,188,169,233,222,180 -W06000012,Neath Port Talbot,159,170,197,156,136,136,109,138,115,148,133,112 -W06000013,Bridgend,177,154,141,153,156,114,142,104,115,134,119,132 -W06000014,Vale of Glamorgan,149,121,123,111,117,97,110,87,77,108,101,108 -W06000015,Cardiff,332,310,285,233,220,219,232,225,200,244,244,236 -W06000016,Rhondda Cynon Taf,294,255,279,218,223,174,177,141,199,209,215,216 -W06000024,Merthyr Tydfil,92,53,61,66,56,37,39,52,42,60,66,54 -W06000018,Caerphilly,195,174,170,146,146,145,170,148,137,153,132,161 -W06000019,Blaeu Gwent,111,73,90,66,68,66,65,55,54,63,72,61 -W06000020,Torfaen,120,107,95,88,81,76,77,73,63,75,78,77 -W06000021,Monmouthshire,121,91,104,91,73,69,67,74,73,82,84,93 -W06000022,Newport,165,144,170,124,126,106,109,106,110,126,123,114 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -J99000001,Non-residents of England & Wales,116,87,98,86,99,88,102,121,124,129,144,109 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Footnotes:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -1 The deaths of those whose usual residence is outside England and Wales are included in counts for 'England Wales and elsewhere' but excluded from any sub-division of England and Wales.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"2 In April 2019, some local authorities had been combined. These tables represent the most up to date boundaries.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Source: Office for National Statistics,NA,Released:,27 August 2019,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA diff --git a/working_files/Monthly/Monthly2018Mortality-Information.csv b/working_files/Monthly/Monthly2018Mortality-Information.csv deleted file mode 100644 index 15da88b..0000000 --- a/working_files/Monthly/Monthly2018Mortality-Information.csv +++ /dev/null @@ -1,41 +0,0 @@ -Contents -Information on monthly deaths -NA -Things you need to know -NA -"Monthly death figures provide counts of the number of deaths registered in a calendar month, by area of usual residence in England and Wales for 2018." -NA -"These figures are presented by regions (within England), unitary authorities, counties, districts and London boroughs." -NA -Notes -NA -Deaths occurring in England and Wales are registered on the General Register Office's Registration Online (RON) system. -Daily extracts of death registration records from RON are processed on our database systems. -NA -Weekly deaths counts cannot be summed to match the counts for monthly deaths as some weeks may span more than 1 month. -NA -Bank Holidays could affect the number of registrations made within those months. -NA -Annual figures are based on boundaries as of May 2019. -NA -Symbols -NA -In our mortality outputs published symbols used are: -0 denotes nil -Further information on the use of symbols is available on the Government Statistical Service (GSS) website. -NA -The ONS policy on protecting confidentiality in birth and death statistics is available on our website. -NA -Further information and enquiries -NA -Special extracts and tabulations of mortality data for England and Wales are available to order for a charge (subject to legal -"frameworks, disclosure control, resources and the ONS charging policy, where appropriate). Enquiries should be made to" -Vital Statistics Outputs Branch (vsob@ons.gov.uk or telephone: +44 (0)1329 444110). -User requested data will be published onto our website. -NA -"Access to microdata and disclosive data, that is, data which have the potential to identify an individual record, requires the approval of the ONS Microdata Release Procedure (MRP) before the data can be provided." -NA -Feedback -"We welcome feedback from users, please contact Vital Statistics Outputs Branch" -email: vsob@ons.gov.uk -telephone: +44 (0)1329 444110 diff --git a/working_files/Monthly/Monthly2018Mortality-Related publications.csv b/working_files/Monthly/Monthly2018Mortality-Related publications.csv deleted file mode 100644 index e81e677..0000000 --- a/working_files/Monthly/Monthly2018Mortality-Related publications.csv +++ /dev/null @@ -1,39 +0,0 @@ -Contents -Related publications -NA -User guide to mortality statistics -Supporting information for these tables can be found in the User guide to mortality statistics -NA -Quality and Methodology Information -"A Quality and Methodology Information document contains important information on: -• the strengths and limitations of the data -• the quality of the output: including the accuracy of the data, how it compares with related data -• uses and users -• how the output was created -" -NA -Further mortality statistics based on death registrations are available on the ONS website: -NA -"Death summary tables, England and Wales" -The summary tables provide key death registration statistics for the reference year. -NA -Deaths registered in England and Wales (Series DR) -Series DR (Mortality Statistics: Deaths Registered in England and Wales) provides detailed death registration statistics for the reference year. This includes numbers of deaths by detailed underlying cause by age-sex group defined by the different chapters of the Tenth Revision of the International Classification of Diseases and Related Health Problems (ICD-10). -NA -"Vital statistics: Population and health reference tables, United Kingdom and constituent countries" -"These tables provide annual data for a selection of key statistics under the following themes: population, demography and health. Figures for the latest years may be provisional, these will be updated to final figures when data is available." -NA -Mortality Statistics: Deaths registered in England and Wales by area of usual residence -Presents data on death registrations in the United Kingdom by area of usual residence. The release contains a summary table providing key mortality measures (numbers and rates including age standardised mortality rates) for the United Kingdom and its constituent countries and a table providing numbers of deaths in England and Wales by age and sex. -NA -"Weekly provisional figures on deaths registered, England and Wales" -Weekly death figures provide provisional counts of the number of deaths registered in England and Wales in the latest eight weeks for which data are available. -NA -20th Century Mortality Files -"The 20th Century mortality files are a record of mortality in England & Wales from 1901 to 2000. The files consist of an aggregated database of deaths by age group, sex, year and underlying cause, and include populations for England & Wales." -NA -21st Century Mortality Files -"The 21st Century Mortality Files are a record of mortality in England and Wales from 2001 onwards. They are designed to complement the Twentieth Century Mortality files. The files consist of an aggregated database of deaths by age group, sex, year and underlying cause, and include populations for England and Wales." -NA -Explorable datasets for mortality statistics in England and Wales -"This dataset provides mortality statistics in England and Wales, broken down by calendar year of registration, age, sex, underlying cause of death and other selected information collected at the time of registration." diff --git a/working_files/Monthly/Monthly2018Mortality-Terms and conditions.csv b/working_files/Monthly/Monthly2018Mortality-Terms and conditions.csv deleted file mode 100644 index 53b5933..0000000 --- a/working_files/Monthly/Monthly2018Mortality-Terms and conditions.csv +++ /dev/null @@ -1,32 +0,0 @@ -Contents -Terms and conditions -NA -A National Statistics publication -NA -National Statistics are produced to high professional standards set out in the Code of Practice for Official Statistics. They are produced free from any political interference. -NA -"The UK Statistics Authority has designated these statistics as National Statistics, in accordance with the Statistics and Registration Service Act 2007 and signifying compliance with the Code of Practice for Official Statistics." -Designation can be broadly interpreted to mean that the statistics: -• meet identified user needs -• are well explained and readily accessible -• are produced according to sound methods -• are managed impartially and objectively in the public interest -NA -Once statistics have been designated as National Statistics it is a statutory requirement that the Code of Practice shall continue to be observed. -NA -About us -"We are the executive office of the UK Statistics Authority, a non-ministerial department which reports directly to Parliament and the UK government’s single largest statistical producer. We compile information about the UK’s society and economy, and provide the evidence-base for policy and decision-making, the allocation of resources, and public accountability." -NA -Copyright and reproduction -NA -© Crown copyright 2019 -"You may re-use this publication (not including logos) free of charge in any format or medium, under the terms of the Open Government Licence." -Users should include a source accreditation to ONS - Source: Office for National Statistics licensed under the Open Government Licence. -NA -Visit the Open Government Licence -"or write to the Information Policy Team, The National Archives, Kew, Richmond, Surrey, TW9 4DU;" -or email: psi@nationalarchives.gov.uk -NA -Where we have identified any third party copyright information you will need to obtain permission from the copyright holders concerned. -NA -This publication is also available on our website. diff --git a/working_files/Monthly/Monthly2018Mortality.xls b/working_files/Monthly/Monthly2018Mortality.xls deleted file mode 100644 index 1566821..0000000 Binary files a/working_files/Monthly/Monthly2018Mortality.xls and /dev/null differ diff --git a/working_files/Monthly/Monthly2019Mortality-Contents.csv b/working_files/Monthly/Monthly2019Mortality-Contents.csv deleted file mode 100644 index 008d147..0000000 --- a/working_files/Monthly/Monthly2019Mortality-Contents.csv +++ /dev/null @@ -1,10 +0,0 @@ -Contents,Monthly provisional figures on deaths registered in England and Wales -NA,NA -NA,NA -Information,Information on monthly deaths -NA,NA -Terms and conditions,Terms and conditions -NA,NA -Figures for 2019,"Deaths (numbers): by region, 2019 registrations, England and Wales" -NA,NA -Related publications,Provides links to further mortality statistics based on death registrations diff --git a/working_files/Monthly/Monthly2019Mortality-Figures for 2019.csv b/working_files/Monthly/Monthly2019Mortality-Figures for 2019.csv deleted file mode 100644 index e9b61aa..0000000 --- a/working_files/Monthly/Monthly2019Mortality-Figures for 2019.csv +++ /dev/null @@ -1,459 +0,0 @@ -Contents,...2,...3,...4,...5,...6,...7,...8,...9,...10,...11,...12,...13,...14 -"Monthly provisional figures on deaths registered by area of usual residence, 2019",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,England and Wales -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Area of usual residence,NA,Jan-193,Feb-193,Mar-193,Apr-193,May-193,Jun-193,Jul-193,Aug-193,Sep-193,Oct-193,Nov-193,Dec-193 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"K04000001, J99000001","ENGLAND, WALES AND ELSEWHERE 1",53910,45796,43946,44123,44388,38606,42305,38843,40012,46240,45219,47469 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -K04000001,ENGLAND AND WALES,53772,45696,43815,44003,44290,38511,42183,38719,39915,46133,45111,47384 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E92000001,ENGLAND,50383,42848,41116,41164,41503,36180,39604,36269,37462,43259,42267,44295 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000001,NORTH EAST,2849,2365,2301,2260,2319,2017,2216,2226,2086,2454,2413,2531 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000047,County Durham,606,470,425,428,448,426,444,439,442,516,520,495 -E06000005,Darlington,138,110,104,84,115,75,86,104,77,95,96,119 -E06000001,Hartlepool,92,87,68,81,108,77,97,73,69,87,85,99 -E06000002,Middlesbrough,144,116,126,113,123,100,113,118,117,127,119,121 -E06000057,Northumberland,331,296,332,277,309,266,288,320,271,316,292,361 -E06000003,Redcar and Cleveland,146,152,133,135,114,101,140,116,108,139,134,145 -E06000004,Stockton-on-Tees,192,166,160,133,157,126,136,149,136,177,159,173 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000007,Tyne and Wear (Met County),1200,968,953,1009,945,846,912,907,866,997,1008,1018 -E08000037,Gateshead,233,166,167,164,166,161,165,163,153,192,180,191 -E08000021,Newcastle upon Tyne,251,222,200,217,209,158,191,196,192,226,212,223 -E08000022,North Tyneside,234,171,193,216,202,177,176,166,167,164,195,179 -E08000023,South Tyneside,164,148,138,151,128,129,143,128,119,152,137,141 -E08000024,Sunderland,318,261,255,261,240,221,237,254,235,263,284,284 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000002,NORTH WEST,7126,6159,5831,5835,6049,5263,5880,5157,5387,6381,6006,6933 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000008,Blackburn with Darwen,125,102,111,124,102,99,96,108,102,118,118,126 -E06000009,Blackpool,194,157,138,137,176,124,147,133,149,155,152,169 -E06000049,Cheshire East,416,349,300,328,324,271,333,293,321,407,337,338 -E06000050,Cheshire West and Chester,320,305,297,298,302,248,294,244,250,327,277,339 -E06000006,Halton,114,95,83,92,97,88,98,83,91,106,102,121 -E06000007,Warrington,182,167,180,158,176,147,168,156,154,172,193,184 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000006,Cumbria,516,487,447,447,499,397,438,395,458,479,467,586 -E07000026,Allerdale,96,101,90,95,97,88,94,85,103,84,92,118 -E07000027,Barrow-in-Furness,80,76,66,59,66,48,45,60,48,65,73,73 -E07000028,Carlisle,95,111,77,98,112,70,85,88,102,107,99,132 -E07000029,Copeland,67,45,66,52,83,71,75,39,67,63,50,68 -E07000030,Eden,49,47,47,44,51,38,47,37,34,48,52,65 -E07000031,South Lakeland,129,107,101,99,90,82,92,86,104,112,101,130 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000001,Greater Manchester (Met County),2474,2154,1987,2020,2032,1858,2008,1784,1799,2067,1989,2342 -E08000001,Bolton,252,220,202,216,216,199,216,182,205,243,218,276 -E08000002,Bury,193,127,141,141,158,145,146,122,106,143,147,174 -E08000003,Manchester,363,291,291,280,244,273,291,253,255,264,289,301 -E08000004,Oldham,206,210,185,181,166,171,163,147,171,198,195,209 -E08000005,Rochdale,214,175,164,164,165,141,168,141,149,171,165,197 -E08000006,Salford,222,186,166,210,159,157,175,158,129,171,166,176 -E08000007,Stockport,267,248,239,211,245,212,263,210,227,256,223,276 -E08000008,Tameside,226,229,171,183,216,161,189,175,190,160,163,239 -E08000009,Trafford,174,195,183,161,176,160,170,157,135,163,161,215 -E08000010,Wigan,357,273,245,273,287,239,227,239,232,298,262,279 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000017,Lancashire,1254,1064,1015,1047,1090,960,1084,876,960,1170,1085,1224 -E07000117,Burnley,106,76,80,82,78,57,81,64,61,96,85,93 -E07000118,Chorley,95,91,86,89,121,89,113,67,102,94,98,103 -E07000119,Fylde,117,107,75,84,83,78,96,83,85,119,88,92 -E07000120,Hyndburn,89,58,63,84,60,75,60,64,65,79,70,78 -E07000121,Lancaster,142,124,127,120,123,108,123,114,105,132,141,125 -E07000122,Pendle,87,72,71,54,67,74,68,55,58,74,74,97 -E07000123,Preston,116,114,109,115,113,85,98,86,87,138,95,125 -E07000124,Ribble Valley,46,57,50,49,52,47,61,38,41,43,50,61 -E07000125,Rossendale,63,54,51,62,76,42,64,57,43,61,60,79 -E07000126,South Ribble,96,80,80,94,85,88,85,79,96,75,83,88 -E07000127,West Lancashire,130,108,96,95,104,90,95,84,88,114,120,124 -E07000128,Wyre,167,123,127,119,128,127,140,85,129,145,121,159 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000002,Merseyside (Met County),1531,1279,1273,1184,1251,1071,1214,1085,1103,1380,1286,1504 -E08000011,Knowsley,166,144,147,130,118,116,135,120,136,127,121,161 -E08000012,Liverpool,466,375,387,342,391,311,353,304,304,397,372,435 -E08000014,Sefton,311,267,251,272,284,247,248,256,244,304,299,326 -E08000013,St. Helens,188,175,177,144,170,158,169,146,153,184,175,200 -E08000015,Wirral,400,318,311,296,288,239,309,259,266,368,319,382 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000003,YORKSHIRE AND THE HUMBER,5442,4564,4392,4351,4376,3835,4131,3853,3909,4599,4510,4582 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000011,East Riding of Yorkshire,393,309,323,333,342,253,272,277,300,360,357,388 -E06000010,"Kingston upon Hull, City of",300,220,223,211,182,167,200,177,209,206,230,213 -E06000012,North East Lincolnshire,184,167,148,143,163,124,138,118,124,148,152,162 -E06000013,North Lincolnshire,185,162,163,152,178,135,143,124,113,138,146,142 -E06000014,York,190,149,146,129,166,157,152,141,150,179,158,150 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000023,North Yorkshire,621,536,519,533,498,472,534,518,511,604,564,598 -E07000163,Craven,68,47,54,60,39,49,41,51,62,54,53,68 -E07000164,Hambleton,96,76,75,68,77,76,82,84,70,101,87,74 -E07000165,Harrogate,144,151,129,140,143,115,126,121,133,147,141,132 -E07000166,Richmondshire,49,35,43,37,43,43,37,39,29,51,41,46 -E07000167,Ryedale,56,48,40,53,40,39,52,44,39,52,53,58 -E07000168,Scarborough,132,108,108,113,98,96,119,110,118,135,115,150 -E07000169,Selby,76,71,70,62,58,54,77,69,60,64,74,70 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000003,South Yorkshire (Met County),1384,1237,1171,1125,1163,1017,1045,971,1048,1202,1122,1097 -E08000016,Barnsley,264,237,245,212,225,197,162,160,194,223,225,227 -E08000017,Doncaster,314,295,257,268,267,241,261,244,248,242,245,295 -E08000018,Rotherham,295,258,251,248,217,183,194,220,224,279,230,237 -E08000019,Sheffield,511,447,418,397,454,396,428,347,382,458,422,338 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000006,West Yorkshire (Met County),2185,1784,1699,1725,1684,1510,1647,1527,1454,1762,1781,1832 -E08000032,Bradford,475,416,365,376,346,311,366,333,300,376,383,414 -E08000033,Calderdale,177,164,157,152,159,135,167,143,139,157,163,182 -E08000034,Kirklees,452,328,302,314,312,292,299,255,296,341,334,347 -E08000035,Leeds,729,582,584,558,581,507,550,510,463,585,583,569 -E08000036,Wakefield,352,294,291,325,286,265,265,286,256,303,318,320 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000004,EAST MIDLANDS,4589,3892,3799,3761,3812,3254,3576,3251,3471,3962,3839,4222 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000015,Derby,282,193,187,183,242,166,194,171,165,230,187,195 -E06000016,Leicester,239,225,209,212,226,155,183,164,202,194,217,226 -E06000018,Nottingham,252,211,191,212,184,180,203,179,192,200,189,205 -E06000017,Rutland,33,29,28,22,31,33,32,30,28,35,22,40 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000007,Derbyshire,890,684,672,691,728,577,657,563,607,726,715,793 -E07000032,Amber Valley,132,100,100,106,127,79,96,92,92,108,116,115 -E07000033,Bolsover,81,62,69,90,71,73,67,64,52,85,76,87 -E07000034,Chesterfield,130,103,114,89,93,80,79,73,72,100,109,118 -E07000035,Derbyshire Dales,86,72,62,68,56,64,73,54,69,59,66,69 -E07000036,Erewash,134,94,87,79,103,92,96,74,90,105,93,111 -E07000037,High Peak,107,82,76,76,78,64,70,62,68,82,81,88 -E07000038,North East Derbyshire,132,95,74,121,106,72,97,81,92,118,99,121 -E07000039,South Derbyshire,88,76,90,62,94,53,79,63,72,69,75,84 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000018,Leicestershire,590,563,517,496,515,456,522,443,464,567,522,583 -E07000129,Blaby,94,74,72,71,64,58,78,61,61,67,64,73 -E07000130,Charnwood,137,122,102,130,121,112,142,92,105,154,128,157 -E07000131,Harborough,84,65,80,60,76,56,52,56,75,67,78,68 -E07000132,Hinckley and Bosworth,116,93,88,87,83,84,98,93,79,105,78,92 -E07000133,Melton,45,55,46,29,34,27,38,27,22,58,35,51 -E07000134,North West Leicestershire,60,92,84,67,74,75,61,69,74,80,84,92 -E07000135,Oadby and Wigston,54,62,45,52,63,44,53,45,48,36,55,50 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000019,Lincolnshire,842,771,723,700,692,629,635,630,641,688,754,748 -E07000136,Boston,76,56,72,58,67,52,56,60,63,62,65,65 -E07000137,East Lindsey,208,210,172,168,147,138,160,166,151,159,166,180 -E07000138,Lincoln,97,82,81,88,82,54,66,57,76,77,77,80 -E07000139,North Kesteven,115,115,99,99,129,99,87,85,97,105,131,119 -E07000140,South Holland,109,87,88,90,73,73,79,90,71,91,112,93 -E07000141,South Kesteven,130,130,124,108,122,125,110,108,108,116,109,113 -E07000142,West Lindsey,107,91,87,89,72,88,77,64,75,78,94,98 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000021,Northamptonshire,639,571,535,553,508,437,507,474,512,569,509,650 -E07000150,Corby,62,41,62,48,52,38,45,35,51,51,51,52 -E07000151,Daventry,69,54,65,69,62,63,58,51,56,61,64,67 -E07000152,East Northamptonshire,95,72,77,68,58,66,67,78,87,73,64,92 -E07000153,Kettering,94,97,74,85,77,59,61,77,65,83,77,104 -E07000154,Northampton,167,181,150,151,145,125,165,131,142,166,148,184 -E07000155,South Northamptonshire,81,65,56,70,57,46,56,57,56,61,56,83 -E07000156,Wellingborough,71,61,51,62,57,40,55,45,55,74,49,68 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000024,Nottinghamshire,822,645,737,692,686,621,643,597,660,753,724,782 -E07000170,Ashfield,136,105,120,116,108,79,93,99,101,124,99,119 -E07000171,Bassetlaw,120,98,97,100,107,104,105,85,118,106,110,116 -E07000172,Broxtowe,125,90,109,97,89,85,92,88,90,107,107,95 -E07000173,Gedling,122,85,110,83,95,95,89,82,70,87,112,101 -E07000174,Mansfield,109,80,106,100,87,79,93,86,94,123,97,115 -E07000175,Newark and Sherwood,113,95,103,109,112,95,95,69,113,105,105,114 -E07000176,Rushcliffe,97,92,92,87,88,84,76,88,74,101,94,122 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000005,WEST MIDLANDS,5500,4780,4467,4527,4568,3990,4317,4013,4125,4725,4716,4866 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000019,"Herefordshire, County of",212,164,171,184,174,170,162,152,163,168,160,195 -E06000051,Shropshire,342,300,299,297,275,237,311,271,268,295,313,330 -E06000021,Stoke-on-Trent,257,232,210,203,191,184,203,204,188,237,229,203 -E06000020,Telford and Wrekin,138,126,132,127,133,107,112,123,131,130,131,141 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000028,Staffordshire,924,714,713,724,743,634,671,632,654,793,762,837 -E07000192,Cannock Chase,111,85,83,63,80,71,73,60,64,70,79,85 -E07000193,East Staffordshire,132,97,98,90,92,72,88,75,72,118,91,124 -E07000194,Lichfield,111,84,92,112,88,77,77,82,88,96,85,112 -E07000195,Newcastle-under-Lyme,130,99,95,91,119,101,99,96,96,127,119,127 -E07000196,South Staffordshire,125,103,100,102,106,89,91,83,85,108,117,108 -E07000197,Stafford,120,113,91,120,113,103,110,98,107,123,114,121 -E07000198,Staffordshire Moorlands,115,78,105,83,85,75,80,84,87,95,94,107 -E07000199,Tamworth,80,55,49,63,60,46,53,54,55,56,63,53 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000031,Warwickshire,545,514,437,467,425,376,456,423,424,506,483,481 -E07000218,North Warwickshire,59,64,43,56,54,63,57,59,65,65,70,70 -E07000219,Nuneaton and Bedworth,137,126,104,123,117,78,120,100,86,111,106,98 -E07000220,Rugby,106,93,82,78,72,62,88,57,77,96,92,85 -E07000221,Stratford-on-Avon,135,123,114,118,86,86,101,105,115,118,113,132 -E07000222,Warwick,108,108,94,92,96,87,90,102,81,116,102,96 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000005,West Midlands (Met County),2466,2204,2003,2045,2070,1843,1896,1793,1804,2088,2124,2126 -E08000025,Birmingham,787,753,678,667,688,603,662,650,631,727,683,738 -E08000026,Coventry,300,262,237,287,242,191,201,198,190,222,223,241 -E08000027,Dudley,319,275,270,276,267,240,240,221,212,274,297,288 -E08000028,Sandwell,288,277,240,248,264,256,214,213,204,266,280,236 -E08000029,Solihull,208,182,152,155,187,157,151,149,153,161,168,197 -E08000030,Walsall,301,251,223,218,226,193,208,170,205,234,252,214 -E08000031,Wolverhampton,263,204,203,194,196,203,220,192,209,204,221,212 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000034,Worcestershire,616,526,502,480,557,439,506,415,493,508,514,553 -E07000234,Bromsgrove,85,100,75,91,95,75,92,63,81,89,72,96 -E07000235,Malvern Hills,106,74,89,79,98,89,89,87,94,76,81,94 -E07000236,Redditch,77,58,52,57,79,51,48,44,55,54,54,66 -E07000237,Worcester,86,88,80,64,78,74,74,55,63,67,82,73 -E07000238,Wychavon,125,107,109,85,119,75,105,86,107,112,113,112 -E07000239,Wyre Forest,137,99,97,104,88,75,98,80,93,110,112,112 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000006,EAST,5867,5078,4736,5010,4637,4034,4635,4110,4459,4988,4754,4896 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000055,Bedford,176,130,121,139,116,107,124,106,124,128,116,144 -E06000056,Central Bedfordshire,219,190,171,199,160,157,166,165,179,192,180,211 -E06000032,Luton,152,126,109,147,119,95,104,96,95,119,106,131 -E06000031,Peterborough,134,148,123,132,155,130,113,109,125,136,150,99 -E06000033,Southend-on-Sea,175,172,174,182,172,119,152,126,149,159,158,152 -E06000034,Thurrock,112,120,98,100,85,81,111,90,105,109,106,103 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000003,Cambridgeshire,559,430,441,464,456,391,434,449,427,473,443,483 -E07000008,Cambridge,71,58,67,64,67,59,62,67,61,73,54,64 -E07000009,East Cambridgeshire,75,56,62,70,55,56,53,52,64,81,69,58 -E07000010,Fenland,111,90,91,106,100,76,89,95,98,110,116,109 -E07000011,Huntingdonshire,182,127,117,137,122,108,126,133,107,106,120,147 -E07000012,South Cambridgeshire,120,99,104,87,112,92,104,102,97,103,84,105 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000012,Essex,1541,1279,1188,1273,1162,1084,1241,1014,1089,1249,1158,1211 -E07000066,Basildon,152,146,137,127,141,119,142,114,111,134,135,136 -E07000067,Braintree,178,139,127,117,117,136,124,115,116,153,118,114 -E07000068,Brentwood,72,61,62,73,42,49,56,50,58,54,58,80 -E07000069,Castle Point,112,98,105,81,76,79,93,70,75,79,93,90 -E07000070,Chelmsford,165,131,131,164,121,116,126,100,119,132,116,134 -E07000071,Colchester,153,133,120,131,138,132,154,99,110,136,124,118 -E07000072,Epping Forest,128,112,111,133,90,74,108,103,103,131,94,119 -E07000073,Harlow,86,62,61,65,62,49,73,57,69,58,62,58 -E07000074,Maldon,87,59,45,56,79,38,58,47,59,64,52,54 -E07000075,Rochford,88,55,66,54,72,76,79,59,64,63,73,58 -E07000076,Tendring,247,230,172,202,170,167,163,148,157,188,181,187 -E07000077,Uttlesford,73,53,51,70,54,49,65,52,48,57,52,63 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000015,Hertfordshire,958,850,821,835,758,654,777,679,750,833,852,865 -E07000095,Broxbourne,66,73,72,57,60,47,63,46,71,59,71,65 -E07000096,Dacorum,121,112,104,120,86,79,102,96,87,136,123,99 -E07000242,East Hertfordshire,123,112,107,93,88,74,100,68,100,89,94,103 -E07000098,Hertsmere,95,91,73,70,66,66,76,57,90,73,86,93 -E07000099,North Hertfordshire,130,109,110,127,104,85,96,83,91,114,114,96 -E07000240,St Albans,106,101,95,89,85,76,81,85,91,89,91,96 -E07000243,Stevenage,67,54,56,67,63,51,56,56,55,39,68,79 -E07000102,Three Rivers,75,54,75,68,67,48,67,62,56,73,63,73 -E07000103,Watford,85,69,57,60,63,56,58,53,39,71,64,69 -E07000241,Welwyn Hatfield,90,75,72,84,76,72,78,73,70,90,78,92 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000020,Norfolk,1021,938,873,844,803,705,810,716,771,874,841,815 -E07000143,Breckland,167,130,130,148,127,135,133,99,122,146,132,136 -E07000144,Broadland,156,129,118,108,110,108,113,102,119,127,123,106 -E07000145,Great Yarmouth,105,113,123,116,90,89,91,89,92,89,93,110 -E07000146,King’s Lynn and West Norfolk,177,168,181,145,135,109,159,150,135,160,152,148 -E07000147,North Norfolk,164,135,116,116,136,84,118,104,95,123,134,89 -E07000148,Norwich,121,125,73,97,86,81,87,78,100,103,84,88 -E07000149,South Norfolk,131,138,132,114,119,99,109,94,108,126,123,138 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000029,Suffolk,820,695,617,695,651,511,603,560,645,716,644,682 -E07000200,Babergh,107,92,80,101,86,68,81,88,83,83,87,88 -E07000244,East Suffolk,336,279,230,281,233,209,222,198,248,262,246,244 -E07000202,Ipswich,109,108,92,93,100,69,84,81,89,114,103,119 -E07000203,Mid Suffolk,96,82,78,86,74,66,90,72,86,95,86,87 -E07000245,West Suffolk,172,134,137,134,158,99,126,121,139,162,122,144 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000007,LONDON,4900,4184,4048,4102,4007,3619,3952,3719,3793,4137,4249,4296 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E13000001,Inner London,1536,1310,1292,1280,1290,1142,1264,1173,1238,1329,1354,1338 -E09000007,Camden,98,80,81,106,88,76,93,100,86,101,98,132 -E09000001,City of London,5,2,2,3,2,3,4,5,4,1,4,6 -E09000012,Hackney,107,81,99,102,83,70,83,71,69,117,121,86 -E09000013,Hammersmith and Fulham,93,75,81,80,85,58,79,65,82,72,79,73 -E09000014,Haringey,115,124,116,80,109,100,91,111,99,128,119,102 -E09000019,Islington,94,107,74,96,67,80,111,68,78,87,89,107 -E09000020,Kensington and Chelsea,82,69,55,74,58,52,77,50,70,73,62,59 -E09000022,Lambeth,145,110,124,124,140,102,118,119,100,122,108,94 -E09000023,Lewisham,160,152,146,104,139,112,126,99,130,117,128,147 -E09000025,Newham,145,131,116,95,105,105,81,93,114,115,131,114 -E09000028,Southwark,151,108,98,124,113,101,106,105,107,86,121,112 -E09000030,Tower Hamlets,79,75,79,91,84,77,78,79,77,94,87,89 -E09000032,Wandsworth,157,118,146,107,113,125,135,135,129,118,131,125 -E09000033,Westminster,105,78,75,94,104,81,82,73,93,98,76,92 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E13000002,Outer London,3364,2874,2756,2822,2717,2477,2688,2546,2555,2808,2895,2958 -E09000002,Barking and Dagenham,138,104,114,111,84,96,97,71,99,110,105,123 -E09000003,Barnet,240,216,189,184,180,177,184,162,193,190,186,215 -E09000004,Bexley,202,185,160,169,174,133,170,144,150,174,186,171 -E09000005,Brent,182,146,140,142,139,108,137,151,137,136,125,143 -E09000006,Bromley,262,211,213,210,229,208,195,208,193,216,244,194 -E09000008,Croydon,250,201,180,240,196,190,198,178,210,235,236,212 -E09000009,Ealing,201,164,176,177,168,141,154,154,146,164,174,175 -E09000010,Enfield,198,172,156,183,163,159,158,134,157,189,170,174 -E09000011,Greenwich,161,146,112,121,130,100,154,146,112,112,130,140 -E09000015,Harrow,142,128,148,133,120,98,116,116,121,127,135,142 -E09000016,Havering,242,218,188,184,184,183,194,163,183,212,218,229 -E09000017,Hillingdon,205,167,166,166,162,166,169,157,138,159,199,170 -E09000018,Hounslow,117,134,126,125,124,119,128,128,115,118,151,138 -E09000021,Kingston upon Thames,111,95,80,87,96,89,85,93,79,77,90,83 -E09000024,Merton,131,92,117,109,92,79,103,88,89,124,87,112 -E09000026,Redbridge,181,145,135,136,135,118,124,137,128,145,139,158 -E09000027,Richmond upon Thames,104,95,102,113,115,87,103,109,95,106,85,116 -E09000029,Sutton,153,124,137,125,130,108,107,112,113,103,117,130 -E09000031,Waltham Forest,144,131,117,107,96,118,112,95,97,111,118,133 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000008,SOUTH EAST,8351,7010,6827,6765,6966,5963,6385,5859,6001,7118,6968,7023 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000036,Bracknell Forest,76,71,65,69,73,47,39,43,59,60,60,63 -E06000043,Brighton and Hove,193,196,169,169,192,158,183,139,165,188,171,170 -E06000046,Isle of Wight,159,152,143,170,145,117,128,146,142,152,157,164 -E06000035,Medway,230,209,186,210,197,179,182,151,154,182,205,181 -E06000042,Milton Keynes,192,150,135,174,128,151,134,132,135,177,123,156 -E06000044,Portsmouth,174,151,159,152,162,130,136,117,133,146,169,143 -E06000038,Reading,118,95,84,103,85,64,92,97,63,81,97,108 -E06000039,Slough,76,59,59,77,73,62,64,66,64,71,84,61 -E06000045,Southampton,183,153,156,138,167,123,145,133,137,171,158,135 -E06000037,West Berkshire,127,87,91,100,110,84,103,89,81,101,111,117 -E06000040,Windsor and Maidenhead,131,100,114,117,102,90,104,99,90,128,119,107 -E06000041,Wokingham,107,96,86,117,106,78,108,123,96,106,97,103 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000002,Buckinghamshire,432,346,356,361,378,302,365,315,325,373,373,384 -E07000004,Aylesbury Vale,127,116,129,124,140,97,128,89,90,134,130,131 -E07000005,Chiltern,92,71,59,74,72,59,66,68,69,69,65,81 -E07000006,South Bucks,76,62,60,59,56,46,66,58,51,57,66,52 -E07000007,Wycombe,137,97,108,104,110,100,105,100,115,113,112,120 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000011,East Sussex,701,564,560,544,584,466,502,456,488,622,591,587 -E07000061,Eastbourne,141,112,124,118,103,92,104,89,94,107,114,117 -E07000062,Hastings,100,89,62,83,87,65,87,57,73,111,75,107 -E07000063,Lewes,146,105,95,86,111,77,79,80,88,91,119,95 -E07000064,Rother,146,101,133,106,134,103,98,95,82,130,125,118 -E07000065,Wealden,168,157,146,151,149,129,134,135,151,183,158,150 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000014,Hampshire,1268,1135,1091,1022,1105,966,1051,870,923,1118,1077,1192 -E07000084,Basingstoke and Deane,150,108,115,93,109,93,105,95,99,127,96,152 -E07000085,East Hampshire,109,81,113,97,113,95,104,86,84,119,97,122 -E07000086,Eastleigh,112,104,95,96,103,83,109,76,77,97,86,98 -E07000087,Fareham,116,109,89,80,101,85,89,82,77,84,71,121 -E07000088,Gosport,77,55,60,89,80,71,68,65,69,66,83,82 -E07000089,Hart,83,70,45,79,51,51,69,42,48,64,54,73 -E07000090,Havant,116,133,130,85,125,122,117,91,96,111,113,106 -E07000091,New Forest,221,201,185,180,188,143,167,134,152,188,203,193 -E07000092,Rushmoor,49,56,63,51,55,62,48,46,49,36,61,46 -E07000093,Test Valley,118,106,93,97,99,92,86,70,81,117,96,96 -E07000094,Winchester,117,112,103,75,81,69,89,83,91,109,117,103 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000016,Kent,1628,1376,1275,1270,1270,1136,1148,1094,1065,1306,1263,1270 -E07000105,Ashford,150,115,83,98,103,96,93,85,68,93,89,90 -E07000106,Canterbury,195,145,136,142,152,128,119,119,125,155,153,136 -E07000107,Dartford,102,79,84,61,73,66,72,57,72,75,54,73 -E07000108,Dover,146,95,110,108,99,100,86,94,73,116,101,94 -E07000109,Gravesham,94,75,86,66,87,62,64,94,100,111,128,106 -E07000110,Maidstone,142,136,137,134,116,126,131,65,61,71,74,76 -E07000111,Sevenoaks,107,109,98,95,90,89,87,113,115,121,113,144 -E07000112,Folkestone and Hythe,155,130,113,117,119,104,108,72,95,89,106,93 -E07000113,Swale,143,139,117,135,102,102,127,110,80,116,125,102 -E07000114,Thanet,167,150,125,135,158,115,111,119,117,181,143,164 -E07000115,Tonbridge and Malling,119,99,96,90,76,69,82,85,78,95,78,95 -E07000116,Tunbridge Wells,108,104,90,89,95,79,68,81,81,83,99,97 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000025,Oxfordshire,559,448,468,443,454,442,438,442,418,489,515,464 -E07000177,Cherwell,126,92,107,88,92,104,95,89,96,103,122,94 -E07000178,Oxford,93,65,67,92,72,68,75,61,81,97,73,68 -E07000179,South Oxfordshire,113,101,108,101,111,88,104,109,104,106,99,109 -E07000180,Vale of White Horse,130,98,93,77,103,98,88,100,68,91,113,101 -E07000181,West Oxfordshire,97,92,93,85,76,84,76,83,69,92,108,92 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000030,Surrey,1059,846,876,817,843,703,721,696,770,854,822,851 -E07000207,Elmbridge,121,107,77,93,89,74,73,72,85,100,89,98 -E07000208,Epsom and Ewell,66,42,53,47,43,37,44,29,41,46,52,50 -E07000209,Guildford,97,92,94,89,103,85,70,78,82,83,83,75 -E07000210,Mole Valley,77,69,72,63,71,70,63,59,65,70,63,65 -E07000211,Reigate and Banstead,166,115,114,94,112,101,94,93,88,99,108,96 -E07000212,Runnymede,65,45,71,56,54,42,62,53,34,65,47,41 -E07000213,Spelthorne,97,67,85,85,76,53,62,68,63,77,73,85 -E07000214,Surrey Heath,89,74,70,60,65,58,60,47,80,62,61,67 -E07000215,Tandridge,93,74,78,80,51,52,55,67,66,80,78,78 -E07000216,Waverley,109,90,105,97,114,69,86,79,102,98,104,115 -E07000217,Woking,79,71,57,53,65,62,52,51,64,74,64,81 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000032,West Sussex,938,776,754,712,792,665,742,651,693,793,776,767 -E07000223,Adur,70,59,57,51,56,61,68,53,55,61,55,57 -E07000224,Arun,240,175,182,172,186,163,178,166,153,184,192,158 -E07000225,Chichester,159,115,97,112,134,108,105,107,119,148,127,136 -E07000226,Crawley,65,76,70,68,74,53,48,46,59,66,63,70 -E07000227,Horsham,136,123,111,97,116,99,113,88,102,127,95,104 -E07000228,Mid Sussex,148,112,120,117,115,93,108,93,99,116,125,113 -E07000229,Worthing,120,116,117,95,111,88,122,98,106,91,119,129 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000009,SOUTH WEST,5759,4816,4715,4553,4769,4205,4512,4081,4231,4895,4812,4946 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000022,Bath and North East Somerset,158,156,126,141,123,137,127,126,126,137,157,141 -E06000058,"Bournemouth, Christchurch and Poole",443,342,358,322,378,278,337,309,314,392,367,353 -E06000023,"Bristol, City of",347,298,265,280,265,265,281,272,240,258,270,302 -E06000052,Cornwall,626,454,566,530,567,453,471,445,474,498,535,540 -E06000053,Isles of Scilly,2,2,3,3,1,1,2,0,3,0,3,2 -E06000059,Dorset,461,391,357,349,375,340,408,317,364,404,375,373 -E06000024,North Somerset,239,212,179,173,178,176,180,155,155,201,192,209 -E06000026,Plymouth,259,229,225,198,238,208,177,180,194,222,219,196 -E06000025,South Gloucestershire,233,189,154,178,199,146,181,143,174,195,197,207 -E06000030,Swindon,175,134,153,151,147,122,136,128,124,156,134,165 -E06000027,Torbay,192,139,139,148,146,135,140,125,120,159,148,163 -E06000054,Wiltshire,451,388,396,326,371,308,377,299,354,399,409,426 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000008,Devon,903,803,761,703,739,726,693,688,655,791,736,744 -E07000040,East Devon,162,166,168,148,166,158,140,137,140,183,165,170 -E07000041,Exeter,109,88,96,86,97,79,97,99,79,93,91,101 -E07000042,Mid Devon,94,63,60,56,54,64,71,60,64,69,65,65 -E07000043,North Devon,121,114,91,95,84,91,70,74,79,101,81,85 -E07000044,South Hams,102,83,83,75,66,74,62,77,64,92,80,92 -E07000045,Teignbridge,169,153,145,126,112,136,132,105,116,133,133,107 -E07000046,Torridge,94,69,65,68,76,74,73,76,65,64,62,71 -E07000047,West Devon,52,67,53,49,84,50,48,60,48,56,59,53 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000013,Gloucestershire,656,527,531,521,531,452,533,434,456,519,532,597 -E07000078,Cheltenham,106,103,99,103,95,76,105,78,81,92,104,109 -E07000079,Cotswold,94,85,93,77,89,68,80,72,78,67,91,90 -E07000080,Forest of Dean,100,76,75,76,79,68,68,60,64,82,60,67 -E07000081,Gloucester,119,88,99,95,98,97,99,79,85,80,93,102 -E07000082,Stroud,130,105,88,99,93,86,103,77,82,132,102,137 -E07000083,Tewkesbury,107,70,77,71,77,57,78,68,66,66,82,92 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000027,Somerset,614,552,502,530,511,458,469,460,478,564,538,528 -E07000187,Mendip,104,105,75,117,109,91,92,92,96,128,84,99 -E07000188,Sedgemoor,127,129,119,105,115,94,105,93,109,122,135,119 -E07000246,Somerset West and Taunton,187,175,144,158,146,125,122,135,151,158,169,155 -E07000189,South Somerset,196,143,164,150,141,148,150,140,122,156,150,155 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W92000004,WALES,3389,2848,2699,2839,2787,2331,2579,2450,2453,2874,2844,3089 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W06000001,Isle of Anglesey,81,71,76,81,63,56,48,59,60,74,74,60 -W06000002,Gwynedd,146,118,128,126,126,89,101,92,101,132,119,127 -W06000003,Conwy,147,121,125,150,134,116,109,125,108,166,115,150 -W06000004,Denbighshire,123,103,92,100,87,88,106,95,98,114,107,121 -W06000005,Flintshire,139,123,129,116,142,120,111,125,118,157,121,145 -W06000006,Wrexham,144,116,128,131,105,100,92,92,103,119,121,131 -W06000023,Powys,165,145,139,130,122,116,117,127,135,127,149,131 -W06000008,Ceredigion,80,58,72,78,54,61,55,55,55,70,72,80 -W06000009,Pembrokeshire,152,121,111,131,128,111,134,117,127,114,130,148 -W06000010,Carmarthenshire,209,179,198,205,192,152,176,163,145,181,186,225 -W06000011,Swansea,246,231,192,211,221,185,192,189,181,216,220,225 -W06000012,Neath Port Talbot,156,141,123,139,155,94,127,97,124,127,143,175 -W06000013,Bridgend,178,142,128,140,147,120,115,107,127,149,127,153 -W06000014,Vale of Glamorgan,138,121,109,104,97,97,94,109,90,120,129,125 -W06000015,Cardiff,295,222,221,216,236,195,239,208,195,235,220,264 -W06000016,Rhondda Cynon Taf,287,241,203,220,222,155,210,202,189,232,208,242 -W06000024,Merthyr Tydfil,65,53,56,54,57,42,55,41,48,55,47,67 -W06000018,Caerphilly,193,166,130,174,123,117,164,143,136,141,168,148 -W06000019,Blaenau Gwent,90,64,55,65,73,55,71,59,60,70,66,68 -W06000020,Torfaen,110,84,90,84,92,84,70,72,75,80,87,88 -W06000021,Monmouthshire,109,84,89,75,89,73,64,57,73,83,104,90 -W06000022,Newport,136,144,105,109,122,105,129,116,105,112,131,126 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -J99000001,Non-residents of England & Wales,138,100,131,120,98,95,122,124,97,107,108,85 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Footnotes:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"1 This may include records where the place of usual residence is either missing or not yet fully coded. For this reason counts for ''England and Wales'' and ''non-residents of England and Wales'' may not sum to ''England, Wales and elsewhere''.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2 The deaths of those whose usual residence is outside England and Wales are included in counts for 'England Wales and elsewhere' but excluded from any sub-division of England and Wales.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -3 Figures remain provisional until final annual data are released.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -4 Shepway was officially renamed to Folkestone and Hythe on 1 April 2018 but the change was not included on monthly deaths data until the 20 August 2018 National Statistics Postcode Lookup was published.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"5 In April 2019, some local authorities were combined. This published data represents the current Local Authorities.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Source: Office for National Statistics,NA,Released:,24 January 2020,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA diff --git a/working_files/Monthly/Monthly2019Mortality-Information.csv b/working_files/Monthly/Monthly2019Mortality-Information.csv deleted file mode 100644 index a0b2577..0000000 --- a/working_files/Monthly/Monthly2019Mortality-Information.csv +++ /dev/null @@ -1,53 +0,0 @@ -Contents -Information on monthly deaths -NA -Things you need to know -NA -"Monthly death figures provide counts of the number of deaths registered in a calendar month, by area of usual residence in England and Wales for 2019." -NA -"These figures are presented by regions (within England), unitary authorities, counties, districts and London boroughs." -NA -"Since August 2018, figures for the latest month are based on data available up to the 19th of the following month. Previously the figures were extracted on the third Thursday of the following month. This change has a negligible impact on our statistics." -NA -Notes -NA -Deaths occurring in England and Wales are registered on the General Register Office's Registration Online (RON) system. -Daily extracts of death registration records from RON are processed on our database systems. -NA -Figures remain provisional until final annual data are released. -"Due to the timeliness of this release, death registrations may be included in this publication before they are fully coded with area information. The order in which area of usual residence information is coded can affect the additivity within this publication. When provisional figures are collated:" -– A very small number of death registrations can sometimes have region of usual residence coded but no local area coding. Consequently counts for local areas may not always sum to the regional count. -"– A very small number of death registrations can sometimes have some area information coded but may still require the country of usual residence code. If necessary, country counts are derived from regional counts to ensure they are representative." -NA -"Limitations of the monthly deaths data: -Monthly deaths figures are published to meet user needs, providing very timely, but provisional counts of death registrations in England and Wales and by local authority of usual residence. At this time, registrations extracted from our deaths database have not been subject to the full quality assurance process. Consequently, any quarterly or annual figures calculated from the monthly deaths figures should only be considered as provisional." -NA -"An annual death registrations dataset for 2019 will be extracted from the ONS deaths database in 2020 and will form the basis for ONS's annual death registration figures. This annual dataset will be subject to a full quality assurance process before final figures are published. We expect to publish final annual data on 2019 death registrations in July 2020. At this time, monthly death registrations for 2019 will be updated using the annual dataset to ensure consistency with annual figures." -NA -Weekly deaths counts cannot be summed to match the counts for monthly deaths as some weeks may span more than 1 month. -NA -Bank Holidays could affect the number of registrations made within those months. -NA -Figures for the latest month are based on boundaries as of November 2019. -NA -Symbols -NA -In our mortality outputs published symbols used are: -0 denotes nil -Further information on the use of symbols is available on the Government Statistical Service (GSS) website. -NA -The ONS policy on protecting confidentiality in birth and death statistics is available on our website. -NA -Further information and enquiries -NA -Special extracts and tabulations of mortality data for England and Wales are available to order for a charge (subject to legal -"frameworks, disclosure control, resources and the ONS charging policy, where appropriate). Enquiries should be made to" -Vital Statistics Outputs Branch (mortality@ons.gov.uk or telephone: +44 (0)1633 456935. -User requested data will be published onto our website. -NA -"Access to microdata and disclosive data, that is, data which have the potential to identify an individual record, requires the approval of the ONS Microdata Release Procedure (MRP) before the data can be provided." -NA -Feedback -"We welcome feedback from users, please contact the Mortality Analysis Team" -email: mortality@ons.gov.uk -telephone: +44 (0)1633 456935 diff --git a/working_files/Monthly/Monthly2019Mortality-Related publications.csv b/working_files/Monthly/Monthly2019Mortality-Related publications.csv deleted file mode 100644 index c162c79..0000000 --- a/working_files/Monthly/Monthly2019Mortality-Related publications.csv +++ /dev/null @@ -1,39 +0,0 @@ -Contents -Related publications -NA -User guide to mortality statistics -Supporting information for these tables can be found in the User guide to mortality statistics -NA -Quality and Methodology Information -"A Quality and Methodology Information document contains important information on: -• the strengths and limitations of the data -• the quality of the output: including the accuracy of the data, how it compares with related data -• uses and users -• how the output was created -" -NA -Further mortality statistics based on death registrations are available on the ONS website: -NA -Deaths registered in England and Wales -The summary tables provide key death registration statistics for the reference year. -NA -Deaths registered in England and Wales (Series DR) -Series DR (Mortality Statistics: Deaths Registered in England and Wales) provides detailed death registration statistics for the reference year. This includes numbers of deaths by detailed underlying cause by age-sex group defined by the different chapters of the Tenth Revision of the International Classification of Diseases and Related Health Problems (ICD-10). -NA -"Vital statistics in the UK: births, deaths and marriages" -"These tables provide annual data for a selection of key statistics under the following themes: population, demography and health. Figures for the latest years may be provisional, these will be updated to final figures when data is available." -NA -"Deaths registered by area of usual residence, UK" -Presents data on death registrations in the United Kingdom by area of usual residence. The release contains a summary table providing key mortality measures (numbers and rates including age standardised mortality rates) for the United Kingdom and its constituent countries and a table providing numbers of deaths in England and Wales by age and sex. -NA -"Deaths registered weekly in England and Wales, provisional" -Weekly death figures provide provisional counts of the number of deaths registered in England and Wales in the latest eight weeks for which data are available. -NA -20th Century Mortality Files -"The 20th Century mortality files are a record of mortality in England & Wales from 1901 to 2000. The files consist of an aggregated database of deaths by age group, sex, year and underlying cause, and include populations for England & Wales." -NA -21st Century Mortality Files -"The 21st Century Mortality Files are a record of mortality in England and Wales from 2001 onwards. They are designed to complement the Twentieth Century Mortality files. The files consist of an aggregated database of deaths by age group, sex, year and underlying cause, and include populations for England and Wales." -NA -Explorable datasets for mortality statistics in England and Wales -"This dataset provides mortality statistics in England and Wales, broken down by calendar year of registration, age, sex, underlying cause of death and other selected information collected at the time of registration." diff --git a/working_files/Monthly/Monthly2019Mortality-Terms and conditions.csv b/working_files/Monthly/Monthly2019Mortality-Terms and conditions.csv deleted file mode 100644 index c8e33c6..0000000 --- a/working_files/Monthly/Monthly2019Mortality-Terms and conditions.csv +++ /dev/null @@ -1,33 +0,0 @@ -Contents -Terms and conditions -NA -A National Statistics publication -NA -National Statistics are produced to high professional standards set out in the Code of Practice for Official Statistics. They are produced free from any political interference. -NA -"The UK Statistics Authority has designated these statistics as National Statistics, in accordance with the Statistics and Registration Service Act 2007 and signifying compliance with the Code of Practice for Official Statistics." -Designation can be broadly interpreted to mean that the statistics: -• meet identified user needs -• are well explained and readily accessible -• are produced according to sound methods -• are managed impartially and objectively in the public interest -NA -Once statistics have been designated as National Statistics it is a statutory requirement that the Code of Practice shall continue to be observed. -NA -About us -"We are the executive office of the UK Statistics Authority, a non-ministerial department which reports directly to Parliament and the UK government’s single largest statistical producer. We compile information about the UK’s society and economy, and provide the evidence-base for policy and decision-making, the allocation of resources, and public accountability." -NA -NA -Copyright and reproduction -NA -© Crown copyright 2020 -"You may re-use this publication (not including logos) free of charge in any format or medium, under the terms of the Open Government Licence." -Users should include a source accreditation to ONS - Source: Office for National Statistics licensed under the Open Government Licence. -NA -Visit the Open Government Licence -"or write to the Information Policy Team, The National Archives, Kew, Richmond, Surrey, TW9 4DU;" -or email: psi@nationalarchives.gov.uk -NA -Where we have identified any third party copyright information you will need to obtain permission from the copyright holders concerned. -NA -This publication is also available on our website. diff --git a/working_files/Monthly/Monthly2019Mortality.xls b/working_files/Monthly/Monthly2019Mortality.xls deleted file mode 100644 index f35cfbe..0000000 Binary files a/working_files/Monthly/Monthly2019Mortality.xls and /dev/null differ diff --git a/working_files/Monthly/Monthly2020Mortality-Contents.csv b/working_files/Monthly/Monthly2020Mortality-Contents.csv deleted file mode 100644 index 8ab7235..0000000 --- a/working_files/Monthly/Monthly2020Mortality-Contents.csv +++ /dev/null @@ -1,10 +0,0 @@ -Contents,Monthly provisional figures on deaths registered in England and Wales -NA,NA -NA,NA -Information,Information on monthly deaths -NA,NA -Terms and conditions,Terms and conditions -NA,NA -Figures for 2020,"Deaths (numbers): by region, 2020 registrations, England and Wales" -NA,NA -Related publications,Provides links to further mortality statistics based on death registrations diff --git a/working_files/Monthly/Monthly2020Mortality-Figures for 2020.csv b/working_files/Monthly/Monthly2020Mortality-Figures for 2020.csv deleted file mode 100644 index 0ecaea0..0000000 --- a/working_files/Monthly/Monthly2020Mortality-Figures for 2020.csv +++ /dev/null @@ -1,460 +0,0 @@ -Contents,...2,...3,...4,...5,...6,...7,...8,...9,...10,...11,...12,...13,...14 -"Monthly provisional figures on deaths registered by area of usual residence, 2020",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,England and Wales -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Area of usual residence,NA,Jan-203,Feb-203,Mar-203,Apr-203,May-203,Jun-203,Jul-203,Aug-203,Sep-203,Oct-203,Nov-203,Dec-203 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"K04000001, J99000001","ENGLAND, WALES AND ELSEWHERE 1",56706,43653,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -K04000001,ENGLAND AND WALES,56597,43555,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E92000001,ENGLAND,53045,40806,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000001,NORTH EAST,2892,2250,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000047,County Durham,557,445,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000005,Darlington,137,90,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000001,Hartlepool,108,76,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000002,Middlesbrough,178,98,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000057,Northumberland,345,300,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000003,Redcar and Cleveland,150,148,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000004,Stockton-on-Tees,202,124,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000007,Tyne and Wear (Met County),1215,969,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000037,Gateshead,254,185,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000021,Newcastle upon Tyne,278,215,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000022,North Tyneside,226,165,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000023,South Tyneside,166,138,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000024,Sunderland,291,266,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000002,NORTH WEST,7513,5916,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000008,Blackburn with Darwen,141,93,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000009,Blackpool,194,155,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000049,Cheshire East,434,331,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000050,Cheshire West and Chester,367,282,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000006,Halton,141,101,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000007,Warrington,190,159,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000006,Cumbria,554,482,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000026,Allerdale,105,110,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000027,Barrow-in-Furness,67,55,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000028,Carlisle,127,92,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000029,Copeland,80,64,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000030,Eden,49,46,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000031,South Lakeland,126,115,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000001,Greater Manchester (Met County),2577,1993,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000001,Bolton,297,208,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000002,Bury,178,134,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000003,Manchester,392,297,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000004,Oldham,220,161,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000005,Rochdale,202,178,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000006,Salford,218,196,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000007,Stockport,296,216,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000008,Tameside,224,164,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000009,Trafford,223,162,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000010,Wigan,327,277,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000017,Lancashire,1380,1082,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000117,Burnley,82,91,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000118,Chorley,151,111,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000119,Fylde,127,75,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000120,Hyndburn,88,77,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000121,Lancaster,139,108,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000122,Pendle,93,92,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000123,Preston,145,109,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000124,Ribble Valley,60,58,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000125,Rossendale,79,55,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000126,South Ribble,112,72,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000127,West Lancashire,143,105,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000128,Wyre,161,129,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000002,Merseyside (Met County),1535,1238,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000011,Knowsley,152,124,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000012,Liverpool,438,348,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000014,Sefton,370,298,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000013,St. Helens,188,143,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000015,Wirral,387,325,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000003,YORKSHIRE AND THE HUMBER,5614,4308,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000011,East Riding of Yorkshire,457,326,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000010,"Kingston upon Hull, City of",289,201,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000012,North East Lincolnshire,185,146,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000013,North Lincolnshire,187,154,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000014,York,174,162,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000023,North Yorkshire,723,528,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000163,Craven,57,58,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000164,Hambleton,117,78,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000165,Harrogate,186,122,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000166,Richmondshire,66,48,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000167,Ryedale,60,44,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000168,Scarborough,157,120,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000169,Selby,80,58,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000003,South Yorkshire (Met County),1492,1171,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000016,Barnsley,256,211,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000017,Doncaster,373,271,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000018,Rotherham,295,270,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000019,Sheffield,568,419,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000006,West Yorkshire (Met County),2107,1620,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000032,Bradford,478,385,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000033,Calderdale,206,151,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000034,Kirklees,377,298,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000035,Leeds,709,492,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000036,Wakefield,337,294,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000004,EAST MIDLANDS,4862,3758,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000015,Derby,289,205,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000016,Leicester,226,204,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000018,Nottingham,240,181,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000017,Rutland,38,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000007,Derbyshire,912,667,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000032,Amber Valley,165,101,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000033,Bolsover,101,61,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000034,Chesterfield,130,103,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000035,Derbyshire Dales,81,55,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000036,Erewash,132,94,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000037,High Peak,94,67,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000038,North East Derbyshire,108,104,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000039,South Derbyshire,101,82,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000018,Leicestershire,681,495,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000129,Blaby,81,76,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000130,Charnwood,158,125,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000131,Harborough,85,59,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000132,Hinckley and Bosworth,122,89,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000133,Melton,52,31,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000134,North West Leicestershire,123,66,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000135,Oadby and Wigston,60,49,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000019,Lincolnshire,873,734,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000136,Boston,82,64,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000137,East Lindsey,204,171,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000138,Lincoln,80,87,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000139,North Kesteven,132,109,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000140,South Holland,119,96,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000141,South Kesteven,158,112,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000142,West Lindsey,98,95,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000021,Northamptonshire,726,567,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000150,Corby,57,48,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000151,Daventry,92,75,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000152,East Northamptonshire,90,80,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000153,Kettering,88,73,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000154,Northampton,218,169,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000155,South Northamptonshire,91,51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000156,Wellingborough,90,71,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000024,Nottinghamshire,877,666,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000170,Ashfield,125,93,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000171,Bassetlaw,129,102,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000172,Broxtowe,119,85,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000173,Gedling,120,105,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000174,Mansfield,137,99,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000175,Newark and Sherwood,132,93,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000176,Rushcliffe,115,89,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000005,WEST MIDLANDS,6033,4504,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000019,"Herefordshire, County of",237,188,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000051,Shropshire,391,282,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000021,Stoke-on-Trent,283,182,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000020,Telford and Wrekin,173,133,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000028,Staffordshire,898,685,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000192,Cannock Chase,99,73,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000193,East Staffordshire,108,92,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000194,Lichfield,105,92,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000195,Newcastle-under-Lyme,135,100,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000196,South Staffordshire,146,97,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000197,Stafford,133,92,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000198,Staffordshire Moorlands,100,87,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000199,Tamworth,72,52,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000031,Warwickshire,592,462,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000218,North Warwickshire,72,65,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000219,Nuneaton and Bedworth,145,112,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000220,Rugby,118,85,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000221,Stratford-on-Avon,149,112,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000222,Warwick,108,88,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E11000005,West Midlands (Met County),2780,2052,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000025,Birmingham,960,665,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000026,Coventry,307,265,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000027,Dudley,346,267,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000028,Sandwell,358,260,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000029,Solihull,235,163,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000030,Walsall,259,200,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E08000031,Wolverhampton,315,232,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000034,Worcestershire,679,520,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000234,Bromsgrove,141,74,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000235,Malvern Hills,105,81,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000236,Redditch,88,68,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000237,Worcester,87,76,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000238,Wychavon,132,128,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000239,Wyre Forest,126,93,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000006,EAST,6308,4721,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000055,Bedford,179,110,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000056,Central Bedfordshire,238,174,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000032,Luton,149,138,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000031,Peterborough,165,152,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000033,Southend-on-Sea,203,149,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000034,Thurrock,136,100,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000003,Cambridgeshire,573,477,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000008,Cambridge,74,62,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000009,East Cambridgeshire,79,67,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000010,Fenland,132,113,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000011,Huntingdonshire,170,138,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000012,South Cambridgeshire,118,97,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000012,Essex,1634,1127,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000066,Basildon,186,114,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000067,Braintree,153,111,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000068,Brentwood,81,55,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000069,Castle Point,136,90,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000070,Chelmsford,174,127,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000071,Colchester,166,129,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000072,Epping Forest,134,113,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000073,Harlow,73,51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000074,Maldon,72,55,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000075,Rochford,119,61,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000076,Tendring,249,164,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000077,Uttlesford,91,57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000015,Hertfordshire,1010,827,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000095,Broxbourne,89,71,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000096,Dacorum,126,92,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000242,East Hertfordshire,123,113,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000098,Hertsmere,98,92,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000099,North Hertfordshire,123,87,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000240,St Albans,114,106,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000243,Stevenage,87,64,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000102,Three Rivers,89,61,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000103,Watford,70,62,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000241,Welwyn Hatfield,91,79,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000020,Norfolk,1139,845,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000143,Breckland,182,140,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000144,Broadland,154,128,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000145,Great Yarmouth,117,84,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000146,King’s Lynn and West Norfolk,212,141,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000147,North Norfolk,184,120,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000148,Norwich,127,114,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000149,South Norfolk,163,118,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000029,Suffolk,882,622,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000200,Babergh,115,81,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000244,East Suffolk,346,230,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000202,Ipswich,141,88,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000203,Mid Suffolk,109,77,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000245,West Suffolk,171,146,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000007,LONDON,4990,4080,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E13000001,Inner London,1586,1351,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E09000007,Camden,144,113,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E09000001,City of London,2,3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E09000012,Hackney,103,78,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E09000013,Hammersmith and Fulham,108,82,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E09000014,Haringey,123,105,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E09000019,Islington,92,82,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E09000020,Kensington and Chelsea,88,60,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E09000022,Lambeth,138,146,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E09000023,Lewisham,160,148,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E09000025,Newham,141,112,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E09000028,Southwark,132,116,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E09000030,Tower Hamlets,96,91,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E09000032,Wandsworth,157,118,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E09000033,Westminster,102,97,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E13000002,Outer London,3404,2729,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E09000002,Barking and Dagenham,143,95,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E09000003,Barnet,224,196,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E09000004,Bexley,214,162,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E09000005,Brent,166,137,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E09000006,Bromley,260,228,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E09000008,Croydon,264,209,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E09000009,Ealing,209,152,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E09000010,Enfield,197,169,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E09000011,Greenwich,149,137,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E09000015,Harrow,169,129,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E09000016,Havering,234,193,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E09000017,Hillingdon,201,158,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E09000018,Hounslow,165,134,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E09000021,Kingston upon Thames,106,96,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E09000024,Merton,130,83,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E09000026,Redbridge,175,142,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E09000027,Richmond upon Thames,122,89,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E09000029,Sutton,149,121,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E09000031,Waltham Forest,127,99,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000008,SOUTH EAST,8777,6683,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000036,Bracknell Forest,94,51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000043,Brighton and Hove,207,157,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000046,Isle of Wight,210,168,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000035,Medway,261,183,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000042,Milton Keynes,184,153,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000044,Portsmouth,166,115,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000038,Reading,129,79,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000039,Slough,61,58,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000045,Southampton,186,149,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000037,West Berkshire,142,93,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000040,Windsor and Maidenhead,166,112,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000041,Wokingham,108,113,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000002,Buckinghamshire,478,375,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000004,Aylesbury Vale,183,117,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000005,Chiltern,81,72,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000006,South Bucks,58,66,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000007,Wycombe,156,120,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000011,East Sussex,718,549,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000061,Eastbourne,145,104,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000062,Hastings,104,89,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000063,Lewes,142,93,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000064,Rother,142,109,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000065,Wealden,185,154,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000014,Hampshire,1324,1112,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000084,Basingstoke and Deane,157,138,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000085,East Hampshire,111,89,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000086,Eastleigh,96,80,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000087,Fareham,138,103,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000088,Gosport,107,65,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000089,Hart,61,50,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000090,Havant,124,132,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000091,New Forest,209,197,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000092,Rushmoor,82,57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000093,Test Valley,127,110,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000094,Winchester,112,91,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000016,Kent,1716,1179,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000105,Ashford,135,76,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000106,Canterbury,178,141,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000107,Dartford,111,67,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000108,Dover,139,93,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000109,Gravesham,146,96,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000110,Maidstone,134,84,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000111,Sevenoaks,157,114,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000112,Folkestone and Hythe,125,89,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000113,Swale,165,115,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000114,Thanet,180,131,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000115,Tonbridge and Malling,122,90,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000116,Tunbridge Wells,124,83,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000025,Oxfordshire,623,421,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000177,Cherwell,157,105,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000178,Oxford,99,61,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000179,South Oxfordshire,126,95,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000180,Vale of White Horse,116,78,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000181,West Oxfordshire,125,82,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000030,Surrey,1015,813,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000207,Elmbridge,102,87,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000208,Epsom and Ewell,64,52,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000209,Guildford,98,92,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000210,Mole Valley,90,67,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000211,Reigate and Banstead,139,91,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000212,Runnymede,67,69,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000213,Spelthorne,86,62,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000214,Surrey Heath,102,69,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000215,Tandridge,62,74,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000216,Waverley,133,98,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000217,Woking,72,52,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000032,West Sussex,989,803,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000223,Adur,76,50,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000224,Arun,239,206,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000225,Chichester,158,123,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000226,Crawley,79,71,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000227,Horsham,140,138,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000228,Mid Sussex,154,105,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000229,Worthing,143,110,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000009,SOUTH WEST,6056,4586,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000022,Bath and North East Somerset,170,120,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000058,"Bournemouth, Christchurch and Poole",454,308,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000023,"Bristol, City of",353,275,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000052,Cornwall,725,524,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000053,Isles of Scilly,3,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000059,Dorset,506,353,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000024,North Somerset,248,193,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000026,Plymouth,262,177,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000025,South Gloucestershire,231,153,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000030,Swindon,167,147,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000027,Torbay,191,136,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E06000054,Wiltshire,502,393,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000008,Devon,911,748,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000040,East Devon,197,161,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000041,Exeter,106,90,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000042,Mid Devon,87,64,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000043,North Devon,107,80,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000044,South Hams,92,67,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000045,Teignbridge,163,150,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000046,Torridge,94,74,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000047,West Devon,65,62,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000013,Gloucestershire,687,522,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000078,Cheltenham,130,107,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000079,Cotswold,116,77,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000080,Forest of Dean,82,74,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000081,Gloucester,131,89,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000082,Stroud,136,102,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000083,Tewkesbury,92,73,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E10000027,Somerset,646,537,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000187,Mendip,120,107,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000188,Sedgemoor,136,124,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000246,Somerset West and Taunton,186,150,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E07000189,South Somerset,204,156,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W92000004,WALES,3552,2749,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W06000001,Isle of Anglesey,81,81,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W06000002,Gwynedd,154,111,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W06000003,Conwy,182,90,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W06000004,Denbighshire,150,105,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W06000005,Flintshire,167,126,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W06000006,Wrexham,131,122,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W06000023,Powys,176,152,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W06000008,Ceredigion,106,82,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W06000009,Pembrokeshire,156,131,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W06000010,Carmarthenshire,221,217,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W06000011,Swansea,300,241,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W06000012,Neath Port Talbot,149,162,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W06000013,Bridgend,189,130,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W06000014,Vale of Glamorgan,142,104,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W06000015,Cardiff,255,204,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W06000016,Rhondda Cynon Taf,278,199,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W06000024,Merthyr Tydfil,51,49,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W06000018,Caerphilly,195,148,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W06000019,Blaenau Gwent,90,74,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W06000020,Torfaen,104,69,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W06000021,Monmouthshire,98,52,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W06000022,Newport,177,100,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -J99000001,Non-residents of England & Wales,109,98,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Footnotes:,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"1 This may include records where the place of usual residence is either missing or not yet fully coded. For this reason counts for ''England and Wales'' and ''non-residents of England and Wales'' may not sum to ''England, Wales and elsewhere''.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2 The deaths of those whose usual residence is outside England and Wales are included in counts for 'England Wales and elsewhere' but excluded from any sub-division of England and Wales.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -3 Figures remain provisional until final annual data are released.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -4 Shepway was officially renamed to Folkestone and Hythe on 1 April 2018 but the change was not included on monthly deaths data until the 20 August 2018 National Statistics Postcode Lookup was published.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"5 In April 2019, some local authorities were combined. This published data represents the current Local Authorities.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"6 For deaths registered from 1st January 2020, cause of death is coded to the ICD-10 classification using MUSE 5.5 software. Previous years were coded to IRIS 4.2.3, further information about the change in software is available.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Source: Office for National Statistics,NA,Released:,26 March 2020,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA diff --git a/working_files/Monthly/Monthly2020Mortality-Information.csv b/working_files/Monthly/Monthly2020Mortality-Information.csv deleted file mode 100644 index f84b9c0..0000000 --- a/working_files/Monthly/Monthly2020Mortality-Information.csv +++ /dev/null @@ -1,55 +0,0 @@ -Contents -Information on monthly deaths -NA -Things you need to know -NA -"Monthly death figures provide counts of the number of deaths registered in a calendar month, by area of usual residence in England and Wales for 2020." -NA -"These figures are presented by regions (within England), unitary authorities, counties, districts and London boroughs." -NA -"Since August 2018, figures for the latest month are based on data available up to the 19th of the following month. Previously the figures were extracted on the third Thursday of the following month. This change has a negligible impact on our statistics." -NA -Notes -NA -Deaths occurring in England and Wales are registered on the General Register Office's Registration Online (RON) system. -Daily extracts of death registration records from RON are processed on our database systems. -NA -Figures remain provisional until final annual data are released. -"Due to the timeliness of this release, death registrations may be included in this publication before they are fully coded with area information. The order in which area of usual residence information is coded can affect the additivity within this publication. When provisional figures are collated:" -– A very small number of death registrations can sometimes have region of usual residence coded but no local area coding. Consequently counts for local areas may not always sum to the regional count. -"– A very small number of death registrations can sometimes have some area information coded but may still require the country of usual residence code. If necessary, country counts are derived from regional counts to ensure they are representative." -NA -"Limitations of the monthly deaths data: -Monthly deaths figures are published to meet user needs, providing very timely, but provisional counts of death registrations in England and Wales and by local authority of usual residence. At this time, registrations extracted from our deaths database have not been subject to the full quality assurance process. Consequently, any quarterly or annual figures calculated from the monthly deaths figures should only be considered as provisional." -NA -"For deaths registered from 1st January 2020, cause of death is coded to the ICD-10 classification using MUSE 5.5 software. Previous years were coded to IRIS 4.2.3, further information about the change in software is available." -NA -"An annual death registrations dataset for 2019 will be extracted from the ONS deaths database in 2020 and will form the basis for ONS's annual death registration figures. This annual dataset will be subject to a full quality assurance process before final figures are published. We expect to publish final annual data on 2019 death registrations in July 2020. At this time, monthly death registrations for 2019 will be updated using the annual dataset to ensure consistency with annual figures." -NA -Weekly deaths counts cannot be summed to match the counts for monthly deaths as some weeks may span more than 1 month. -NA -Bank Holidays could affect the number of registrations made within those months. -NA -Figures for the latest month are based on boundaries as of February 2020. -NA -Symbols -NA -In our mortality outputs published symbols used are: -0 denotes nil -Further information on the use of symbols is available on the Government Statistical Service (GSS) website. -NA -The ONS policy on protecting confidentiality in birth and death statistics is available on our website. -NA -Further information and enquiries -NA -Special extracts and tabulations of mortality data for England and Wales are available to order for a charge (subject to legal -"frameworks, disclosure control, resources and the ONS charging policy, where appropriate). Enquiries should be made to" -Mortality Analysis Team (health.data@ons.gov.uk or telephone: +44 (0)1633 456935. -User requested data will be published onto our website. -NA -"Access to microdata and disclosive data, that is, data which have the potential to identify an individual record, requires the approval of the ONS Microdata Release Procedure (MRP) before the data can be provided." -NA -Feedback -"We welcome feedback from users, please contact the Mortality Analysis Team" -email: health.data@ons.gov.uk -telephone: +44 (0)1633 456935 diff --git a/working_files/Monthly/Monthly2020Mortality-Related publications.csv b/working_files/Monthly/Monthly2020Mortality-Related publications.csv deleted file mode 100644 index c162c79..0000000 --- a/working_files/Monthly/Monthly2020Mortality-Related publications.csv +++ /dev/null @@ -1,39 +0,0 @@ -Contents -Related publications -NA -User guide to mortality statistics -Supporting information for these tables can be found in the User guide to mortality statistics -NA -Quality and Methodology Information -"A Quality and Methodology Information document contains important information on: -• the strengths and limitations of the data -• the quality of the output: including the accuracy of the data, how it compares with related data -• uses and users -• how the output was created -" -NA -Further mortality statistics based on death registrations are available on the ONS website: -NA -Deaths registered in England and Wales -The summary tables provide key death registration statistics for the reference year. -NA -Deaths registered in England and Wales (Series DR) -Series DR (Mortality Statistics: Deaths Registered in England and Wales) provides detailed death registration statistics for the reference year. This includes numbers of deaths by detailed underlying cause by age-sex group defined by the different chapters of the Tenth Revision of the International Classification of Diseases and Related Health Problems (ICD-10). -NA -"Vital statistics in the UK: births, deaths and marriages" -"These tables provide annual data for a selection of key statistics under the following themes: population, demography and health. Figures for the latest years may be provisional, these will be updated to final figures when data is available." -NA -"Deaths registered by area of usual residence, UK" -Presents data on death registrations in the United Kingdom by area of usual residence. The release contains a summary table providing key mortality measures (numbers and rates including age standardised mortality rates) for the United Kingdom and its constituent countries and a table providing numbers of deaths in England and Wales by age and sex. -NA -"Deaths registered weekly in England and Wales, provisional" -Weekly death figures provide provisional counts of the number of deaths registered in England and Wales in the latest eight weeks for which data are available. -NA -20th Century Mortality Files -"The 20th Century mortality files are a record of mortality in England & Wales from 1901 to 2000. The files consist of an aggregated database of deaths by age group, sex, year and underlying cause, and include populations for England & Wales." -NA -21st Century Mortality Files -"The 21st Century Mortality Files are a record of mortality in England and Wales from 2001 onwards. They are designed to complement the Twentieth Century Mortality files. The files consist of an aggregated database of deaths by age group, sex, year and underlying cause, and include populations for England and Wales." -NA -Explorable datasets for mortality statistics in England and Wales -"This dataset provides mortality statistics in England and Wales, broken down by calendar year of registration, age, sex, underlying cause of death and other selected information collected at the time of registration." diff --git a/working_files/Monthly/Monthly2020Mortality-Terms and conditions.csv b/working_files/Monthly/Monthly2020Mortality-Terms and conditions.csv deleted file mode 100644 index c8e33c6..0000000 --- a/working_files/Monthly/Monthly2020Mortality-Terms and conditions.csv +++ /dev/null @@ -1,33 +0,0 @@ -Contents -Terms and conditions -NA -A National Statistics publication -NA -National Statistics are produced to high professional standards set out in the Code of Practice for Official Statistics. They are produced free from any political interference. -NA -"The UK Statistics Authority has designated these statistics as National Statistics, in accordance with the Statistics and Registration Service Act 2007 and signifying compliance with the Code of Practice for Official Statistics." -Designation can be broadly interpreted to mean that the statistics: -• meet identified user needs -• are well explained and readily accessible -• are produced according to sound methods -• are managed impartially and objectively in the public interest -NA -Once statistics have been designated as National Statistics it is a statutory requirement that the Code of Practice shall continue to be observed. -NA -About us -"We are the executive office of the UK Statistics Authority, a non-ministerial department which reports directly to Parliament and the UK government’s single largest statistical producer. We compile information about the UK’s society and economy, and provide the evidence-base for policy and decision-making, the allocation of resources, and public accountability." -NA -NA -Copyright and reproduction -NA -© Crown copyright 2020 -"You may re-use this publication (not including logos) free of charge in any format or medium, under the terms of the Open Government Licence." -Users should include a source accreditation to ONS - Source: Office for National Statistics licensed under the Open Government Licence. -NA -Visit the Open Government Licence -"or write to the Information Policy Team, The National Archives, Kew, Richmond, Surrey, TW9 4DU;" -or email: psi@nationalarchives.gov.uk -NA -Where we have identified any third party copyright information you will need to obtain permission from the copyright holders concerned. -NA -This publication is also available on our website. diff --git a/working_files/Monthly/Monthly2020Mortality.xls b/working_files/Monthly/Monthly2020Mortality.xls deleted file mode 100644 index bb27818..0000000 Binary files a/working_files/Monthly/Monthly2020Mortality.xls and /dev/null differ diff --git a/working_files/Weekly/2010Mortality-Contents.csv b/working_files/Weekly/2010Mortality-Contents.csv deleted file mode 100644 index 5ea13aa..0000000 --- a/working_files/Weekly/2010Mortality-Contents.csv +++ /dev/null @@ -1,11 +0,0 @@ -Contents,"Weekly Provisional Figures on Deaths Registered in -England and Wales" -NA,NA -NA,NA -Metadata,Information on weekly deaths -NA,NA -Terms and conditions,Terms and conditions -NA,NA -Weekly Figures for 2010,"Deaths (numbers): by age, sex and region, 2010 registrations, England and Wales" -NA,NA -Related publications,Provides links to further mortality statistics based on death registrations diff --git a/working_files/Weekly/2010Mortality-Metadata.csv b/working_files/Weekly/2010Mortality-Metadata.csv deleted file mode 100644 index 4221202..0000000 --- a/working_files/Weekly/2010Mortality-Metadata.csv +++ /dev/null @@ -1,56 +0,0 @@ -Contents -Metadata -NA -Introduction -NA -"Weekly death figures provide provisional counts of the number of deaths registered in England and Wales for which data are available, and the number of deaths for which the underlying cause was coded to respiratory diseases as defined in the International Statistical Classification of Diseases and Related Health Problems Tenth Revision (ICD-10)." -NA -"These figures are also presented by age group, sex and by area of usual residence." -NA -Notes and definitions -NA -Deaths occurring in England and Wales are registered on the General Register Office's Registration Online system (RON). -NA -Daily extracts of death registration records from RON are processed on ONS' database systems. -NA -Provisional data on deaths registered in each week (ending on a Friday) are compiled at the end of the following week. -NA -Bank Holidays could affect the number of registrations made within those weeks. -NA -The respiratory diseases counts are updated with each weekly publication as the coding of the underlying cause is not always complete at the time of production. -NA -The 10th revision of the International Statistical Classification of Diseases (ICD-10) was introduced in England and Wales in January 2001. Since then updates to the classification have been authorised by the World Health Organisation and are in use in other countries. -NA -"Where there are the same values in categories in consecutive weeks, the counts have been checked and are made up of unique death registrations." -NA -Symbols -NA -In ONS mortality outputs published symbols used are: -: denotes not available -For further information please refer to -https://gss.civilservice.gov.uk/statistics/a-z-of-policies-and-guidance/guidance-use-data-markers/ -NA -The ONS policy on protecting confidentiality in birth and death statistics is available on the ONS website: -www.ons.gov.uk/ons/guide-method/best-practice/disclosure-control-policy-for-birth-and-death-statistics/index.html -NA -Further information and enquiries -NA -General enquiries should be addressed to: -Vital Statistics Outputs Branch -Office for National Statistics -Segensworth Road -Titchfield -Fareham -Hants PO15 5RR -Telephone: +44 (0)1329 444110 -email: vsob@ons.gsi.gov.uk -NA -"Special extracts and tabulations of mortality data for England and Wales are available (subject to legal frameworks, disclosure control, resources and agreement of costs, where appropriate). Such enquiries should be made to the postal or email address above." -NA -Our charging policy is available online. -"In line with the ONS approach to open data," -all ad hoc data requests will be published onto the website. -NA -Feedback -NA -We welcome feedback from users. Please send feedback to the postal or email address above. diff --git a/working_files/Weekly/2010Mortality-Related publications.csv b/working_files/Weekly/2010Mortality-Related publications.csv deleted file mode 100644 index 582d0b4..0000000 --- a/working_files/Weekly/2010Mortality-Related publications.csv +++ /dev/null @@ -1,28 +0,0 @@ -Contents -Related publications -NA -Mortality metadata -Supporting information for these tables can be found in mortality metadata. -NA -Quality and Methodology Information -Quality and Methodology Information notes for Mortality and Child Mortality. -NA -Further mortality statistics based on death registrations are available on the ONS website: -NA -"Interactive Mapping Tool, England and Wales" -An interactive mapping tool which enables trends in mortality to be analysed at the local level. Mortality rates for 2001 onwards have been calculated using the 2013 European Standard Population (ESP). -NA -"Death summary tables, England and Wales" -The summary tables provide key death registration statistics for the reference year. -NA -Deaths registered in England and Wales (Series DR) -Series DR (Mortality Statistics: Deaths Registered in England and Wales) provides detailed death registration statistics for the reference year. This includes numbers of deaths by detailed underlying cause by age-sex group defined by the different chapters of the Tenth Revision of the International Statistical Classification of Diseases and Related Health Problems (ICD-10). -NA -"Monthly figures on deaths registered by area of usual residence, England and Wales" -"To meet user needs, very timely but provisional counts of monthly death registrations in England and Wales are published by area of usual residence. Figures remain provisional until final annual data are released." -NA -"Vital statistics: Population and health reference tables, United Kingdom and constituent countries" -"These tables provide annual data for a selection of key statistics under the following themes: population, demography and health. Figures for the latest years may be provisional, these will be updated to final figures when data are available." -NA -Mortality Statistics: Deaths registered in England and Wales by area of usual residence -Presents data on death registrations in the United Kingdom by area of usual residence. The release contains a summary table providing key mortality measures (numbers and rates including age standardised mortality rates) for the United Kingdom and its constituent countries and a table providing numbers of deaths in England and Wales by age and sex. diff --git a/working_files/Weekly/2010Mortality-Terms and conditions.csv b/working_files/Weekly/2010Mortality-Terms and conditions.csv deleted file mode 100644 index 86a4467..0000000 --- a/working_files/Weekly/2010Mortality-Terms and conditions.csv +++ /dev/null @@ -1,34 +0,0 @@ -Contents -Terms and conditions -NA -A National Statistics publication -NA -National Statistics are produced to high professional standards set out in the Code of Practice for Official Statistics. They are produced free from any political interference. -NA -"The United Kingdom Statistics Authority has designated these statistics as National Statistics, in accordance with the Statistics and Registration Service Act 2007 and signifying compliance with the Code of Practice for Official Statistics." -Designation can be broadly interpreted to mean that the statistics: -• meet identified user needs; -• are well explained and readily accessible; -"• are produced according to sound methods, and" -• are managed impartially and objectively in the public interest. -NA -Once statistics have been designated as National Statistics it is a statutory requirement that the Code of Practice shall continue to be observed. -NA -About us -NA -"We are the executive office of the UK Statistics Authority, a non-ministerial department which reports directly to Parliament and the UK government’s single largest statistical producer. We compile information about the UK’s society and economy, and provide the evidence-base for policy and decision-making, the allocation of resources, and public accountability." -NA -Copyright and reproduction -NA -© Crown copyright 2016 -"You may re-use this document/publication (not including logos) free of charge in any format or medium, under the terms of the Open Government Licence." -Users should include a source accreditation to ONS - Source: Office for National Statistics licensed under the Open Government Licence. -NA -To view this licence visit: -www.nationalarchives.gov.uk/doc/open-government-licence -"or write to the Information Policy Team, The National Archives, Kew, Richmond, Surrey, TW9 4DU;" -or email: psi@nationalarchives.gsi.gov.uk -NA -Where we have identified any third party copyright information you will need to obtain permission from the copyright holders concerned. -NA -This document/publication is also available on our website at www.ons.gov.uk diff --git a/working_files/Weekly/2010Mortality-Weekly Figures 2010.csv b/working_files/Weekly/2010Mortality-Weekly Figures 2010.csv deleted file mode 100644 index b9fd25e..0000000 --- a/working_files/Weekly/2010Mortality-Weekly Figures 2010.csv +++ /dev/null @@ -1,66 +0,0 @@ -Contents,...2,...3,...4,...5,...6,...7,...8,...9,...10,...11,...12,...13,...14,...15,...16,...17,...18,...19,...20,...21,...22,...23,...24,...25,...26,...27,...28,...29,...30,...31,...32,...33,...34,...35,...36,...37,...38,...39,...40,...41,...42,...43,...44,...45,...46,...47,...48,...49,...50,...51,...52,...53 -Weekly provisional figures on deaths registered in England and Wales,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Week number,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52 -Week ended,40186,40193,40200,40207,40214,40221,40228,40235,40242,40249,40256,40263,40270,40277,40284,40291,40298,40305,40312,40319,40326,40333,40340,40347,40354,40361,40368,40375,40382,40389,40396,40403,40410,40417,40424,40431,40438,40445,40452,40459,40466,40473,40480,40487,40494,40501,40508,40515,40522,40529,40536,40543 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"Total deaths, all ages",12968,12541,11762,11056,10524,10117,10102,10295,9981,9792,9729,9631,8004,9756,9892,9449,9503,8343,9483,9190,9452,8178,9259,8513,8461,8973,8627,8541,8261,8257,8467,8318,8584,8635,7708,8961,8727,8943,8759,9195,9218,9286,9275,9668,9406,9437,9473,9220,11193,10880,11484,9689 -Total deaths: average of corresponding,12050,12600,11692.2,11069.2,10840.4,10602.4,10774.8,10715.2,10793.8,10572.8,10432.2,9646.8,10315,10013.8,9696,10259.8,10025,9378.8,9090,9474.8,9384.2,8464.6,9332.4,9072.8,9013.8,8791.6,8914,8745.2,8762.8,8846.2,8669.4,8611.4,8651.4,8683.8,8100.8,8596.4,8654,8652.4,8827,8894.6,9124.6,9192,9327.6,9420.2,9547.8,9671.2,9856,9898.4,10175.2,10453.6,10925,8825 -week over the previous five years1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"Deaths by underlying cause2,3",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -All respiratory diseases (ICD-10 J00-J99) ICD-10 v 2001,2345,2293,1955,1698,1635,1566,1551,1468,1412,1381,1303,1290,1092,1415,1305,1233,1232,1144,1214,1164,1315,1057,1191,988,984,1135,1074,978,878,903,906,914,1046,962,888,1032,1003,1012,1068,1183,1188,1232,1194,1306,1274,1224,1250,1215,1586,1674,2000,1916 -Persons 4,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Under 1 year,61,69,66,68,72,79,71,73,55,45,53,61,50,66,63,66,59,59,70,71,78,49,46,72,57,58,61,74,55,68,61,62,46,58,52,54,68,67,68,66,70,46,55,66,58,55,57,51,59,62,64,40 -01-14,24,29,18,21,18,28,17,27,31,28,24,32,16,19,21,31,19,13,25,22,26,20,14,18,15,22,20,26,19,15,17,20,20,13,13,22,21,19,23,24,28,22,23,21,16,11,23,19,29,23,35,21 -15-44,299,331,347,336,317,308,329,340,348,334,294,303,230,288,321,333,325,240,335,356,352,244,303,291,311,279,313,291,302,289,355,327,280,278,249,322,320,317,282,315,307,318,323,318,307,319,307,280,338,349,405,218 -45-64,1570,1465,1392,1300,1308,1239,1276,1315,1230,1259,1307,1227,1035,1242,1276,1243,1220,1119,1262,1165,1205,1080,1292,1182,1145,1161,1203,1174,1200,1075,1211,1086,1144,1160,1045,1176,1206,1131,1160,1214,1315,1205,1198,1215,1221,1185,1198,1199,1396,1466,1463,1254 -65-74,2049,1860,1781,1666,1588,1596,1560,1600,1547,1552,1572,1566,1256,1603,1646,1525,1564,1379,1497,1525,1616,1371,1527,1497,1437,1497,1376,1404,1359,1377,1434,1386,1425,1462,1292,1539,1476,1455,1440,1455,1467,1495,1462,1581,1507,1540,1502,1516,1736,1642,1796,1514 -75-84,3952,3883,3501,3359,3123,3002,3015,3106,3003,2917,2895,2870,2385,2958,3058,2821,2857,2574,2973,2689,2861,2416,2727,2530,2502,2644,2688,2582,2533,2464,2557,2478,2604,2531,2316,2684,2534,2651,2564,2785,2703,2766,2861,2851,2829,2856,2932,2764,3336,3193,3465,2861 -85+,5012,4902,4654,4305,4089,3864,3834,3833,3765,3653,3581,3554,2971,3553,3496,3429,3458,2955,3321,3361,3310,2996,3350,2923,2994,3306,2964,2988,2791,2965,2828,2958,3063,3123,2741,3164,3093,3299,3218,3334,3328,3433,3350,3616,3468,3471,3454,3391,4298,4145,4255,3778 -Males 4,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Under 1 year,25,40,35,39,32,45,40,36,33,27,34,37,28,35,38,35,33,32,33,35,43,30,30,32,37,31,34,36,33,40,28,38,26,28,26,33,37,30,43,38,35,23,27,38,28,32,32,22,38,35,39,24 -01-14,9,17,9,9,11,14,3,14,16,20,14,17,8,9,8,16,12,8,10,12,18,14,5,10,6,9,14,15,8,7,10,6,8,11,7,11,13,14,10,17,18,15,10,15,12,7,12,14,15,12,15,13 -15-44,184,214,219,222,203,200,216,222,235,214,189,185,144,176,196,229,220,148,217,232,221,155,197,189,211,179,207,197,195,191,224,213,169,193,159,210,215,227,185,204,202,200,207,204,203,208,203,187,212,214,249,132 -45-64,894,895,826,770,764,753,760,780,743,726,775,725,614,764,780,757,740,667,763,686,742,650,780,716,686,720,731,734,722,636,700,635,683,684,623,716,746,685,676,731,807,706,738,731,710,701,713,697,854,901,870,744 -65-74,1214,1082,1045,976,914,963,927,948,940,912,922,923,749,949,968,898,912,818,910,888,947,813,870,860,835,897,835,804,808,796,834,801,852,872,765,906,885,828,837,839,869,881,873,928,898,900,896,902,1051,984,1037,874 -75-84,2004,1925,1755,1687,1635,1611,1521,1551,1529,1446,1468,1488,1236,1538,1611,1494,1523,1327,1511,1375,1480,1209,1424,1327,1283,1296,1430,1353,1338,1288,1344,1258,1372,1319,1177,1373,1334,1303,1319,1401,1412,1423,1454,1459,1489,1485,1483,1413,1762,1642,1743,1395 -85+,1683,1719,1609,1458,1441,1346,1373,1334,1288,1297,1247,1205,1067,1276,1193,1200,1196,1092,1211,1179,1145,1082,1222,1121,1050,1149,1053,1067,991,1008,1018,1031,1039,1120,1005,1097,1077,1171,1128,1191,1222,1215,1190,1295,1239,1212,1244,1206,1546,1427,1471,1339 -Females 4,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Under 1 year,36,29,31,29,40,34,31,37,22,18,19,24,22,31,25,31,26,27,37,36,35,19,16,40,20,27,27,38,22,28,33,24,20,30,26,21,31,37,25,28,35,23,28,28,30,23,25,29,21,27,25,16 -01-14,15,12,9,12,7,14,14,13,15,8,10,15,8,10,13,15,7,5,15,10,8,6,9,8,9,13,6,11,11,8,7,14,12,2,6,11,8,5,13,7,10,7,13,6,4,4,11,5,14,11,20,8 -15-44,115,117,128,114,114,108,113,118,113,120,105,118,86,112,125,104,105,92,118,124,131,89,106,102,100,100,106,94,107,98,131,114,111,85,90,112,105,90,97,111,105,118,116,114,104,111,104,93,126,135,156,86 -45-64,676,570,566,530,544,486,516,535,487,533,532,502,421,478,496,486,480,452,499,479,463,430,512,466,459,441,472,440,478,439,511,451,461,476,422,460,460,446,484,483,508,499,460,484,511,484,485,502,542,565,593,510 -65-74,835,778,736,690,674,633,633,652,607,640,650,643,507,654,678,627,652,561,587,637,669,558,657,637,602,600,541,600,551,581,600,585,573,590,527,633,591,627,603,616,598,614,589,653,609,640,606,614,685,658,759,640 -75-84,1948,1958,1746,1672,1488,1391,1494,1555,1474,1471,1427,1382,1149,1420,1447,1327,1334,1247,1462,1314,1381,1207,1303,1203,1219,1348,1258,1229,1195,1176,1213,1220,1232,1212,1139,1311,1200,1348,1245,1384,1291,1343,1407,1392,1340,1371,1449,1351,1574,1551,1722,1466 -85+,3329,3183,3045,2847,2648,2518,2461,2499,2477,2356,2334,2349,1904,2277,2303,2229,2262,1863,2110,2182,2165,1914,2128,1802,1944,2157,1911,1921,1800,1957,1810,1927,2024,2003,1736,2067,2016,2128,2090,2143,2106,2218,2160,2321,2229,2259,2210,2185,2752,2718,2784,2439 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Deaths by Region of usual residence 5,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -North East,648,612,550,555,556,553,521,471,535,512,529,498,394,517,516,486,516,444,516,502,474,457,539,450,464,446,507,444,442,453,479,417,447,471,407,446,442,468,448,501,485,506,519,491,514,498,463,458,549,558,616,527 -North West,1686,1772,1576,1495,1385,1402,1371,1363,1417,1390,1316,1292,1130,1357,1369,1328,1252,1150,1276,1248,1292,1145,1268,1118,1157,1236,1163,1153,1108,1155,1110,1138,1169,1187,1081,1313,1256,1137,1252,1265,1239,1206,1342,1370,1319,1306,1356,1343,1413,1509,1605,1408 -Yorkshire and The Humber,1317,1163,1133,1031,987,941,960,1040,952,984,965,965,768,937,995,880,964,870,944,896,983,827,902,834,863,851,814,829,857,858,849,844,850,895,788,866,830,907,885,853,907,1002,917,923,916,940,960,888,1220,1097,1098,976 -East Midlands,1091,1098,963,938,874,858,802,880,778,800,820,792,682,850,794,782,759,660,812,757,782,661,795,664,715,734,694,753,685,629,647,696,721,675,626,784,736,819,698,744,737,744,766,835,790,807,851,750,896,913,971,834 -West Midlands,1370,1258,1216,1106,1097,1024,1029,1020,1060,941,993,970,874,1010,998,971,994,821,935,930,962,807,931,894,894,924,855,867,837,869,894,893,905,901,784,877,856,920,892,931,988,936,892,943,956,972,919,1016,1114,1121,1159,1036 -East,1412,1263,1174,1143,1156,1032,1099,1149,1064,1074,1005,1039,814,1002,1068,1048,1021,899,937,964,1033,845,962,908,897,920,886,851,901,882,883,847,840,898,784,897,891,949,898,967,993,990,1012,1043,1031,942,985,994,1140,1114,1233,950 -London,1226,1262,1186,1093,1035,1049,1031,983,917,960,979,920,731,981,950,918,916,797,963,916,939,848,908,812,805,887,861,900,852,777,826,783,882,817,740,838,880,858,852,955,898,894,944,961,900,889,883,808,1107,1015,1149,965 -South East,1904,1981,1877,1856,1576,1547,1570,1594,1580,1457,1466,1484,1174,1473,1476,1438,1443,1252,1463,1401,1415,1202,1413,1299,1283,1425,1315,1285,1154,1187,1303,1292,1280,1307,1151,1372,1348,1364,1294,1448,1415,1450,1363,1517,1430,1452,1440,1293,1866,1701,1717,1331 -South West,1395,1354,1294,1150,1147,1070,1069,1098,1041,1042,1015,1066,921,991,1056,1019,999,872,1055,965,978,831,927,988,848,939,950,862,875,873,906,874,939,938,817,992,933,930,934,937,976,942,968,992,963,1010,987,1003,1170,1143,1157,924 -Wales,879,758,774,663,688,622,636,665,623,607,617,591,501,608,639,557,616,555,565,591,563,541,591,525,510,592,555,573,528,552,538,510,526,511,514,531,508,567,579,580,562,599,531,572,564,597,605,651,695,690,751,707 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Footnotes,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"1 This average is based on the actual number of death registrations recorded for each corresponding week over the previous five years. Moveable public holidays, when register offices are closed, affect the number of registrations made in the published weeks and in the corresponding weeks in previous years.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2 Counts of deaths by underlying cause exclude deaths at age under 28 days.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -3 Coding of deaths by underlying cause for the latest week is not yet complete.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"4Does not include deaths where age is either missing or not yet fully coded. For this reason counts of 'Persons', 'Males' and 'Females' may not sum to 'Total Deaths, all ages'.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"5 Does not include deaths of those resident outside England and Wales or those records where the place of residence is either missing or not yet fully coded. For this reason counts for ""Deaths by Region of usual residence"" may not sum to ""Total deaths, all ages"".",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Source: Office for National Statistics,Released:,40603,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA diff --git a/working_files/Weekly/2010Mortality.xls b/working_files/Weekly/2010Mortality.xls deleted file mode 100644 index 6f9842c..0000000 Binary files a/working_files/Weekly/2010Mortality.xls and /dev/null differ diff --git a/working_files/Weekly/2011Mortality-Contents.csv b/working_files/Weekly/2011Mortality-Contents.csv deleted file mode 100644 index 3603aa3..0000000 --- a/working_files/Weekly/2011Mortality-Contents.csv +++ /dev/null @@ -1,11 +0,0 @@ -Contents,"Weekly Provisional Figures on Deaths Registered in -England and Wales" -NA,NA -NA,NA -Metadata,Information on weekly deaths -NA,NA -Terms and conditions,Terms and conditions -NA,NA -Weekly Figures for 2011,"Deaths (numbers): by age, sex and region, 2011 registrations, England and Wales" -NA,NA -Related publications,Provides links to further mortality statistics based on death registrations diff --git a/working_files/Weekly/2011Mortality-Metadata.csv b/working_files/Weekly/2011Mortality-Metadata.csv deleted file mode 100644 index 6cbe362..0000000 --- a/working_files/Weekly/2011Mortality-Metadata.csv +++ /dev/null @@ -1,57 +0,0 @@ -Contents -Metadata -NA -Introduction -NA -"Weekly death figures provide provisional counts of the number of deaths registered in England and Wales for which data are available, and the number of deaths for which the underlying cause was coded to respiratory diseases as defined in the International Statistical Classification of Diseases and Related Health Problems Tenth Revision (ICD-10)." -NA -"These figures are also presented by age group, sex and by area of usual residence." -NA -Notes and definitions -NA -Deaths occurring in England and Wales are registered on the General Register Office's Registration Online system (RON). -NA -Daily extracts of death registration records from RON are processed on ONS' database systems. -NA -Provisional data on deaths registered in each week (ending on a Friday) are compiled at the end of the following week. -NA -Bank Holidays could affect the number of registrations made within those weeks. -NA -The respiratory diseases counts are updated with each weekly publication as the coding of the underlying cause is not always complete at the time of production. -NA -"From January 2011, ONS has introduced a new version of the software used to code cause of death. Deaths for week 1 2011 have also been coded to the previous version and therefore are comparable to figures for 2010. The 10th revision of the International Statistical Classification of Diseases (ICD-10) was introduced in England and Wales in January 2001. Since then updates to the classification have been authorised by the World Health Organisation and are in use in other countries. The new version (ICDv2010) has made some changes to the allocation of cause of death. Further information is available in" -"Results of the ICD-10 v2010 bridge coding study, England and Wales, 2009" -NA -"Where there are the same values in categories in consecutive weeks, the counts have been checked and are made up of unique death registrations." -NA -Symbols -NA -In ONS mortality outputs published symbols used are: -: denotes not available -For further information please refer to -https://gss.civilservice.gov.uk/statistics/a-z-of-policies-and-guidance/guidance-use-data-markers/ -NA -The ONS policy on protecting confidentiality in birth and death statistics is available on the ONS website: -www.ons.gov.uk/ons/guide-method/best-practice/disclosure-control-policy-for-birth-and-death-statistics/index.html -NA -Further information and enquiries -NA -General enquiries should be addressed to: -Vital Statistics Outputs Branch -Office for National Statistics -Segensworth Road -Titchfield -Fareham -Hants PO15 5RR -Telephone: +44 (0)1329 444110 -email: vsob@ons.gsi.gov.uk -NA -"Special extracts and tabulations of mortality data for England and Wales are available (subject to legal frameworks, disclosure control, resources and agreement of costs, where appropriate). Such enquiries should be made to the postal or email address above." -NA -Our charging policy is available online. -"In line with the ONS approach to open data," -all ad hoc data requests will be published onto the website. -NA -Feedback -NA -We welcome feedback from users. Please send feedback to the postal or email address above. diff --git a/working_files/Weekly/2011Mortality-Related publications.csv b/working_files/Weekly/2011Mortality-Related publications.csv deleted file mode 100644 index 582d0b4..0000000 --- a/working_files/Weekly/2011Mortality-Related publications.csv +++ /dev/null @@ -1,28 +0,0 @@ -Contents -Related publications -NA -Mortality metadata -Supporting information for these tables can be found in mortality metadata. -NA -Quality and Methodology Information -Quality and Methodology Information notes for Mortality and Child Mortality. -NA -Further mortality statistics based on death registrations are available on the ONS website: -NA -"Interactive Mapping Tool, England and Wales" -An interactive mapping tool which enables trends in mortality to be analysed at the local level. Mortality rates for 2001 onwards have been calculated using the 2013 European Standard Population (ESP). -NA -"Death summary tables, England and Wales" -The summary tables provide key death registration statistics for the reference year. -NA -Deaths registered in England and Wales (Series DR) -Series DR (Mortality Statistics: Deaths Registered in England and Wales) provides detailed death registration statistics for the reference year. This includes numbers of deaths by detailed underlying cause by age-sex group defined by the different chapters of the Tenth Revision of the International Statistical Classification of Diseases and Related Health Problems (ICD-10). -NA -"Monthly figures on deaths registered by area of usual residence, England and Wales" -"To meet user needs, very timely but provisional counts of monthly death registrations in England and Wales are published by area of usual residence. Figures remain provisional until final annual data are released." -NA -"Vital statistics: Population and health reference tables, United Kingdom and constituent countries" -"These tables provide annual data for a selection of key statistics under the following themes: population, demography and health. Figures for the latest years may be provisional, these will be updated to final figures when data are available." -NA -Mortality Statistics: Deaths registered in England and Wales by area of usual residence -Presents data on death registrations in the United Kingdom by area of usual residence. The release contains a summary table providing key mortality measures (numbers and rates including age standardised mortality rates) for the United Kingdom and its constituent countries and a table providing numbers of deaths in England and Wales by age and sex. diff --git a/working_files/Weekly/2011Mortality-Terms and conditions.csv b/working_files/Weekly/2011Mortality-Terms and conditions.csv deleted file mode 100644 index 86a4467..0000000 --- a/working_files/Weekly/2011Mortality-Terms and conditions.csv +++ /dev/null @@ -1,34 +0,0 @@ -Contents -Terms and conditions -NA -A National Statistics publication -NA -National Statistics are produced to high professional standards set out in the Code of Practice for Official Statistics. They are produced free from any political interference. -NA -"The United Kingdom Statistics Authority has designated these statistics as National Statistics, in accordance with the Statistics and Registration Service Act 2007 and signifying compliance with the Code of Practice for Official Statistics." -Designation can be broadly interpreted to mean that the statistics: -• meet identified user needs; -• are well explained and readily accessible; -"• are produced according to sound methods, and" -• are managed impartially and objectively in the public interest. -NA -Once statistics have been designated as National Statistics it is a statutory requirement that the Code of Practice shall continue to be observed. -NA -About us -NA -"We are the executive office of the UK Statistics Authority, a non-ministerial department which reports directly to Parliament and the UK government’s single largest statistical producer. We compile information about the UK’s society and economy, and provide the evidence-base for policy and decision-making, the allocation of resources, and public accountability." -NA -Copyright and reproduction -NA -© Crown copyright 2016 -"You may re-use this document/publication (not including logos) free of charge in any format or medium, under the terms of the Open Government Licence." -Users should include a source accreditation to ONS - Source: Office for National Statistics licensed under the Open Government Licence. -NA -To view this licence visit: -www.nationalarchives.gov.uk/doc/open-government-licence -"or write to the Information Policy Team, The National Archives, Kew, Richmond, Surrey, TW9 4DU;" -or email: psi@nationalarchives.gsi.gov.uk -NA -Where we have identified any third party copyright information you will need to obtain permission from the copyright holders concerned. -NA -This document/publication is also available on our website at www.ons.gov.uk diff --git a/working_files/Weekly/2011Mortality-Weekly Figures 2011.csv b/working_files/Weekly/2011Mortality-Weekly Figures 2011.csv deleted file mode 100644 index f963196..0000000 --- a/working_files/Weekly/2011Mortality-Weekly Figures 2011.csv +++ /dev/null @@ -1,69 +0,0 @@ -Contents,...2,...3,...4,...5,...6,...7,...8,...9,...10,...11,...12,...13,...14,...15,...16,...17,...18,...19,...20,...21,...22,...23,...24,...25,...26,...27,...28,...29,...30,...31,...32,...33,...34,...35,...36,...37,...38,...39,...40,...41,...42,...43,...44,...45,...46,...47,...48,...49,...50,...51,...52,...53 -Weekly provisional figures on deaths registered in England and Wales,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Week number,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52 -Week ended,7-Jan-11,14-Jan-11,21-Jan-11,28-Jan-11,4-Feb-11,11-Feb-11,18-Feb-11,25-Feb-11,04-Mar-11,11-Mar-11,18-Mar-11,25-Mar-11,01-Apr-11,08-Apr-11,15-Apr-11,22-Apr-11,40662,40669,40676,40683,40690,40697,40704,40711,40718,40725,40732,40739,40746,40753,40760,40767,40774,40781,40788,40795,40802,40809,40816,40823,40830,40837,40844,40851,40858,40865,40872,40879,40886,40893,40900,40907 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"Total deaths, all ages",12644,13133,11438,10555,10235,10019,9757,9433,9453,9648,9842,9707,9312,9557,9327,8335,8064,9853,10140,8949,9163,7913,9254,8961,8715,8710,8705,8461,8500,8456,8787,8573,8426,8466,7717,8769,8612,8527,8919,8719,8705,8638,9139,9640,9042,9305,9166,9203,9828,10348,11151,8472 -Total deaths: average of corresponding,12166.200000000001,12540,11711,11031.799999999999,10674.799999999999,10442.200000000001,10586.6,10558.4,10483.4,10232.4,10084.200000000001,9661.7999999999993,9714.3999999999996,9822.3999999999996,9639.7999999999993,10122.4,9918.7999999999993,9221.2000000000007,9016.7999999999993,9373.3999999999996,9309.3999999999996,8339.3999999999996,9322,8984.7999999999993,8812.7999999999993,8757.7999999999993,8883.7999999999993,8629.6000000000004,8643,8737.3999999999996,8619.2000000000007,8549.7999999999993,8588.2000000000007,8642.7999999999993,7984.6000000000004,8619.3999999999996,8671.2000000000007,8707,8829.3999999999996,8908.2000000000007,9120,9240.2000000000007,9327.3999999999996,9501,9580.2000000000007,9654.2000000000007,9787.6000000000004,9677.3999999999996,10328.200000000001,10500.799999999999,10994,8938.7999999999993 -week over the previous five years1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"Deaths by underlying cause2,3,4",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -All respiratory diseases (ICD-10 J00-J99) ICD-10 v 2001,2645,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,: -ICD-10 v 2010,2706,2699,2103,1754,1587,1506,1434,1370,1379,1412,1412,1466,1336,1378,1322,1218,1173,1374,1380,1154,1232,1020,1153,1153,1120,1073,1084,1065,995,1007,1053,1050,954,970,932,988,1008,1014,1058,1140,1061,1098,1132,1291,1249,1218,1229,1250,1395,1471,1666,1407 -Persons 5,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Under 1 year,54,59,56,69,44,69,64,57,60,66,63,75,55,70,76,59,46,66,85,70,62,53,60,69,59,63,64,40,66,62,52,61,65,77,53,52,53,53,54,65,69,68,55,61,56,64,61,56,52,74,79,48 -01-14,30,32,18,29,19,18,16,17,27,21,29,24,35,25,27,19,20,19,19,20,21,17,23,18,19,10,21,13,21,25,19,12,10,12,17,17,27,20,22,16,18,16,17,20,30,15,16,22,21,12,25,22 -15-44,306,378,388,331,327,302,340,287,286,299,304,312,264,289,312,239,257,315,352,291,302,255,325,296,290,323,301,258,305,260,297,272,291,287,254,249,279,309,302,268,288,264,306,285,288,312,274,287,308,314,327,176 -45-64,1548,1701,1403,1363,1337,1279,1283,1213,1274,1213,1260,1179,1226,1245,1205,1057,997,1302,1358,1191,1233,1050,1197,1227,1126,1131,1155,1163,1168,1118,1182,1174,1119,1133,1018,1149,1159,1107,1172,1065,1202,1130,1195,1262,1149,1208,1158,1209,1268,1243,1268,915 -65-74,2017,2014,1764,1651,1664,1631,1515,1487,1495,1624,1519,1545,1529,1579,1562,1328,1306,1598,1665,1507,1516,1290,1517,1468,1398,1497,1474,1367,1378,1452,1433,1430,1387,1366,1222,1462,1401,1371,1512,1422,1425,1460,1411,1537,1527,1496,1490,1533,1530,1673,1822,1309 -75-84,3742,3824,3333,3072,2947,2926,2957,2813,2814,2858,2995,2935,2774,2828,2743,2500,2427,2953,2964,2722,2671,2350,2729,2626,2682,2423,2570,2571,2539,2466,2650,2617,2473,2544,2369,2659,2536,2509,2563,2634,2510,2565,2637,2798,2721,2732,2696,2642,2850,3128,3229,2591 -85+,4945,5119,4476,4039,3897,3793,3581,3559,3497,3567,3671,3626,3428,3518,3401,3130,3009,3600,3697,3146,3357,2896,3400,3256,3131,3262,3119,3049,3023,3072,3153,3007,3079,3045,2783,3179,3157,3157,3294,3249,3192,3121,3512,3677,3271,3475,3466,3454,3799,3903,4394,3411 -Males 5,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Under 1 year,24,35,34,43,31,39,41,33,37,44,40,45,31,35,42,30,24,41,45,39,36,29,41,39,38,41,39,23,39,44,31,38,33,49,29,28,32,32,30,38,30,44,32,34,30,35,39,24,33,49,45,29 -01-14,18,16,8,14,7,12,12,8,15,10,11,13,18,16,13,10,11,11,9,11,14,6,13,8,12,6,9,10,13,14,13,8,4,8,10,8,19,15,12,13,10,9,12,15,18,10,10,14,13,8,13,14 -15-44,190,242,246,208,206,203,224,186,168,196,198,218,167,197,207,154,165,205,241,193,197,145,216,183,180,208,193,159,199,166,196,170,194,179,154,160,180,182,185,166,193,178,200,192,187,190,174,183,199,189,218,107 -45-64,929,984,839,826,767,756,775,728,761,736,734,707,752,715,731,634,590,787,824,722,735,624,725,713,665,673,688,694,668,648,701,719,668,688,608,680,707,645,712,615,696,686,728,722,698,699,696,728,776,747,798,530 -65-74,1152,1170,1036,976,975,939,898,847,881,977,925,892,855,931,936,808,749,906,961,882,874,742,933,886,851,899,874,789,808,846,838,818,811,825,724,859,812,818,877,822,855,853,840,898,887,871,896,884,909,992,1074,763 -75-84,1870,1901,1660,1593,1521,1507,1523,1424,1450,1477,1524,1477,1415,1484,1426,1305,1233,1580,1528,1466,1387,1227,1422,1412,1372,1278,1320,1322,1309,1282,1356,1378,1296,1373,1237,1391,1310,1338,1353,1333,1298,1380,1342,1461,1420,1426,1352,1308,1488,1610,1664,1342 -85+,1715,1760,1601,1374,1368,1411,1297,1321,1265,1228,1352,1323,1197,1271,1207,1117,1091,1298,1309,1126,1191,1058,1251,1197,1123,1176,1132,1079,1100,1130,1138,1074,1118,1128,1010,1177,1184,1157,1200,1144,1143,1129,1281,1288,1184,1180,1243,1232,1366,1413,1589,1221 -Females 5,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Under 1 year,30,24,22,26,13,30,23,24,23,22,23,30,24,35,34,29,22,25,40,31,26,24,19,30,21,22,25,17,27,18,21,23,32,28,24,24,21,21,24,27,39,24,23,27,26,29,22,32,19,25,34,19 -01-14,12,16,10,15,12,6,4,9,12,11,18,11,17,9,14,9,9,8,10,9,7,11,10,10,7,4,12,3,8,11,6,4,6,4,7,9,8,5,10,3,8,7,5,5,12,5,6,8,8,4,12,8 -15-44,116,136,142,123,121,99,116,101,118,103,106,94,97,92,105,85,92,110,111,98,105,110,109,113,110,115,108,99,106,94,101,102,97,108,100,89,99,127,117,102,95,86,106,93,101,122,100,104,109,125,109,69 -45-64,619,717,564,537,570,523,508,485,513,477,526,472,474,530,474,423,407,515,534,469,498,426,472,514,461,458,467,469,500,470,481,455,451,445,410,469,452,462,460,450,506,444,467,540,451,509,462,481,492,496,470,385 -65-74,865,844,728,675,689,692,617,640,614,647,594,653,674,648,626,520,557,692,704,625,642,548,584,582,547,598,600,578,570,606,595,612,576,541,498,603,589,553,635,600,570,607,571,639,640,625,594,649,621,681,748,546 -75-84,1872,1923,1673,1479,1426,1419,1434,1389,1364,1381,1471,1458,1359,1344,1317,1195,1194,1373,1436,1256,1284,1123,1307,1214,1310,1145,1250,1249,1230,1184,1294,1239,1177,1171,1132,1268,1226,1171,1210,1301,1212,1185,1295,1337,1301,1306,1344,1334,1362,1518,1565,1249 -85+,3230,3359,2875,2665,2529,2382,2284,2238,2232,2339,2319,2303,2231,2247,2194,2013,1918,2302,2388,2020,2166,1838,2149,2059,2008,2086,1987,1970,1923,1942,2015,1933,1961,1917,1773,2002,1973,2000,2094,2105,2049,1992,2231,2389,2087,2295,2223,2222,2433,2490,2805,2190 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Deaths by Region of usual residence 6,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -North East,616,654,584,537,556,526,551,575,498,526,533,496,496,478,493,411,429,543,504,496,511,441,457,472,435,479,458,432,488,469,480,483,453,417,395,481,430,445,487,437,480,437,516,507,518,495,462,496,529,543,620,443 -North West,1662,1797,1555,1429,1366,1359,1343,1366,1329,1295,1279,1291,1322,1310,1305,1171,1104,1324,1328,1276,1302,1044,1250,1306,1142,1215,1215,1159,1139,1190,1235,1212,1146,1150,1092,1161,1121,1119,1229,1216,1169,1150,1267,1301,1244,1310,1238,1229,1360,1449,1518,1250 -Yorkshire and The Humber,1351,1268,1095,1091,972,997,992,941,864,970,969,1023,937,946,950,841,841,1009,985,879,890,826,899,889,853,872,850,851,847,851,861,819,819,873,765,890,902,877,912,895,860,881,935,1039,855,910,907,949,1013,1029,1080,891 -East Midlands,1135,1158,989,931,877,827,843,756,789,815,809,790,762,801,772,714,726,805,848,678,721,682,739,708,738,707,731,684,674,684,746,687,643,735,606,739,703,716,727,722,745,685,775,838,769,768,787,745,827,849,949,709 -West Midlands,1264,1390,1193,986,1066,1062,974,961,957,964,1060,943,972,958,915,839,764,1028,968,921,946,807,895,899,952,867,936,886,884,851,822,913,856,821,813,908,897,819,873,839,862,921,928,945,932,970,907,991,940,1068,1120,846 -East,1323,1282,1146,1085,1120,1032,986,947,991,971,1075,1034,967,1073,963,863,828,997,1108,929,959,804,1015,941,888,937,883,924,871,894,907,888,920,849,776,896,927,899,959,923,914,857,961,1017,927,984,938,990,1015,1080,1213,881 -London,1188,1267,1067,1020,943,1010,927,873,900,946,953,893,863,931,923,801,784,923,907,815,884,776,868,852,825,880,843,855,814,801,858,860,873,869,735,852,860,852,888,862,882,795,847,936,868,859,878,845,995,1022,1061,844 -South East,1911,2089,1826,1704,1559,1461,1503,1443,1515,1461,1523,1519,1425,1481,1402,1268,1161,1479,1716,1414,1393,1161,1468,1378,1342,1304,1282,1243,1293,1235,1368,1276,1267,1247,1220,1283,1363,1329,1377,1314,1359,1394,1369,1391,1381,1452,1405,1432,1532,1547,1696,1162 -South West,1318,1428,1320,1093,1070,1042,1011,972,999,1051,1018,1062,974,991,1010,859,845,1069,1128,936,942,807,1031,982,969,899,901,857,932,932,931,900,930,915,825,950,877,942,902,923,909,935,916,1027,962,987,1013,925,991,1116,1179,870 -Wales,846,772,638,656,687,679,609,580,590,630,593,633,574,566,573,535,565,654,616,577,583,544,601,512,544,526,579,538,529,526,547,515,491,563,471,580,505,506,544,567,511,557,604,617,571,554,599,591,602,623,680,554 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Footnotes,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"1 This average is based on the actual number of death registrations recorded for each corresponding week over the previous five years. Moveable public holidays, when register offices are closed, affect the number of registrations made in the published weeks and in the corresponding weeks in previous years.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2 Counts of deaths by underlying cause exclude deaths at age under 28 days.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -3 Coding of deaths by underlying cause for the latest week is not yet complete.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -4 Respiratory deaths for 2011 are coded to the new version of ICD-10 while for 2010 they are coded to the previous version. Week 1 2011 has been coded to both versions to give an indication of the impact of the change.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"5Does not include deaths where age is either missing or not yet fully coded. For this reason counts of 'Persons', 'Males' and 'Females' may not sum to 'Total Deaths, all ages'.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"6 Does not include deaths of those resident outside England and Wales or those records where the place of residence is either missing or not yet fully coded. For this reason counts for ""Deaths by Region of usual residence"" may not sum to ""Total deaths, all ages"".",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Source: Office for National Statistics,Released:,40967,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA diff --git a/working_files/Weekly/2011Mortality.xls b/working_files/Weekly/2011Mortality.xls deleted file mode 100644 index 4db0ea8..0000000 Binary files a/working_files/Weekly/2011Mortality.xls and /dev/null differ diff --git a/working_files/Weekly/2012Mortality-Contents.csv b/working_files/Weekly/2012Mortality-Contents.csv deleted file mode 100644 index 28ff0d0..0000000 --- a/working_files/Weekly/2012Mortality-Contents.csv +++ /dev/null @@ -1,11 +0,0 @@ -Contents,"Weekly Provisional Figures on Deaths Registered in -England and Wales" -NA,NA -NA,NA -Metadata,Information on weekly deaths -NA,NA -Terms and conditions,Terms and conditions -NA,NA -Weekly Figures for 2012,"Deaths (numbers): by age, sex and region, 2012 registrations, England and Wales" -NA,NA -Related publications,Provides links to further mortality statistics based on death registrations diff --git a/working_files/Weekly/2012Mortality-Metadata.csv b/working_files/Weekly/2012Mortality-Metadata.csv deleted file mode 100644 index f63874b..0000000 --- a/working_files/Weekly/2012Mortality-Metadata.csv +++ /dev/null @@ -1,57 +0,0 @@ -Contents -Metadata -NA -Introduction -NA -"Weekly death figures provide provisional counts of the number of deaths registered in England and Wales for which data are available, and the number of deaths for which the underlying cause was coded to respiratory diseases as defined in the International Statistical Classification of Diseases and Related Health Problems Tenth Revision (ICD-10)." -NA -"These figures are also presented by age group, sex and by area of usual residence." -NA -Notes and definitions -NA -Deaths occurring in England and Wales are registered on the General Register Office's Registration Online system (RON). -NA -Daily extracts of death registration records from RON are processed on ONS' database systems. -NA -Provisional data on deaths registered in each week (ending on a Friday) are compiled at the end of the following week. -NA -Bank Holidays could affect the number of registrations made within those weeks. -NA -The respiratory diseases counts are updated with each weekly publication as the coding of the underlying cause is not always complete at the time of production. -NA -"From January 2011, ONS has introduced a new version of the software used to code cause of death. The 10th revision of the International Statistical Classification of Diseases (ICD-10) was introduced in England and Wales in January 2001. Since then updates to the classification have been authorised by the World Health Organisation and are in use in other countries. The new version (ICDv2010) has made some changes to the allocation of cause of death. Further information is available in" -"Results of the ICD-10 v2010 bridge coding study, England and Wales, 2009" -NA -"Where there are the same values in categories in consecutive weeks, the counts have been checked and are made up of unique death registrations." -NA -Symbols -NA -In ONS mortality outputs published symbols used are: -: denotes not available -For further information please refer to -https://gss.civilservice.gov.uk/statistics/a-z-of-policies-and-guidance/guidance-use-data-markers/ -NA -The ONS policy on protecting confidentiality in birth and death statistics is available on the ONS website: -www.ons.gov.uk/ons/guide-method/best-practice/disclosure-control-policy-for-birth-and-death-statistics/index.html -NA -Further information and enquiries -NA -General enquiries should be addressed to: -Vital Statistics Outputs Branch -Office for National Statistics -Segensworth Road -Titchfield -Fareham -Hants PO15 5RR -Telephone: +44 (0)1329 444110 -email: vsob@ons.gsi.gov.uk -NA -"Special extracts and tabulations of mortality data for England and Wales are available (subject to legal frameworks, disclosure control, resources and agreement of costs, where appropriate). Such enquiries should be made to the postal or email address above." -NA -Our charging policy is available online. -"In line with the ONS approach to open data," -all ad hoc data requests will be published onto the website. -NA -Feedback -NA -We welcome feedback from users. Please send feedback to the postal or email address above. diff --git a/working_files/Weekly/2012Mortality-Related publications.csv b/working_files/Weekly/2012Mortality-Related publications.csv deleted file mode 100644 index 582d0b4..0000000 --- a/working_files/Weekly/2012Mortality-Related publications.csv +++ /dev/null @@ -1,28 +0,0 @@ -Contents -Related publications -NA -Mortality metadata -Supporting information for these tables can be found in mortality metadata. -NA -Quality and Methodology Information -Quality and Methodology Information notes for Mortality and Child Mortality. -NA -Further mortality statistics based on death registrations are available on the ONS website: -NA -"Interactive Mapping Tool, England and Wales" -An interactive mapping tool which enables trends in mortality to be analysed at the local level. Mortality rates for 2001 onwards have been calculated using the 2013 European Standard Population (ESP). -NA -"Death summary tables, England and Wales" -The summary tables provide key death registration statistics for the reference year. -NA -Deaths registered in England and Wales (Series DR) -Series DR (Mortality Statistics: Deaths Registered in England and Wales) provides detailed death registration statistics for the reference year. This includes numbers of deaths by detailed underlying cause by age-sex group defined by the different chapters of the Tenth Revision of the International Statistical Classification of Diseases and Related Health Problems (ICD-10). -NA -"Monthly figures on deaths registered by area of usual residence, England and Wales" -"To meet user needs, very timely but provisional counts of monthly death registrations in England and Wales are published by area of usual residence. Figures remain provisional until final annual data are released." -NA -"Vital statistics: Population and health reference tables, United Kingdom and constituent countries" -"These tables provide annual data for a selection of key statistics under the following themes: population, demography and health. Figures for the latest years may be provisional, these will be updated to final figures when data are available." -NA -Mortality Statistics: Deaths registered in England and Wales by area of usual residence -Presents data on death registrations in the United Kingdom by area of usual residence. The release contains a summary table providing key mortality measures (numbers and rates including age standardised mortality rates) for the United Kingdom and its constituent countries and a table providing numbers of deaths in England and Wales by age and sex. diff --git a/working_files/Weekly/2012Mortality-Terms and conditions.csv b/working_files/Weekly/2012Mortality-Terms and conditions.csv deleted file mode 100644 index 86a4467..0000000 --- a/working_files/Weekly/2012Mortality-Terms and conditions.csv +++ /dev/null @@ -1,34 +0,0 @@ -Contents -Terms and conditions -NA -A National Statistics publication -NA -National Statistics are produced to high professional standards set out in the Code of Practice for Official Statistics. They are produced free from any political interference. -NA -"The United Kingdom Statistics Authority has designated these statistics as National Statistics, in accordance with the Statistics and Registration Service Act 2007 and signifying compliance with the Code of Practice for Official Statistics." -Designation can be broadly interpreted to mean that the statistics: -• meet identified user needs; -• are well explained and readily accessible; -"• are produced according to sound methods, and" -• are managed impartially and objectively in the public interest. -NA -Once statistics have been designated as National Statistics it is a statutory requirement that the Code of Practice shall continue to be observed. -NA -About us -NA -"We are the executive office of the UK Statistics Authority, a non-ministerial department which reports directly to Parliament and the UK government’s single largest statistical producer. We compile information about the UK’s society and economy, and provide the evidence-base for policy and decision-making, the allocation of resources, and public accountability." -NA -Copyright and reproduction -NA -© Crown copyright 2016 -"You may re-use this document/publication (not including logos) free of charge in any format or medium, under the terms of the Open Government Licence." -Users should include a source accreditation to ONS - Source: Office for National Statistics licensed under the Open Government Licence. -NA -To view this licence visit: -www.nationalarchives.gov.uk/doc/open-government-licence -"or write to the Information Policy Team, The National Archives, Kew, Richmond, Surrey, TW9 4DU;" -or email: psi@nationalarchives.gsi.gov.uk -NA -Where we have identified any third party copyright information you will need to obtain permission from the copyright holders concerned. -NA -This document/publication is also available on our website at www.ons.gov.uk diff --git a/working_files/Weekly/2012Mortality-Weekly Figures 2012.csv b/working_files/Weekly/2012Mortality-Weekly Figures 2012.csv deleted file mode 100644 index 8963c84..0000000 --- a/working_files/Weekly/2012Mortality-Weekly Figures 2012.csv +++ /dev/null @@ -1,66 +0,0 @@ -Contents,...2,...3,...4,...5,...6,...7,...8,...9,...10,...11,...12,...13,...14,...15,...16,...17,...18,...19,...20,...21,...22,...23,...24,...25,...26,...27,...28,...29,...30,...31,...32,...33,...34,...35,...36,...37,...38,...39,...40,...41,...42,...43,...44,...45,...46,...47,...48,...49,...50,...51,...52,...53 -Weekly provisional figures on deaths registered in England and Wales,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Week number,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52 -Week ended,40914,40921,40928,40935,40942,40949,40956,40963,40970,40977,40984,40991,40998,41005,41012,41019,41026,41033,41040,41047,41054,41061,41068,41075,41082,41089,41096,41103,41110,41117,41124,41131,41138,41145,41152,41159,41166,41173,41180,41187,41194,41201,41208,41215,41222,41229,41236,41243,41250,41257,41264,41271 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"Total deaths, all ages",10514,11343,10393,10320,10117,10287,10532,11086,10945,10507,10041,9864,9634,8520,9992,10816,10238,9957,8868,9913,9602,9602,6781,10170,9054,8856,8909,8754,8684,8877,8942,8810,8776,8977,7617,8848,8641,8839,8865,9070,9441,9284,9550,9335,9683,9900,9679,9394,9844,10388,11461,8096 -Total deaths: average of corresponding,12455,12851.4,11812.8,11053.6,10614.6,10316.6,10402.2,10326.8,10157.8,9962.4,9908.6,9459.2,9392.4,9643,9693.6,9643.6,9454,9375,9085,9271.8,9275,8223.2,9240.2,8878.4,8750.4,8718.2,8764,8577,8489.2,8549.4,8594,8546.8,8552.2,8577,7901,8593.2,8669.8,8687.8,8864.4,8954.6,9030.4,9146.2,9311,9540.2,9478.6,9551.4,9640.2,9579.6,10335.8,10587.4,11179,8938.8 -week over the previous five years1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"Deaths by underlying cause2,3",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -All respiratory diseases (ICD-10 J00-J99) ICD-10 v 2010,1789,1934,1629,1584,1622,1612,1682,1826,1892,1647,1610,1536,1415,1234,1498,1633,1491,1488,1304,1441,1256,1330,889,1401,1168,1109,1107,1098,1025,1125,1143,1068,1048,1083,880,982,1031,1065,1082,1151,1161,1192,1288,1233,1306,1354,1320,1305,1368,1540,1783,1407 -Persons 4,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Under 1 year,48,61,48,45,52,50,53,75,55,57,58,67,61,50,65,72,60,60,54,67,58,60,42,80,53,56,64,57,47,69,56,70,54,62,62,62,63,56,59,66,52,57,49,63,66,69,70,58,71,60,56,40 -01-14,19,17,17,28,26,18,16,14,22,16,18,34,21,23,26,18,21,25,16,23,26,23,9,16,17,16,17,16,26,15,13,38,14,19,13,20,19,15,16,16,11,24,31,21,25,19,18,19,32,23,23,15 -15-44,181,282,279,285,280,312,290,320,278,318,270,296,290,301,278,306,288,301,241,306,273,303,185,300,289,256,266,260,292,283,271,249,268,283,243,243,259,319,246,234,270,245,280,284,304,288,307,268,283,334,306,200 -45-64,1255,1370,1204,1240,1245,1237,1164,1220,1310,1185,1238,1256,1170,1072,1155,1313,1227,1171,1063,1212,1177,1190,846,1217,1147,1130,1098,1123,1124,1157,1153,1124,1108,1144,952,1164,1106,1173,1094,1122,1162,1120,1149,1158,1172,1197,1203,1136,1219,1213,1315,817 -65-74,1570,1795,1601,1626,1531,1650,1639,1667,1614,1585,1485,1526,1541,1314,1639,1732,1607,1615,1370,1643,1622,1542,1130,1794,1527,1464,1521,1493,1495,1500,1527,1447,1446,1515,1293,1418,1476,1474,1495,1508,1489,1535,1490,1579,1556,1576,1522,1551,1575,1628,1823,1240 -75-84,3140,3372,3047,3008,2939,2942,3118,3234,3286,3074,2990,2877,2769,2478,2959,3231,2986,2936,2652,2891,2839,2873,2021,3063,2658,2594,2633,2571,2538,2557,2590,2564,2611,2618,2288,2596,2486,2548,2624,2639,2821,2750,2842,2666,2813,2863,2765,2826,2888,3060,3343,2397 -85+,4280,4393,4197,4088,4044,4077,4252,4551,4374,4270,3982,3806,3779,3281,3870,4135,4048,3847,3461,3761,3607,3606,2548,3700,3363,3339,3306,3233,3162,3295,3331,3316,3274,3336,2766,3345,3231,3253,3330,3483,3636,3553,3709,3563,3746,3888,3783,3532,3774,4068,4585,3387 -Males 4,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Under 1 year,22,29,31,29,34,28,30,47,33,34,35,40,39,32,35,46,34,32,36,40,37,34,20,42,21,33,41,31,29,40,31,43,21,28,36,36,31,27,37,37,27,39,27,35,38,37,42,30,38,39,33,24 -01-14,11,9,11,14,11,12,11,12,15,8,13,17,13,12,15,12,12,14,5,13,16,13,6,6,5,9,12,6,15,7,8,19,9,8,8,17,13,7,13,13,4,16,15,13,15,10,6,8,18,11,14,7 -15-44,95,170,180,184,167,210,186,224,183,225,165,193,197,192,178,175,177,200,137,205,175,209,98,197,190,168,192,180,182,194,178,158,167,160,155,155,181,209,147,153,176,159,182,181,193,188,206,172,185,221,219,112 -45-64,723,784,727,733,739,737,683,701,767,685,741,738,711,642,659,783,713,686,635,713,701,718,485,712,674,677,645,657,676,673,675,677,654,690,576,671,688,713,642,670,692,644,689,661,696,725,722,693,753,692,732,477 -65-74,907,1024,922,977,883,960,950,967,951,907,867,893,885,788,978,981,961,952,802,967,937,862,649,1034,862,847,898,880,854,896,893,850,844,928,767,830,893,840,920,896,858,910,868,919,887,910,894,905,921,947,1043,738 -75-84,1608,1749,1570,1575,1513,1540,1601,1622,1686,1600,1551,1476,1421,1295,1509,1663,1583,1502,1374,1496,1474,1538,1030,1602,1370,1363,1362,1338,1255,1326,1331,1339,1354,1329,1211,1328,1301,1338,1393,1411,1429,1441,1462,1335,1483,1480,1458,1507,1519,1589,1731,1226 -85+,1513,1516,1478,1440,1481,1477,1570,1696,1524,1489,1444,1378,1382,1152,1375,1505,1416,1347,1250,1394,1259,1250,915,1354,1229,1238,1188,1217,1192,1177,1147,1213,1190,1200,1029,1198,1228,1166,1217,1296,1310,1283,1373,1266,1364,1444,1412,1285,1370,1539,1655,1204 -Females 4,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Under 1 year,26,32,17,16,18,22,23,28,22,23,23,27,22,18,30,26,26,28,18,27,21,26,22,38,32,23,23,26,18,29,25,27,33,34,26,26,32,29,22,29,25,18,22,28,28,32,28,28,33,21,23,16 -01-14,8,8,6,14,15,6,5,2,7,8,5,17,8,11,11,6,9,11,11,10,10,10,3,10,12,7,5,10,11,8,5,19,5,11,5,3,6,8,3,3,7,8,16,8,10,9,12,11,14,12,9,8 -15-44,86,112,99,101,113,102,104,96,95,93,105,103,93,109,100,131,111,101,104,101,98,94,87,103,99,88,74,80,110,89,93,91,101,123,88,88,78,110,99,81,94,86,98,103,111,100,101,96,98,113,87,88 -45-64,532,586,477,507,506,500,481,519,543,500,497,518,459,430,496,530,514,485,428,499,476,472,361,505,473,453,453,466,448,484,478,447,454,454,376,493,418,460,452,452,470,476,460,497,476,472,481,443,466,521,583,340 -65-74,663,771,679,649,648,690,689,700,663,678,618,633,656,526,661,751,646,663,568,676,685,680,481,760,665,617,623,613,641,604,634,597,602,587,526,588,583,634,575,612,631,625,622,660,669,666,628,646,654,681,780,502 -75-84,1532,1623,1477,1433,1426,1402,1517,1612,1600,1474,1439,1401,1348,1183,1450,1568,1403,1434,1278,1395,1365,1335,991,1461,1288,1231,1271,1233,1283,1231,1259,1225,1257,1289,1077,1268,1185,1210,1231,1228,1392,1309,1380,1331,1330,1383,1307,1319,1369,1471,1612,1171 -85+,2767,2877,2719,2648,2563,2600,2682,2855,2850,2781,2538,2428,2397,2129,2495,2630,2632,2500,2211,2367,2348,2356,1633,2346,2134,2101,2118,2016,1970,2118,2184,2103,2084,2136,1737,2147,2003,2087,2113,2187,2326,2270,2336,2297,2382,2444,2371,2247,2404,2529,2930,2183 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Deaths by Region of usual residence 5,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -North East,520,611,546,556,507,493,533,563,504,533,478,507,487,450,512,584,556,538,441,505,505,514,362,539,482,508,478,441,459,496,480,469,452,460,397,450,475,518,468,471,467,510,503,459,459,507,550,539,492,543,584,421 -North West,1442,1452,1429,1377,1382,1354,1430,1465,1417,1419,1300,1315,1363,1181,1445,1496,1306,1392,1255,1347,1383,1310,984,1360,1255,1203,1184,1218,1217,1204,1212,1215,1138,1211,1075,1233,1178,1268,1223,1299,1298,1277,1355,1348,1348,1370,1276,1236,1321,1330,1433,1174 -Yorkshire and The Humber,1069,1150,1093,1074,1010,1039,1037,1086,1085,1006,1031,985,892,827,969,1034,1024,964,820,1012,933,978,714,1000,861,894,923,828,889,937,844,871,872,917,793,853,940,882,891,858,940,901,948,928,928,954,1017,929,897,1017,977,845 -East Midlands,852,922,869,871,856,890,857,935,868,856,867,804,830,739,829,913,879,852,786,805,747,783,557,853,757,810,738,738,730,718,767,746,707,749,634,764,735,725,712,714,765,791,794,753,753,763,836,794,765,827,869,696 -West Midlands,1002,1165,1038,1077,1046,1043,1015,1086,1128,1099,985,961,935,827,972,1136,1051,1070,876,1090,965,945,647,1116,960,896,927,898,909,896,868,935,909,937,812,954,897,878,902,914,965,883,990,951,951,1000,1022,999,958,1014,1085,792 -East,1127,1189,1050,1047,1105,1088,1102,1204,1182,1155,1065,1094,1036,880,1097,1153,1108,1066,950,1027,1007,1026,660,1082,942,931,975,944,815,930,964,889,962,1001,790,933,858,893,918,920,987,1018,970,973,973,1007,1011,1059,971,1003,1062,809 -London,1096,1099,974,993,1020,1032,1127,1159,1149,1002,1002,941,935,817,967,977,942,903,844,907,924,888,663,961,827,835,796,865,827,872,829,808,807,844,734,829,799,811,830,855,887,897,920,898,898,926,987,956,901,899,986,792 -South East,1584,1836,1652,1569,1507,1597,1668,1787,1738,1652,1645,1545,1516,1326,1488,1673,1597,1487,1378,1457,1497,1478,953,1515,1441,1297,1365,1254,1311,1291,1401,1336,1335,1342,1088,1304,1319,1305,1343,1455,1475,1443,1480,1393,1393,1539,1496,1483,1415,1492,1610,1179 -South West,1139,1177,1088,1095,1083,1116,1117,1148,1171,1089,1043,1052,1029,857,1030,1183,1092,1051,909,1094,1019,1051,733,1090,950,955,933,973,943,946,971,968,962,936,793,974,902,997,942,997,1022,1003,1001,998,998,1015,1074,1031,983,1048,1017,821 -Wales,660,707,635,644,586,622,628,630,668,679,610,637,593,596,662,644,655,609,590,636,603,605,489,630,559,509,573,572,567,558,576,548,604,553,478,534,511,538,615,561,613,543,574,609,609,586,608,629,668,650,744,552 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Footnotes,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"1 This average is based on the actual number of death registrations recorded for each corresponding week over the previous five years. Moveable public holidays, when register offices are closed, affect the number of registrations made in the published weeks and in the corresponding weeks in previous years.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2 Counts of deaths by underlying cause exclude deaths at age under 28 days.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -3 Coding of deaths by underlying cause for the latest week is not yet complete.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"4 Does not include deaths where age is either missing or not yet fully coded. For this reason counts of 'Persons', 'Males' and 'Females' may not sum to 'Total Deaths, all ages'.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"5 Does not include deaths of those resident outside England and Wales or those records where the place of residence is either missing or not yet fully coded. For this reason counts for ""Deaths by Region of usual residence"" may not sum to ""Total deaths, all ages"".",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Source: Office for National Statistics,Released:,41331,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA diff --git a/working_files/Weekly/2012Mortality.xls b/working_files/Weekly/2012Mortality.xls deleted file mode 100644 index fc7d72c..0000000 Binary files a/working_files/Weekly/2012Mortality.xls and /dev/null differ diff --git a/working_files/Weekly/2013Mortality-Contents.csv b/working_files/Weekly/2013Mortality-Contents.csv deleted file mode 100644 index 3cab8f3..0000000 --- a/working_files/Weekly/2013Mortality-Contents.csv +++ /dev/null @@ -1,11 +0,0 @@ -Contents,"Weekly Provisional Figures on Deaths Registered in -England and Wales" -NA,NA -NA,NA -Metadata,Information on weekly deaths -NA,NA -Terms and conditions,Terms and conditions -NA,NA -Weekly Figures for 2013,"Deaths (numbers): by age, sex and region, 2013 registrations, England and Wales" -NA,NA -Related publications,Provides links to further mortality statistics based on death registrations diff --git a/working_files/Weekly/2013Mortality-Metadata.csv b/working_files/Weekly/2013Mortality-Metadata.csv deleted file mode 100644 index f63874b..0000000 --- a/working_files/Weekly/2013Mortality-Metadata.csv +++ /dev/null @@ -1,57 +0,0 @@ -Contents -Metadata -NA -Introduction -NA -"Weekly death figures provide provisional counts of the number of deaths registered in England and Wales for which data are available, and the number of deaths for which the underlying cause was coded to respiratory diseases as defined in the International Statistical Classification of Diseases and Related Health Problems Tenth Revision (ICD-10)." -NA -"These figures are also presented by age group, sex and by area of usual residence." -NA -Notes and definitions -NA -Deaths occurring in England and Wales are registered on the General Register Office's Registration Online system (RON). -NA -Daily extracts of death registration records from RON are processed on ONS' database systems. -NA -Provisional data on deaths registered in each week (ending on a Friday) are compiled at the end of the following week. -NA -Bank Holidays could affect the number of registrations made within those weeks. -NA -The respiratory diseases counts are updated with each weekly publication as the coding of the underlying cause is not always complete at the time of production. -NA -"From January 2011, ONS has introduced a new version of the software used to code cause of death. The 10th revision of the International Statistical Classification of Diseases (ICD-10) was introduced in England and Wales in January 2001. Since then updates to the classification have been authorised by the World Health Organisation and are in use in other countries. The new version (ICDv2010) has made some changes to the allocation of cause of death. Further information is available in" -"Results of the ICD-10 v2010 bridge coding study, England and Wales, 2009" -NA -"Where there are the same values in categories in consecutive weeks, the counts have been checked and are made up of unique death registrations." -NA -Symbols -NA -In ONS mortality outputs published symbols used are: -: denotes not available -For further information please refer to -https://gss.civilservice.gov.uk/statistics/a-z-of-policies-and-guidance/guidance-use-data-markers/ -NA -The ONS policy on protecting confidentiality in birth and death statistics is available on the ONS website: -www.ons.gov.uk/ons/guide-method/best-practice/disclosure-control-policy-for-birth-and-death-statistics/index.html -NA -Further information and enquiries -NA -General enquiries should be addressed to: -Vital Statistics Outputs Branch -Office for National Statistics -Segensworth Road -Titchfield -Fareham -Hants PO15 5RR -Telephone: +44 (0)1329 444110 -email: vsob@ons.gsi.gov.uk -NA -"Special extracts and tabulations of mortality data for England and Wales are available (subject to legal frameworks, disclosure control, resources and agreement of costs, where appropriate). Such enquiries should be made to the postal or email address above." -NA -Our charging policy is available online. -"In line with the ONS approach to open data," -all ad hoc data requests will be published onto the website. -NA -Feedback -NA -We welcome feedback from users. Please send feedback to the postal or email address above. diff --git a/working_files/Weekly/2013Mortality-Related publications.csv b/working_files/Weekly/2013Mortality-Related publications.csv deleted file mode 100644 index 582d0b4..0000000 --- a/working_files/Weekly/2013Mortality-Related publications.csv +++ /dev/null @@ -1,28 +0,0 @@ -Contents -Related publications -NA -Mortality metadata -Supporting information for these tables can be found in mortality metadata. -NA -Quality and Methodology Information -Quality and Methodology Information notes for Mortality and Child Mortality. -NA -Further mortality statistics based on death registrations are available on the ONS website: -NA -"Interactive Mapping Tool, England and Wales" -An interactive mapping tool which enables trends in mortality to be analysed at the local level. Mortality rates for 2001 onwards have been calculated using the 2013 European Standard Population (ESP). -NA -"Death summary tables, England and Wales" -The summary tables provide key death registration statistics for the reference year. -NA -Deaths registered in England and Wales (Series DR) -Series DR (Mortality Statistics: Deaths Registered in England and Wales) provides detailed death registration statistics for the reference year. This includes numbers of deaths by detailed underlying cause by age-sex group defined by the different chapters of the Tenth Revision of the International Statistical Classification of Diseases and Related Health Problems (ICD-10). -NA -"Monthly figures on deaths registered by area of usual residence, England and Wales" -"To meet user needs, very timely but provisional counts of monthly death registrations in England and Wales are published by area of usual residence. Figures remain provisional until final annual data are released." -NA -"Vital statistics: Population and health reference tables, United Kingdom and constituent countries" -"These tables provide annual data for a selection of key statistics under the following themes: population, demography and health. Figures for the latest years may be provisional, these will be updated to final figures when data are available." -NA -Mortality Statistics: Deaths registered in England and Wales by area of usual residence -Presents data on death registrations in the United Kingdom by area of usual residence. The release contains a summary table providing key mortality measures (numbers and rates including age standardised mortality rates) for the United Kingdom and its constituent countries and a table providing numbers of deaths in England and Wales by age and sex. diff --git a/working_files/Weekly/2013Mortality-Terms and conditions.csv b/working_files/Weekly/2013Mortality-Terms and conditions.csv deleted file mode 100644 index 86a4467..0000000 --- a/working_files/Weekly/2013Mortality-Terms and conditions.csv +++ /dev/null @@ -1,34 +0,0 @@ -Contents -Terms and conditions -NA -A National Statistics publication -NA -National Statistics are produced to high professional standards set out in the Code of Practice for Official Statistics. They are produced free from any political interference. -NA -"The United Kingdom Statistics Authority has designated these statistics as National Statistics, in accordance with the Statistics and Registration Service Act 2007 and signifying compliance with the Code of Practice for Official Statistics." -Designation can be broadly interpreted to mean that the statistics: -• meet identified user needs; -• are well explained and readily accessible; -"• are produced according to sound methods, and" -• are managed impartially and objectively in the public interest. -NA -Once statistics have been designated as National Statistics it is a statutory requirement that the Code of Practice shall continue to be observed. -NA -About us -NA -"We are the executive office of the UK Statistics Authority, a non-ministerial department which reports directly to Parliament and the UK government’s single largest statistical producer. We compile information about the UK’s society and economy, and provide the evidence-base for policy and decision-making, the allocation of resources, and public accountability." -NA -Copyright and reproduction -NA -© Crown copyright 2016 -"You may re-use this document/publication (not including logos) free of charge in any format or medium, under the terms of the Open Government Licence." -Users should include a source accreditation to ONS - Source: Office for National Statistics licensed under the Open Government Licence. -NA -To view this licence visit: -www.nationalarchives.gov.uk/doc/open-government-licence -"or write to the Information Policy Team, The National Archives, Kew, Richmond, Surrey, TW9 4DU;" -or email: psi@nationalarchives.gsi.gov.uk -NA -Where we have identified any third party copyright information you will need to obtain permission from the copyright holders concerned. -NA -This document/publication is also available on our website at www.ons.gov.uk diff --git a/working_files/Weekly/2013Mortality-Weekly Figures 2013.csv b/working_files/Weekly/2013Mortality-Weekly Figures 2013.csv deleted file mode 100644 index 8ac409e..0000000 --- a/working_files/Weekly/2013Mortality-Weekly Figures 2013.csv +++ /dev/null @@ -1,66 +0,0 @@ -Contents,...2,...3,...4,...5,...6,...7,...8,...9,...10,...11,...12,...13,...14,...15,...16,...17,...18,...19,...20,...21,...22,...23,...24,...25,...26,...27,...28,...29,...30,...31,...32,...33,...34,...35,...36,...37,...38,...39,...40,...41,...42,...43,...44,...45,...46,...47,...48,...49,...50,...51,...52,...53 -Weekly provisional figures on deaths registered in England and Wales,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Week number,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52 -Week ended,41278,41285,41292,41299,41306,41313,41320,41327,41334,41341,41348,41355,41362,41369,41376,41383,41390,41397,41404,41411,41418,41425,41432,41439,41446,41453,41460,41467,41474,41481,41488,41495,41502,41509,41516,41523,41530,41537,41544,41551,41558,41565,41572,41579,41586,41593,41600,41607,41614,41621,41628,41635 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"Total deaths, all ages",11620,12541,11075,11262,11314,11044,11030,10850,10783,11245,11180,11075,9280,10890,12147,11752,10625,10169,8814,9847,9530,8333,9482,8869,8904,8589,8790,8533,8790,8476,8159,8280,8231,8579,7688,8905,8347,8635,9155,9191,8939,9237,9236,9107,9449,9583,9587,9636,9908,10033,10335,6606 -Total deaths: average of corresponding,12378.799999999999,12881.4,11734.8,11028.2,10481.4,10217.4,10210.8,10272.4,10115.2,9980.2,9881,9432.6,9348.6,9667.6,9620.2,9707.8,9515,9479.2,9096,9345,9311.2,8460.2,8723.6,9060.4,8770.2,8759.4,8749.2,8546,8453.8,8542.8,8644.4,8533,8565.2,8620.4,7809.2,8612.6,8661.6,8674.4,8866.2,8961.8,9127,9165.4,9331.6,9474,9511.6,9591.2,9542.8,9434.2,10195.8,10584.4,11308,8686.8 -week over the previous five years1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"Deaths by underlying cause2,3",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -All respiratory diseases (ICD-10 J00-J99) ICD-10 v 2010,2235,2508,2015,1903,1939,1831,1863,1834,1851,1981,2054,1893,1588,1938,2138,2046,1667,1519,1263,1421,1262,1098,1291,1131,1158,1108,1073,1095,1092,1061,996,982,972,996,868,1042,895,994,1099,1149,1143,1157,1215,1206,1246,1277,1235,1241,1336,1451,1484,966 -Persons 4,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Under 1 year,34,65,54,49,51,59,55,58,52,52,55,59,41,55,47,49,48,63,56,67,52,50,42,57,57,39,52,51,50,53,59,47,52,53,40,52,61,58,54,48,58,58,51,53,65,72,54,66,51,50,69,41 -01-14,24,27,11,20,24,21,31,22,25,24,27,15,22,21,20,24,17,23,17,20,24,17,19,20,24,20,16,26,17,14,20,11,22,20,15,23,19,18,18,16,18,18,25,15,16,29,18,23,23,19,27,13 -15-44,220,315,324,285,253,295,357,292,318,279,313,297,238,276,308,285,328,330,269,278,255,223,298,249,287,295,262,274,290,269,256,274,271,251,223,290,247,263,282,302,316,288,274,293,276,316,310,324,295,318,375,189 -45-64,1179,1481,1305,1216,1288,1235,1307,1170,1242,1287,1261,1245,1031,1245,1351,1352,1226,1225,1046,1199,1133,1036,1164,1158,1137,1104,1173,1092,1153,1069,1091,1056,1134,1042,964,1098,1099,1094,1180,1134,1102,1166,1131,1103,1133,1222,1183,1127,1192,1141,1280,796 -65-74,1780,1849,1693,1780,1682,1713,1682,1655,1664,1706,1668,1609,1435,1652,1866,1814,1693,1650,1468,1633,1489,1428,1630,1501,1495,1469,1489,1450,1465,1439,1383,1458,1395,1516,1295,1484,1437,1516,1527,1494,1538,1480,1482,1546,1552,1528,1549,1588,1629,1633,1614,1060 -75-84,3461,3703,3156,3286,3293,3243,3200,3132,3079,3269,3239,3280,2672,3162,3543,3418,3009,2897,2594,2961,2912,2479,2803,2622,2623,2525,2548,2494,2585,2470,2330,2451,2392,2524,2287,2641,2376,2526,2597,2697,2614,2729,2651,2637,2819,2775,2811,2901,2889,2935,3017,1890 -85+,4921,5100,4532,4625,4723,4478,4396,4515,4400,4625,4617,4567,3821,4467,4999,4808,4304,3978,3363,3688,3663,3098,3525,3261,3281,3136,3223,3146,3230,3162,3018,2983,2964,3167,2861,3316,3108,3158,3497,3498,3293,3494,3621,3460,3588,3641,3662,3604,3825,3937,3951,2617 -Males 4,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Under 1 year,17,50,32,24,31,30,32,42,34,23,39,25,25,39,22,33,30,26,34,41,34,34,23,36,32,23,24,26,27,34,29,25,28,32,17,34,33,42,25,25,31,31,28,27,38,38,28,41,25,22,47,18 -01-14,13,11,5,12,10,10,12,8,12,16,16,6,16,14,12,11,7,13,10,9,15,7,11,13,18,12,7,15,11,6,12,10,9,10,8,13,8,8,11,5,9,12,17,10,7,15,7,17,13,8,13,11 -15-44,129,183,192,179,155,193,216,178,210,167,205,203,154,161,196,200,216,231,163,201,178,137,190,159,193,188,169,174,175,180,162,176,165,162,147,208,147,164,185,204,209,182,186,189,182,212,201,216,198,217,245,120 -45-64,679,885,791,730,749,740,785,688,755,727,772,743,618,755,835,817,761,749,631,700,688,592,685,686,670,673,685,666,706,648,645,605,656,643,548,634,661,683,696,686,650,714,662,651,680,734,756,678,728,669,797,469 -65-74,1047,1071,1001,1035,982,1007,988,985,945,1011,980,945,847,954,1093,1037,1005,992,873,981,840,796,950,876,842,846,861,859,885,821,807,854,819,876,783,868,878,889,891,850,907,884,853,928,878,848,922,978,948,934,932,617 -75-84,1734,1915,1594,1713,1739,1645,1649,1569,1615,1692,1615,1699,1347,1635,1834,1804,1557,1572,1401,1594,1580,1272,1414,1369,1388,1310,1336,1294,1367,1287,1210,1327,1260,1263,1183,1420,1284,1347,1323,1425,1406,1452,1430,1383,1502,1445,1466,1578,1522,1554,1557,993 -85+,1757,1775,1621,1614,1758,1614,1608,1645,1596,1669,1638,1591,1393,1618,1805,1743,1522,1413,1220,1328,1332,1151,1341,1229,1228,1157,1211,1232,1170,1109,1091,1119,1089,1200,1067,1234,1147,1158,1280,1333,1233,1232,1354,1278,1354,1322,1356,1340,1466,1484,1480,993 -Females 4,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Under 1 year,17,15,22,25,20,29,23,16,18,29,16,34,16,16,25,16,18,37,22,26,18,16,19,21,25,16,28,25,23,19,30,22,24,21,23,18,28,16,29,23,27,27,23,26,27,34,26,25,26,28,22,23 -01-14,11,16,6,8,14,11,19,14,13,8,11,9,6,7,8,13,10,10,7,11,9,10,8,7,6,8,9,11,6,8,8,1,13,10,7,10,11,10,7,11,9,6,8,5,9,14,11,6,10,11,14,2 -15-44,91,132,132,106,98,102,141,114,108,112,108,94,84,115,112,85,112,99,106,77,77,86,108,90,94,107,93,100,115,89,94,98,106,89,76,82,100,99,97,98,107,106,88,104,94,104,109,108,97,101,130,69 -45-64,500,596,514,486,539,495,522,482,487,560,489,502,413,490,516,535,465,476,415,499,445,444,479,472,467,431,488,426,447,421,446,451,478,399,416,464,438,411,484,448,452,452,469,452,453,488,427,449,464,472,483,327 -65-74,733,778,692,745,700,706,694,670,719,695,688,664,588,698,773,777,688,658,595,652,649,632,680,625,653,623,628,591,580,618,576,604,576,640,512,616,559,627,636,644,631,596,629,618,674,680,627,610,681,699,682,443 -75-84,1727,1788,1562,1573,1554,1598,1551,1563,1464,1577,1624,1581,1325,1527,1709,1614,1452,1325,1193,1367,1332,1207,1389,1253,1235,1215,1212,1200,1218,1183,1120,1124,1132,1261,1104,1221,1092,1179,1274,1272,1208,1277,1221,1254,1317,1330,1345,1323,1367,1381,1460,897 -85+,3164,3325,2911,3011,2965,2864,2788,2870,2804,2956,2979,2976,2428,2849,3194,3065,2782,2565,2143,2360,2331,1947,2184,2032,2053,1979,2012,1914,2060,2053,1927,1864,1875,1967,1794,2082,1961,2000,2217,2165,2060,2262,2267,2182,2234,2319,2306,2264,2359,2453,2471,1624 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Deaths by Region of usual residence 5,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -North East,696,732,646,607,599,565,585,554,532,529,513,517,466,516,600,565,505,555,483,484,489,488,502,468,467,476,449,413,480,426,395,417,461,447,393,485,438,450,469,526,481,504,482,523,494,565,503,523,486,478,536,374 -North West,1545,1650,1539,1571,1481,1533,1542,1522,1525,1568,1538,1534,1300,1531,1660,1524,1449,1347,1213,1295,1293,1176,1256,1206,1163,1150,1190,1212,1130,1173,1121,1123,1133,1171,1062,1209,1105,1145,1277,1251,1186,1231,1227,1258,1221,1301,1357,1319,1307,1426,1366,925 -Yorkshire and The Humber,1138,1213,1155,1163,1121,1102,1126,1102,1056,1088,1067,1152,927,1113,1147,1139,1085,966,895,995,978,779,917,874,850,817,868,861,902,789,851,855,819,854,790,874,833,875,935,862,933,865,876,875,950,954,898,932,974,1038,1052,689 -East Midlands,976,1025,928,919,956,873,912,939,893,950,912,987,764,911,952,1014,869,852,718,823,776,695,803,735,757,696,769,702,718,751,648,715,642,664,647,747,721,723,742,786,753,792,803,769,765,804,811,803,837,802,901,563 -West Midlands,1268,1325,1072,1158,1149,1172,1174,1074,1093,1198,1223,1121,960,1153,1371,1197,1066,1042,870,1047,1000,846,1002,909,861,846,894,902,969,852,853,828,849,902,754,895,881,842,930,910,915,937,951,963,963,925,992,986,1000,1058,1091,616 -East,1198,1299,1232,1193,1215,1144,1138,1116,1171,1210,1148,1168,908,1084,1233,1274,1134,1070,954,1040,978,875,1004,947,994,1022,912,860,907,864,866,874,830,902,775,922,888,904,985,979,933,1033,943,997,1008,1006,1003,985,1059,1007,1067,711 -London,1080,1182,1012,1063,1079,1052,1117,1048,1004,1041,1019,1017,902,1041,1125,1062,981,952,868,919,863,769,870,865,866,811,833,797,803,837,766,717,767,790,754,810,770,813,839,915,859,862,870,835,918,922,879,882,895,917,975,590 -South East,1793,1988,1680,1643,1734,1725,1575,1631,1693,1724,1726,1631,1403,1579,1914,1801,1648,1612,1306,1546,1501,1267,1525,1318,1381,1310,1415,1305,1394,1282,1269,1302,1274,1389,1164,1355,1253,1352,1429,1374,1325,1378,1471,1336,1455,1428,1485,1500,1605,1505,1577,1019 -South West,1174,1346,1149,1191,1211,1182,1146,1159,1155,1198,1286,1195,1022,1169,1320,1322,1159,1094,942,1068,1020,856,961,975,947,906,926,914,958,922,853,911,904,909,808,1003,888,953,960,972,971,987,1007,977,1052,1044,1020,1054,1102,1126,1101,692 -Wales,725,755,647,738,749,682,697,688,642,719,720,729,617,736,792,770,708,657,547,603,606,557,603,556,583,533,520,534,513,553,518,516,524,524,511,569,530,543,558,589,555,594,551,559,591,597,609,627,621,654,644,404 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Footnotes,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"1 This average is based on the actual number of death registrations recorded for each corresponding week over the previous five years. Moveable public holidays, when register offices are closed, affect the number of registrations made in the published weeks and in the corresponding weeks in previous years.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2 Counts of deaths by underlying cause exclude deaths at age under 28 days.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -3 Coding of deaths by underlying cause for the latest week is not yet complete.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"4 Does not include deaths where age is either missing or not yet fully coded. For this reason counts of 'Persons', 'Males' and 'Females' may not sum to 'Total Deaths, all ages'.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"5 Does not include deaths of those resident outside England and Wales or those records where the place of residence is either missing or not yet fully coded. For this reason counts for ""Deaths by Region of usual residence"" may not sum to ""Total deaths, all ages"".",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Source: Office for National Statistics,Released:,41695,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA diff --git a/working_files/Weekly/2013Mortality.xls b/working_files/Weekly/2013Mortality.xls deleted file mode 100644 index 7938576..0000000 Binary files a/working_files/Weekly/2013Mortality.xls and /dev/null differ diff --git a/working_files/Weekly/2014Mortality-Contents.csv b/working_files/Weekly/2014Mortality-Contents.csv deleted file mode 100644 index ad88b28..0000000 --- a/working_files/Weekly/2014Mortality-Contents.csv +++ /dev/null @@ -1,11 +0,0 @@ -Contents,"Weekly Provisional Figures on Deaths Registered in -England and Wales" -NA,NA -NA,NA -Metadata,Information on weekly deaths -NA,NA -Terms and conditions,Terms and conditions -NA,NA -Weekly Figures for 2014,"Deaths (numbers): by age, sex and region, 2014 registrations, England and Wales" -NA,NA -Related publications,Provides links to further mortality statistics based on death registrations diff --git a/working_files/Weekly/2014Mortality-Metadata.csv b/working_files/Weekly/2014Mortality-Metadata.csv deleted file mode 100644 index 48a6a0f..0000000 --- a/working_files/Weekly/2014Mortality-Metadata.csv +++ /dev/null @@ -1,56 +0,0 @@ -Contents -Metadata -NA -Introduction -NA -"Weekly death figures provide provisional counts of the number of deaths registered in England and Wales for which data are available, and the number of deaths for which the underlying cause was coded to respiratory diseases as defined in the International Statistical Classification of Diseases and Related Health Problems Tenth Revision (ICD-10)." -NA -"These figures are also presented by age group, sex and by area of usual residence." -NA -Notes and definitions -NA -Deaths occurring in England and Wales are registered on the General Register Office's Registration Online system (RON). -NA -Daily extracts of death registration records from RON are processed on ONS' database systems. -NA -Provisional data on deaths registered in each week (ending on a Friday) are compiled at the end of the following week. -NA -Bank Holidays could affect the number of registrations made within those weeks. -NA -The respiratory diseases counts are updated with each weekly publication as the coding of the underlying cause is not always complete at the time of production. -NA -"In January 2014, ONS changed the software used to code cause of death. Further information about the implementation of the software can be found on the ONS website." -NA -"Where there are the same values in categories in consecutive weeks, the counts have been checked and are made up of unique death registrations." -NA -Symbols -NA -In ONS mortality outputs published symbols used are: -: denotes not available -For further information please refer to -https://gss.civilservice.gov.uk/statistics/a-z-of-policies-and-guidance/guidance-use-data-markers/ -NA -The ONS policy on protecting confidentiality in birth and death statistics is available on the ONS website: -www.ons.gov.uk/ons/guide-method/best-practice/disclosure-control-policy-for-birth-and-death-statistics/index.html -NA -Further information and enquiries -NA -General enquiries should be addressed to: -Vital Statistics Outputs Branch -Office for National Statistics -Segensworth Road -Titchfield -Fareham -Hants PO15 5RR -Telephone: +44 (0)1329 444110 -email: vsob@ons.gsi.gov.uk -NA -"Special extracts and tabulations of mortality data for England and Wales are available (subject to legal frameworks, disclosure control, resources and agreement of costs, where appropriate). Such enquiries should be made to the postal or email address above." -NA -Our charging policy is available online. -"In line with the ONS approach to open data," -all ad hoc data requests will be published onto the website. -NA -Feedback -NA -We welcome feedback from users. Please send feedback to the postal or email address above. diff --git a/working_files/Weekly/2014Mortality-Related publications.csv b/working_files/Weekly/2014Mortality-Related publications.csv deleted file mode 100644 index 582d0b4..0000000 --- a/working_files/Weekly/2014Mortality-Related publications.csv +++ /dev/null @@ -1,28 +0,0 @@ -Contents -Related publications -NA -Mortality metadata -Supporting information for these tables can be found in mortality metadata. -NA -Quality and Methodology Information -Quality and Methodology Information notes for Mortality and Child Mortality. -NA -Further mortality statistics based on death registrations are available on the ONS website: -NA -"Interactive Mapping Tool, England and Wales" -An interactive mapping tool which enables trends in mortality to be analysed at the local level. Mortality rates for 2001 onwards have been calculated using the 2013 European Standard Population (ESP). -NA -"Death summary tables, England and Wales" -The summary tables provide key death registration statistics for the reference year. -NA -Deaths registered in England and Wales (Series DR) -Series DR (Mortality Statistics: Deaths Registered in England and Wales) provides detailed death registration statistics for the reference year. This includes numbers of deaths by detailed underlying cause by age-sex group defined by the different chapters of the Tenth Revision of the International Statistical Classification of Diseases and Related Health Problems (ICD-10). -NA -"Monthly figures on deaths registered by area of usual residence, England and Wales" -"To meet user needs, very timely but provisional counts of monthly death registrations in England and Wales are published by area of usual residence. Figures remain provisional until final annual data are released." -NA -"Vital statistics: Population and health reference tables, United Kingdom and constituent countries" -"These tables provide annual data for a selection of key statistics under the following themes: population, demography and health. Figures for the latest years may be provisional, these will be updated to final figures when data are available." -NA -Mortality Statistics: Deaths registered in England and Wales by area of usual residence -Presents data on death registrations in the United Kingdom by area of usual residence. The release contains a summary table providing key mortality measures (numbers and rates including age standardised mortality rates) for the United Kingdom and its constituent countries and a table providing numbers of deaths in England and Wales by age and sex. diff --git a/working_files/Weekly/2014Mortality-Terms and conditions.csv b/working_files/Weekly/2014Mortality-Terms and conditions.csv deleted file mode 100644 index 86a4467..0000000 --- a/working_files/Weekly/2014Mortality-Terms and conditions.csv +++ /dev/null @@ -1,34 +0,0 @@ -Contents -Terms and conditions -NA -A National Statistics publication -NA -National Statistics are produced to high professional standards set out in the Code of Practice for Official Statistics. They are produced free from any political interference. -NA -"The United Kingdom Statistics Authority has designated these statistics as National Statistics, in accordance with the Statistics and Registration Service Act 2007 and signifying compliance with the Code of Practice for Official Statistics." -Designation can be broadly interpreted to mean that the statistics: -• meet identified user needs; -• are well explained and readily accessible; -"• are produced according to sound methods, and" -• are managed impartially and objectively in the public interest. -NA -Once statistics have been designated as National Statistics it is a statutory requirement that the Code of Practice shall continue to be observed. -NA -About us -NA -"We are the executive office of the UK Statistics Authority, a non-ministerial department which reports directly to Parliament and the UK government’s single largest statistical producer. We compile information about the UK’s society and economy, and provide the evidence-base for policy and decision-making, the allocation of resources, and public accountability." -NA -Copyright and reproduction -NA -© Crown copyright 2016 -"You may re-use this document/publication (not including logos) free of charge in any format or medium, under the terms of the Open Government Licence." -Users should include a source accreditation to ONS - Source: Office for National Statistics licensed under the Open Government Licence. -NA -To view this licence visit: -www.nationalarchives.gov.uk/doc/open-government-licence -"or write to the Information Policy Team, The National Archives, Kew, Richmond, Surrey, TW9 4DU;" -or email: psi@nationalarchives.gsi.gov.uk -NA -Where we have identified any third party copyright information you will need to obtain permission from the copyright holders concerned. -NA -This document/publication is also available on our website at www.ons.gov.uk diff --git a/working_files/Weekly/2014Mortality-Weekly Figures 2014.csv b/working_files/Weekly/2014Mortality-Weekly Figures 2014.csv deleted file mode 100644 index 48f115d..0000000 --- a/working_files/Weekly/2014Mortality-Weekly Figures 2014.csv +++ /dev/null @@ -1,71 +0,0 @@ -Contents,...2,...3,...4,...5,...6,...7,...8,...9,...10,...11,...12,...13,...14,...15,...16,...17,...18,...19,...20,...21,...22,...23,...24,...25,...26,...27,...28,...29,...30,...31,...32,...33,...34,...35,...36,...37,...38,...39,...40,...41,...42,...43,...44,...45,...46,...47,...48,...49,...50,...51,...52,...53 -Weekly provisional figures on deaths registered in England and Wales,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Week number,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52 -Week ended,41642,41649,41656,41663,41670,41677,41684,41691,41698,41705,41712,41719,41726,41733,41740,41747,41754,41761,41768,41775,41782,41789,41796,41803,41810,41817,41824,41831,41838,41845,41852,41859,41866,41873,41880,41887,41894,41901,41908,41915,41922,41929,41936,41943,41950,41957,41964,41971,41978,41985,41992,41999 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"Total deaths, all ages",11448,11847,11061,10374,10258,10147,10198,10427,10377,9828,10005,9832,9622,9944,9504,8000,9359,10527,8613,9513,9313,8034,9557,9414,8946,8931,8763,8784,9119,8965,8916,8755,8792,8769,8027,9671,9284,9107,9048,9271,9173,9464,9603,9586,9753,10036,9472,9928,10267,10550,11681,7837 -Total deaths: average of corresponding,12328,12938.8,11586.4,11115.4,10710.4,10363.4,10455.799999999999,10410.6,10207.6,10173.799999999999,10102,9905.7999999999993,9121,9639.3999999999996,9940.6000000000004,9999.7999999999993,9610.3999999999996,9519.7999999999993,9122.6000000000004,9395,9367.2000000000007,8472.6000000000004,8762.3999999999996,9046,8771.6000000000004,8711.6000000000004,8742.3999999999996,8513,8510,8490.7999999999993,8521.3999999999996,8481.7999999999993,8512.6000000000004,8605,7795.3999999999996,8628.3999999999996,8603,8663,8911.2000000000007,8976,9056.2000000000007,9136.3999999999996,9321,9439.2000000000007,9414.3999999999996,9535.6000000000004,9492.3999999999996,9398.7999999999993,10111.799999999999,10323.6,10886.4,8310 -week over the previous five years1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"Deaths by underlying cause2,3,4",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"All respiratory diseases (ICD-10 J00-J99) -ICD-10 v 2013 (IRIS)",:,1783,1676,1512,1492,1418,1442,1607,1519,1497,1412,1312,1296,1363,1320,1042,1279,1434,1165,1185,1190,1049,1211,1150,1033,1162,1032,1038,1042,1066,1051,1023,1018,924,979,1139,1082,1051,1080,1075,1069,1091,1203,1180,1244,1277,1135,1213,1463,1552,1950,1366 -ICD-10 v 2010 (NCHS),1779,1925,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,:,: -Persons 5,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Under 1 year,36,47,67,48,54,47,58,58,70,44,52,54,76,45,59,49,55,49,40,48,65,45,56,58,52,51,38,44,42,57,52,58,57,58,40,50,57,57,56,54,66,49,56,51,47,60,49,64,62,40,50,37 -01-14,16,25,15,18,21,24,27,28,22,20,26,15,19,18,23,18,20,23,17,20,17,21,32,22,15,17,26,32,24,19,20,22,18,15,15,13,23,13,17,22,21,19,19,25,16,12,16,18,26,24,24,16 -15-44,213,276,278,301,313,303,328,310,312,329,332,330,270,310,299,243,277,356,226,291,319,210,301,292,313,285,251,296,276,234,312,248,293,268,246,247,300,262,292,288,270,273,285,312,289,300,288,321,339,300,285,189 -45-64,1269,1391,1326,1228,1249,1246,1196,1191,1240,1170,1276,1225,1206,1174,1160,951,1087,1283,1015,1162,1144,986,1170,1136,1144,1173,1143,1098,1180,1109,1114,1155,1151,1128,988,1167,1146,1137,1097,1113,1158,1158,1122,1119,1153,1156,1092,1224,1194,1202,1258,782 -65-74,1868,1885,1727,1696,1656,1566,1652,1634,1744,1607,1629,1612,1529,1645,1627,1344,1573,1722,1468,1592,1628,1409,1639,1575,1472,1536,1498,1428,1546,1507,1520,1455,1420,1453,1346,1641,1487,1510,1501,1481,1483,1551,1571,1593,1537,1631,1547,1642,1674,1715,1835,1238 -75-84,3308,3482,3215,3008,2951,2937,2959,2985,2989,2867,2867,2895,2852,2915,2631,2362,2801,3043,2543,2690,2669,2279,2748,2725,2663,2558,2495,2545,2622,2628,2556,2514,2533,2515,2360,2858,2701,2667,2637,2680,2640,2732,2808,2771,2875,2933,2733,2894,2935,3085,3279,2247 -85+,4738,4739,4433,4075,4014,4021,3966,4220,4000,3790,3816,3696,3670,3823,3701,3029,3544,4049,3304,3709,3469,3078,3608,3602,3287,3311,3312,3339,3424,3409,3339,3302,3318,3332,3032,3695,3570,3459,3447,3631,3535,3681,3742,3715,3834,3937,3729,3757,4037,4180,4950,3327 -Males 5,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Under 1 year,20,26,27,29,27,28,33,31,34,24,27,33,39,19,39,29,33,29,23,23,38,29,36,34,24,23,21,20,21,29,29,28,27,26,25,20,35,37,34,33,32,21,30,34,29,32,24,36,35,21,23,22 -01-14,12,17,6,12,11,17,15,18,11,11,8,9,9,10,15,12,11,10,10,12,10,11,23,18,9,13,16,19,12,12,10,13,11,10,12,7,13,5,11,15,9,10,8,17,10,4,8,8,10,16,15,10 -15-44,125,152,175,194,200,193,218,200,196,210,209,215,175,184,203,153,178,220,149,165,199,130,192,194,194,173,162,182,167,145,203,164,190,170,153,145,203,168,190,191,175,172,175,197,183,185,193,212,220,208,184,128 -45-64,731,831,782,742,765,770,698,705,718,702,771,729,722,700,717,582,633,763,603,694,701,591,698,706,673,719,682,677,713,637,687,691,720,665,566,686,689,665,693,647,701,711,676,649,684,673,651,719,743,689,750,447 -65-74,1043,1089,1002,977,980,892,981,949,1043,922,959,955,904,961,922,750,922,1003,886,940,964,820,977,918,868,897,927,840,924,888,869,842,826,830,761,992,911,931,911,828,854,912,926,952,880,980,919,956,952,959,1100,690 -75-84,1700,1835,1659,1586,1555,1518,1535,1547,1588,1478,1454,1479,1501,1568,1402,1270,1464,1583,1362,1420,1415,1217,1455,1481,1421,1378,1310,1377,1383,1374,1322,1304,1354,1358,1212,1498,1429,1381,1364,1420,1383,1447,1495,1405,1568,1529,1440,1515,1549,1662,1679,1145 -85+,1767,1753,1648,1524,1439,1542,1505,1684,1427,1407,1396,1391,1392,1465,1421,1145,1381,1496,1264,1386,1246,1153,1399,1392,1278,1203,1246,1256,1295,1266,1261,1175,1280,1221,1162,1348,1378,1247,1266,1379,1358,1390,1387,1398,1427,1467,1398,1413,1512,1529,1856,1205 -Females 5,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Under 1 year,16,21,40,19,27,19,25,27,36,20,25,21,37,26,20,20,22,20,17,25,27,16,20,24,28,28,17,24,21,28,23,30,30,32,15,30,22,20,22,21,34,28,26,17,18,28,25,28,27,19,27,15 -01-14,4,8,9,6,10,7,12,10,11,9,18,6,10,8,8,6,9,13,7,8,7,10,9,4,6,4,10,13,12,7,10,9,7,5,3,6,10,8,6,7,12,9,11,8,6,8,8,10,16,8,9,6 -15-44,88,124,103,107,113,110,110,110,116,119,123,115,95,126,96,90,99,136,77,126,120,80,109,98,119,112,89,114,109,89,109,84,103,98,93,102,97,94,102,97,95,101,110,115,106,115,95,109,119,92,101,61 -45-64,538,560,544,486,484,476,498,486,522,468,505,496,484,474,443,369,454,520,412,468,443,395,472,430,471,454,461,421,467,472,427,464,431,463,422,481,457,472,404,466,457,447,446,470,469,483,441,505,451,513,508,335 -65-74,825,796,725,719,676,674,671,685,701,685,670,657,625,684,705,594,651,719,582,652,664,589,662,657,604,639,571,588,622,619,651,613,594,623,585,649,576,579,590,653,629,639,645,641,657,651,628,686,722,756,735,548 -75-84,1608,1647,1556,1422,1396,1419,1424,1438,1401,1389,1413,1416,1351,1347,1229,1092,1337,1460,1181,1270,1254,1062,1293,1244,1242,1180,1185,1168,1239,1254,1234,1210,1179,1157,1148,1360,1272,1286,1273,1260,1257,1285,1313,1366,1307,1404,1293,1379,1386,1423,1600,1102 -85+,2971,2986,2785,2551,2575,2479,2461,2536,2573,2383,2420,2305,2278,2358,2280,1884,2163,2553,2040,2323,2223,1925,2209,2210,2009,2108,2066,2083,2129,2143,2078,2127,2038,2111,1870,2347,2192,2212,2181,2252,2177,2291,2355,2317,2407,2470,2331,2344,2525,2651,3094,2122 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Deaths by Region of usual residence 6,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -North East,554,615,547,573,550,537,538,590,526,536,522,516,516,562,502,443,458,589,456,482,505,465,463,471,485,505,451,487,514,477,482,440,505,497,468,530,487,505,525,525,568,498,472,496,488,523,471,517,520,575,633,438 -North West,1581,1549,1520,1377,1385,1431,1453,1408,1428,1342,1400,1312,1352,1354,1279,1078,1348,1367,1163,1235,1276,1158,1263,1282,1241,1201,1189,1235,1242,1220,1176,1179,1174,1220,1149,1299,1229,1241,1171,1261,1187,1290,1259,1300,1290,1395,1261,1330,1443,1475,1591,1101 -Yorkshire and The Humber,1139,1151,1077,1058,1020,976,999,1016,983,962,1000,959,896,940,921,775,919,1049,835,960,898,791,925,888,826,904,906,829,905,806,870,854,862,877,831,1003,899,901,897,888,891,979,937,940,960,948,949,982,1018,1069,1176,833 -East Midlands,952,989,894,872,869,839,862,864,912,801,872,833,836,851,772,654,818,832,752,793,745,686,826,792,794,774,748,771,789,719,705,720,761,777,623,745,762,747,736,769,809,785,775,782,856,833,802,804,797,899,1003,660 -West Midlands,1212,1304,1181,1084,1114,1039,1105,1024,1098,1049,998,1057,964,1024,1000,862,919,1081,860,1002,919,748,997,982,893,927,898,848,927,897,939,954,865,885,824,1026,963,962,941,969,975,920,1014,974,992,1054,963,1025,1034,1065,1204,743 -East,1164,1297,1183,1076,1057,1121,1081,1118,1115,1042,1005,997,1040,1100,985,876,950,1095,951,1051,912,775,1064,961,1010,955,898,1013,933,1006,970,917,943,920,809,1054,999,968,983,989,983,1023,1024,950,1118,1095,992,1056,1128,1080,1215,804 -London,1129,1103,962,982,967,941,952,950,982,949,985,953,937,969,884,727,910,975,810,887,946,804,890,869,825,839,807,804,826,884,875,836,836,847,717,923,893,873,832,871,804,869,893,1016,884,973,860,995,1001,1016,1139,773 -South East,1739,1897,1732,1589,1603,1517,1497,1629,1608,1495,1487,1580,1466,1484,1510,1188,1441,1670,1312,1511,1416,1261,1536,1522,1341,1314,1391,1311,1419,1381,1399,1360,1338,1277,1220,1467,1448,1315,1431,1435,1396,1397,1525,1399,1541,1571,1521,1578,1573,1541,1707,1155 -South West,1208,1187,1235,1118,1053,1055,1095,1128,1071,1026,1086,1000,978,1018,1039,855,945,1159,944,988,1066,807,979,1045,957,946,886,912,930,961,930,923,956,911,848,1012,1004,1005,936,967,958,1039,1010,1030,1020,1024,999,988,1080,1076,1266,812 -Wales,751,725,690,604,622,655,590,681,621,605,617,607,604,626,589,527,634,686,515,576,602,514,588,574,552,541,568,551,601,590,545,545,526,526,515,582,562,568,571,569,556,627,670,673,573,592,612,622,650,731,723,503 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Footnotes,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"1 This average is based on the actual number of death registrations recorded for each corresponding week over the previous five years. Moveable public holidays, when register offices are closed, affect the number of registrations made in the published weeks and in the corresponding weeks in previous years.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2 Counts of deaths by underlying cause exclude deaths at age under 28 days.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -3 Coding of deaths by underlying cause for the latest week is not yet complete.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"4 For deaths registered from January 2014, cause of death is coded to the ICD-10 classification using IRIS software. Further information about the implementation of the software is available on the ONS website.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -All deaths registered in week 2 were dual-coded using both ICD-10 v2010 (NCHS) and ICD-10 v2013 (IRIS). An information note providing the,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Preliminary findings on the impact of the implementation of IRIS software for ICD-10 cause of death coding on mortality statistics in England and Wales is available on the ONS website.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"5 Does not include deaths where age is either missing or not yet fully coded. For this reason counts of 'Persons', 'Males' and 'Females' may not sum to 'Total Deaths, all ages'.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"6 Does not include deaths of those resident outside England and Wales or those records where the place of residence is either missing or not yet fully coded. For this reason counts for ""Deaths by Region of usual residence"" may not sum to ""Total deaths, all ages"".",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Source: Office for National Statistics,Released:,42059,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA diff --git a/working_files/Weekly/2014Mortality.xls b/working_files/Weekly/2014Mortality.xls deleted file mode 100644 index 56ecb39..0000000 Binary files a/working_files/Weekly/2014Mortality.xls and /dev/null differ diff --git a/working_files/Weekly/2015Mortality-Contents.csv b/working_files/Weekly/2015Mortality-Contents.csv deleted file mode 100644 index 5e7ee63..0000000 --- a/working_files/Weekly/2015Mortality-Contents.csv +++ /dev/null @@ -1,11 +0,0 @@ -Contents,"Weekly Provisional Figures on Deaths Registered in -England and Wales" -NA,NA -NA,NA -Metadata,Information on weekly deaths -NA,NA -Terms and conditions,Terms and conditions -NA,NA -Weekly Figures for 2015,"Deaths (numbers): by age, sex and region, 2015 registrations, England and Wales" -NA,NA -Related publications,Provides links to further mortality statistics based on death registrations diff --git a/working_files/Weekly/2015Mortality-Metadata.csv b/working_files/Weekly/2015Mortality-Metadata.csv deleted file mode 100644 index 48a6a0f..0000000 --- a/working_files/Weekly/2015Mortality-Metadata.csv +++ /dev/null @@ -1,56 +0,0 @@ -Contents -Metadata -NA -Introduction -NA -"Weekly death figures provide provisional counts of the number of deaths registered in England and Wales for which data are available, and the number of deaths for which the underlying cause was coded to respiratory diseases as defined in the International Statistical Classification of Diseases and Related Health Problems Tenth Revision (ICD-10)." -NA -"These figures are also presented by age group, sex and by area of usual residence." -NA -Notes and definitions -NA -Deaths occurring in England and Wales are registered on the General Register Office's Registration Online system (RON). -NA -Daily extracts of death registration records from RON are processed on ONS' database systems. -NA -Provisional data on deaths registered in each week (ending on a Friday) are compiled at the end of the following week. -NA -Bank Holidays could affect the number of registrations made within those weeks. -NA -The respiratory diseases counts are updated with each weekly publication as the coding of the underlying cause is not always complete at the time of production. -NA -"In January 2014, ONS changed the software used to code cause of death. Further information about the implementation of the software can be found on the ONS website." -NA -"Where there are the same values in categories in consecutive weeks, the counts have been checked and are made up of unique death registrations." -NA -Symbols -NA -In ONS mortality outputs published symbols used are: -: denotes not available -For further information please refer to -https://gss.civilservice.gov.uk/statistics/a-z-of-policies-and-guidance/guidance-use-data-markers/ -NA -The ONS policy on protecting confidentiality in birth and death statistics is available on the ONS website: -www.ons.gov.uk/ons/guide-method/best-practice/disclosure-control-policy-for-birth-and-death-statistics/index.html -NA -Further information and enquiries -NA -General enquiries should be addressed to: -Vital Statistics Outputs Branch -Office for National Statistics -Segensworth Road -Titchfield -Fareham -Hants PO15 5RR -Telephone: +44 (0)1329 444110 -email: vsob@ons.gsi.gov.uk -NA -"Special extracts and tabulations of mortality data for England and Wales are available (subject to legal frameworks, disclosure control, resources and agreement of costs, where appropriate). Such enquiries should be made to the postal or email address above." -NA -Our charging policy is available online. -"In line with the ONS approach to open data," -all ad hoc data requests will be published onto the website. -NA -Feedback -NA -We welcome feedback from users. Please send feedback to the postal or email address above. diff --git a/working_files/Weekly/2015Mortality-Related publications.csv b/working_files/Weekly/2015Mortality-Related publications.csv deleted file mode 100644 index 582d0b4..0000000 --- a/working_files/Weekly/2015Mortality-Related publications.csv +++ /dev/null @@ -1,28 +0,0 @@ -Contents -Related publications -NA -Mortality metadata -Supporting information for these tables can be found in mortality metadata. -NA -Quality and Methodology Information -Quality and Methodology Information notes for Mortality and Child Mortality. -NA -Further mortality statistics based on death registrations are available on the ONS website: -NA -"Interactive Mapping Tool, England and Wales" -An interactive mapping tool which enables trends in mortality to be analysed at the local level. Mortality rates for 2001 onwards have been calculated using the 2013 European Standard Population (ESP). -NA -"Death summary tables, England and Wales" -The summary tables provide key death registration statistics for the reference year. -NA -Deaths registered in England and Wales (Series DR) -Series DR (Mortality Statistics: Deaths Registered in England and Wales) provides detailed death registration statistics for the reference year. This includes numbers of deaths by detailed underlying cause by age-sex group defined by the different chapters of the Tenth Revision of the International Statistical Classification of Diseases and Related Health Problems (ICD-10). -NA -"Monthly figures on deaths registered by area of usual residence, England and Wales" -"To meet user needs, very timely but provisional counts of monthly death registrations in England and Wales are published by area of usual residence. Figures remain provisional until final annual data are released." -NA -"Vital statistics: Population and health reference tables, United Kingdom and constituent countries" -"These tables provide annual data for a selection of key statistics under the following themes: population, demography and health. Figures for the latest years may be provisional, these will be updated to final figures when data are available." -NA -Mortality Statistics: Deaths registered in England and Wales by area of usual residence -Presents data on death registrations in the United Kingdom by area of usual residence. The release contains a summary table providing key mortality measures (numbers and rates including age standardised mortality rates) for the United Kingdom and its constituent countries and a table providing numbers of deaths in England and Wales by age and sex. diff --git a/working_files/Weekly/2015Mortality-Terms and conditions.csv b/working_files/Weekly/2015Mortality-Terms and conditions.csv deleted file mode 100644 index 86a4467..0000000 --- a/working_files/Weekly/2015Mortality-Terms and conditions.csv +++ /dev/null @@ -1,34 +0,0 @@ -Contents -Terms and conditions -NA -A National Statistics publication -NA -National Statistics are produced to high professional standards set out in the Code of Practice for Official Statistics. They are produced free from any political interference. -NA -"The United Kingdom Statistics Authority has designated these statistics as National Statistics, in accordance with the Statistics and Registration Service Act 2007 and signifying compliance with the Code of Practice for Official Statistics." -Designation can be broadly interpreted to mean that the statistics: -• meet identified user needs; -• are well explained and readily accessible; -"• are produced according to sound methods, and" -• are managed impartially and objectively in the public interest. -NA -Once statistics have been designated as National Statistics it is a statutory requirement that the Code of Practice shall continue to be observed. -NA -About us -NA -"We are the executive office of the UK Statistics Authority, a non-ministerial department which reports directly to Parliament and the UK government’s single largest statistical producer. We compile information about the UK’s society and economy, and provide the evidence-base for policy and decision-making, the allocation of resources, and public accountability." -NA -Copyright and reproduction -NA -© Crown copyright 2016 -"You may re-use this document/publication (not including logos) free of charge in any format or medium, under the terms of the Open Government Licence." -Users should include a source accreditation to ONS - Source: Office for National Statistics licensed under the Open Government Licence. -NA -To view this licence visit: -www.nationalarchives.gov.uk/doc/open-government-licence -"or write to the Information Policy Team, The National Archives, Kew, Richmond, Surrey, TW9 4DU;" -or email: psi@nationalarchives.gsi.gov.uk -NA -Where we have identified any third party copyright information you will need to obtain permission from the copyright holders concerned. -NA -This document/publication is also available on our website at www.ons.gov.uk diff --git a/working_files/Weekly/2015Mortality-Weekly Figures 2015.csv b/working_files/Weekly/2015Mortality-Weekly Figures 2015.csv deleted file mode 100644 index 06b95eb..0000000 --- a/working_files/Weekly/2015Mortality-Weekly Figures 2015.csv +++ /dev/null @@ -1,69 +0,0 @@ -Contents,...2,...3,...4,...5,...6,...7,...8,...9,...10,...11,...12,...13,...14,...15,...16,...17,...18,...19,...20,...21,...22,...23,...24,...25,...26,...27,...28,...29,...30,...31,...32,...33,...34,...35,...36,...37,...38,...39,...40,...41,...42,...43,...44,...45,...46,...47,...48,...49,...50,...51,...52,...53,...54 -Weekly provisional figures on deaths registered in England and Wales,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Week number,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53 -Week ended,42006,42013,42020,42027,42034,42041,42048,42055,42062,42069,42076,42083,42090,42097,42104,42111,42118,42125,42132,42139,42146,42153,42160,42167,42174,42181,42188,42195,42202,42209,42216,42223,42230,42237,42244,42251,42258,42265,42272,42279,42286,42293,42300,42307,42314,42321,42328,42335,42342,42349,42356,42363,42370 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"Total deaths, all ages",12286,16237,14866,13934,12900,12039,11822,11434,11472,11469,10951,10568,10493,9062,10089,11639,10599,10134,8862,10290,10005,8213,10157,9548,9312,9190,9205,9015,8802,8791,8617,8862,9148,9121,9026,7878,9258,9097,9529,9410,9776,9511,9711,9618,9994,9938,9830,9822,10365,10269,10689,8630,7524 -Total deaths: average of corresponding,11837.6,12277,11145,10714,10492,10320.4,10325,10429.8,10313.8,10203.6,10160.2,10020.6,9169.4,9734,10172.6,9666.2,9557.6,9771,9182.8,9479.4,9414.4,8410.4,8867.4,9181.8,8815.4,8811.8,8758,8610.6,8667.6,8606,8652.2,8543,8560.2,8689,7755.4,9031.4,8719.8,8807.6,8954.6,9091.4,9098.2,9181,9357.6,9468.4,9466.8,9650.8,9498,9496.8,10208.2,10440.4,11221,8139.2,8139 -week over the previous five years1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"Deaths by underlying cause2,3,4",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"All respiratory diseases (ICD-10 J00-J99) -ICD-10 v 2013 (IRIS)",2418,3521,3251,2734,2278,2115,1985,1994,1931,1806,1744,1642,1550,1393,1525,1730,1550,1469,1250,1404,1325,1074,1256,1242,1234,1168,1121,1022,977,960,940,1006,1055,978,1074,900,1062,1032,1117,1149,1198,1165,1183,1237,1247,1235,1317,1156,1345,1413,1437,1233,1128 -Persons 5,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Under 1 year,56,80,46,61,66,66,66,47,48,44,38,44,45,47,57,47,56,55,35,50,57,53,48,52,54,51,49,65,58,57,51,54,51,66,54,48,54,40,56,65,43,59,60,50,48,53,56,33,59,37,66,49,39 -01-14,16,28,28,20,20,30,18,18,25,19,17,20,21,17,18,22,20,21,19,20,14,22,23,10,22,19,19,18,14,14,20,21,15,21,11,12,14,18,15,18,13,26,22,14,24,26,21,21,25,25,28,26,12 -15-44,198,298,316,318,329,286,312,303,296,291,272,302,286,214,271,321,298,277,224,309,304,213,295,270,279,298,288,272,268,288,299,264,286,298,314,224,278,287,295,299,297,256,292,277,304,261,295,317,295,286,365,246,146 -45-64,1229,1552,1393,1387,1368,1280,1281,1225,1267,1225,1228,1254,1181,976,1133,1342,1274,1162,954,1227,1176,1014,1224,1188,1163,1135,1065,1151,1128,1096,1084,1095,1169,1159,1100,981,1177,1098,1156,1133,1196,1133,1158,1137,1275,1258,1172,1219,1216,1196,1255,1010,882 -65-74,1845,2387,2107,2019,1869,1774,1798,1714,1749,1850,1725,1621,1650,1405,1601,1849,1682,1628,1499,1703,1680,1365,1692,1586,1536,1573,1615,1548,1438,1583,1446,1471,1523,1543,1530,1318,1537,1549,1531,1569,1599,1585,1603,1565,1654,1607,1648,1621,1707,1632,1782,1387,1259 -75-84,3548,4505,4191,3964,3685,3425,3398,3309,3355,3279,3122,3029,3020,2642,2913,3323,3061,2928,2625,2998,2926,2464,2895,2781,2652,2682,2560,2568,2486,2520,2493,2576,2577,2655,2621,2310,2571,2627,2791,2636,2820,2781,2786,2671,2853,2804,2835,2759,3003,2928,3023,2451,2197 -85+,5392,7387,6785,6165,5563,5178,4949,4817,4731,4759,4547,4298,4289,3760,4096,4735,4206,4040,3505,3983,3839,3082,3968,3660,3602,3425,3603,3393,3405,3233,3223,3379,3525,3379,3393,2985,3623,3478,3682,3690,3807,3668,3789,3879,3826,3926,3802,3850,4056,4153,4169,3461,2988 -Males 5,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Under 1 year,29,45,25,34,42,37,31,25,28,29,27,17,29,27,39,24,36,36,18,32,35,34,24,35,38,31,30,29,34,38,30,25,35,33,37,27,25,25,29,35,22,38,37,23,22,34,35,19,40,14,37,33,25 -01-14,9,15,13,15,11,18,13,7,14,11,7,15,11,12,10,17,12,11,11,11,7,11,17,5,13,10,10,9,6,10,12,13,10,14,8,7,5,10,11,8,7,12,12,8,9,15,15,11,14,10,10,7,6 -15-44,108,192,212,211,215,173,204,187,184,181,158,194,177,137,160,209,197,176,156,207,198,125,175,165,181,188,207,190,155,177,183,186,185,194,204,148,175,182,184,184,183,177,188,185,200,179,202,206,194,192,234,151,85 -45-64,689,912,813,837,799,753,749,733,760,763,707,755,709,589,667,803,759,696,554,714,705,595,732,722,695,700,619,682,688,651,627,680,715,667,668,612,678,680,704,680,711,678,706,695,760,795,720,719,711,722,726,625,510 -65-74,1042,1347,1205,1105,1100,1052,1059,973,997,1087,981,929,926,819,921,1095,978,962,890,1024,987,791,986,934,872,945,909,909,828,912,839,886,893,896,879,778,917,889,922,896,931,937,943,914,956,980,950,922,1021,916,1036,797,737 -75-84,1865,2306,2104,2030,1908,1821,1826,1713,1749,1689,1623,1570,1576,1364,1477,1721,1620,1574,1417,1565,1605,1303,1485,1475,1332,1439,1301,1403,1323,1346,1350,1349,1365,1434,1372,1219,1396,1394,1475,1411,1471,1464,1496,1414,1454,1499,1554,1510,1558,1562,1602,1260,1139 -85+,1915,2596,2443,2215,1986,1912,1850,1809,1749,1696,1590,1600,1595,1410,1560,1757,1523,1511,1316,1502,1419,1184,1450,1391,1372,1297,1372,1313,1293,1249,1195,1340,1339,1289,1271,1165,1396,1273,1399,1400,1416,1410,1479,1476,1405,1479,1445,1445,1572,1552,1502,1315,1185 -Females 5,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Under 1 year,27,35,21,27,24,29,35,22,20,15,11,27,16,20,18,23,20,19,17,18,22,19,24,17,16,20,19,36,24,19,21,29,16,33,17,21,29,15,27,30,21,21,23,27,26,19,21,14,19,23,29,16,14 -01-14,7,13,15,5,9,12,5,11,11,8,10,5,10,5,8,5,8,10,8,9,7,11,6,5,9,9,9,9,8,4,8,8,5,7,3,5,9,8,4,10,6,14,10,6,15,11,6,10,11,15,18,19,6 -15-44,90,106,104,107,114,113,108,116,112,110,114,108,109,77,111,112,101,101,68,102,106,88,120,105,98,110,81,82,113,111,116,78,101,104,110,76,103,105,111,115,114,79,104,92,104,82,93,111,101,94,131,95,61 -45-64,540,640,580,550,569,527,532,492,507,462,521,499,472,387,466,539,515,466,400,513,471,419,492,466,468,435,446,469,440,445,457,415,454,492,432,369,499,418,452,453,485,455,452,442,515,463,452,500,505,474,529,385,372 -65-74,803,1040,902,914,769,722,739,741,752,763,744,692,724,586,680,754,704,666,609,679,693,574,706,652,664,628,706,639,610,671,607,585,630,647,651,540,620,660,609,673,668,648,660,651,698,627,698,699,686,716,746,590,522 -75-84,1683,2199,2087,1934,1777,1604,1572,1596,1606,1590,1499,1459,1444,1278,1436,1602,1441,1354,1208,1433,1321,1161,1410,1306,1320,1243,1259,1165,1163,1174,1143,1227,1212,1221,1249,1091,1175,1233,1316,1225,1349,1317,1290,1257,1399,1305,1281,1249,1445,1366,1421,1191,1058 -85+,3477,4791,4342,3950,3577,3266,3099,3008,2982,3063,2957,2698,2694,2350,2536,2978,2683,2529,2189,2481,2420,1898,2518,2269,2230,2128,2231,2080,2112,1984,2028,2039,2186,2090,2122,1820,2227,2205,2283,2290,2391,2258,2310,2403,2421,2447,2357,2405,2484,2601,2667,2146,1803 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Deaths by Region of usual residence 6,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -North East,699,753,799,798,717,669,661,669,606,622,573,566,512,490,533,626,601,516,503,544,514,457,472,528,459,514,489,491,466,459,437,462,458,475,445,438,471,462,476,495,505,494,480,523,524,530,527,512,534,540,618,480,407 -North West,1718,2282,1968,1806,1669,1586,1608,1466,1466,1559,1462,1401,1392,1251,1384,1521,1405,1385,1166,1404,1367,1116,1337,1262,1248,1254,1293,1238,1127,1196,1195,1227,1250,1223,1262,1044,1262,1175,1267,1260,1283,1291,1276,1299,1409,1376,1317,1322,1425,1400,1526,1167,1074 -Yorkshire and The Humber,1261,1607,1442,1386,1220,1151,1128,1068,1113,1106,1040,982,1032,841,1023,1103,1009,950,895,1038,989,866,1024,953,896,916,868,851,855,846,846,953,888,915,896,772,931,852,922,908,915,895,951,886,1014,960,937,994,1012,1050,1060,891,755 -East Midlands,1012,1328,1286,1206,1119,1071,1021,965,973,966,904,872,891,784,917,999,889,856,748,890,870,663,865,817,757,756,750,817,781,734,715,664,792,747,797,663,814,748,795,814,821,809,835,814,883,767,844,844,919,915,897,707,646 -West Midlands,1296,1713,1542,1400,1395,1229,1161,1152,1149,1188,1101,1083,1071,980,994,1294,1115,1053,949,1057,1018,844,1042,975,943,927,964,941,882,938,917,913,950,969,834,774,932,973,969,957,951,997,1053,967,1084,1027,1071,990,1087,1006,1101,826,799 -East,1221,1712,1657,1565,1450,1360,1284,1276,1286,1232,1172,1158,1098,971,1062,1289,1050,1112,910,1099,989,838,1150,997,1020,998,977,939,952,934,941,908,1014,943,981,856,922,942,981,984,1105,1030,1022,1030,1011,1018,1043,1066,1065,1018,1086,916,653 -London,1233,1549,1275,1220,1119,1097,1108,1102,1062,1063,1070,1092,1080,877,1002,1089,1000,961,827,949,906,793,961,880,892,887,901,842,881,833,780,858,879,901,855,803,867,901,917,918,976,912,921,969,955,993,966,915,998,985,990,870,766 -South East,1811,2525,2427,2196,1991,1843,1836,1713,1767,1709,1731,1531,1566,1352,1488,1810,1708,1530,1343,1552,1587,1216,1538,1483,1496,1396,1382,1370,1320,1382,1217,1388,1370,1364,1358,1188,1423,1448,1540,1419,1457,1402,1461,1506,1482,1544,1470,1536,1522,1536,1656,1347,1123 -South West,1272,1697,1498,1510,1398,1297,1283,1257,1290,1290,1219,1192,1164,920,1005,1212,1129,1110,901,1100,1122,816,1094,1022,983,916,1017,949,933,905,1000,895,974,1000,967,825,1065,1020,975,1086,1076,1039,1079,1003,1002,1081,1019,1037,1127,1102,1089,877,757 -Wales,725,1031,936,828,801,720,710,739,736,712,661,680,666,580,660,671,662,628,589,622,614,588,648,606,595,597,535,554,574,529,546,564,548,557,603,489,554,555,664,552,652,612,607,593,606,613,611,589,659,688,646,535,516 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Footnotes,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"1 This average is based on the actual number of death registrations recorded for each corresponding week over the previous five years. For week 53, the comparison weeks are week 52 for 2010 to 2014 as these weeks most closely reflect the attributes of week 53 in 2015. Moveable public holidays, when register offices are closed, affect the number of registrations made in the published weeks and in the corresponding weeks in previous years.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2 Counts of deaths by underlying cause exclude deaths at age under 28 days.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -3 Coding of deaths by underlying cause for the latest week is not yet complete.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"4 For deaths registered from January 2014, cause of death is coded to the ICD-10 classification using IRIS software. Further information about the implementation of the software is available on the ONS website.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"5 Does not include deaths where age is either missing or not yet fully coded. For this reason counts of 'Persons', 'Males' and 'Females' may not sum to 'Total Deaths, all ages'.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"6 Does not include deaths of those resident outside England and Wales or those records where the place of residence is either missing or not yet fully coded. For this reason counts for ""Deaths by Region of usual residence"" may not sum to ""Total deaths, all ages"".",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Source: Office for National Statistics,Released:,42430,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA diff --git a/working_files/Weekly/2015Mortality.xls b/working_files/Weekly/2015Mortality.xls deleted file mode 100644 index d42e9eb..0000000 Binary files a/working_files/Weekly/2015Mortality.xls and /dev/null differ diff --git a/working_files/Weekly/2016Mortality-Contents.csv b/working_files/Weekly/2016Mortality-Contents.csv deleted file mode 100644 index ed4aab1..0000000 --- a/working_files/Weekly/2016Mortality-Contents.csv +++ /dev/null @@ -1,11 +0,0 @@ -Contents,"Weekly provisional figures on deaths registered in -England and Wales" -NA,NA -NA,NA -Metadata,Information on weekly deaths -NA,NA -Terms and conditions,Terms and conditions -NA,NA -Weekly figures for 2016,"Deaths (numbers): by age, sex and region, 2016 registrations, England and Wales" -NA,NA -Related publications,Provides links to further mortality statistics based on death registrations diff --git a/working_files/Weekly/2016Mortality-Metadata.csv b/working_files/Weekly/2016Mortality-Metadata.csv deleted file mode 100644 index b14f968..0000000 --- a/working_files/Weekly/2016Mortality-Metadata.csv +++ /dev/null @@ -1,46 +0,0 @@ -Contents -Metadata -NA -Introduction -NA -"Weekly death figures provide provisional counts of the number of deaths registered in England and Wales for which data are available, and the number of deaths for which the underlying cause was coded to respiratory diseases as defined in the International Statistical Classification of Diseases and Related Health Problems Tenth Revision (ICD-10)." -NA -"These figures are also presented by age group, sex and by area of usual residence." -NA -Notes and definitions -NA -Deaths occurring in England and Wales are registered on the General Register Office's Registration Online system (RON). -NA -Daily extracts of death registration records from RON are processed on our database systems. -NA -Provisional data on deaths registered in each week (ending on a Friday) are compiled at the end of the following week. -NA -Bank Holidays could affect the number of registrations made within those weeks. -NA -The respiratory diseases counts are updated with each weekly publication as the coding of the underlying cause is not always complete at the time of production. -NA -"In January 2014, ONS changed the software used to code cause of death. Further information about the implementation of the software can be found on our website." -NA -"Where there are the same values in categories in consecutive weeks, the counts have been checked and are made up of unique death registrations." -NA -Symbols -NA -In our mortality outputs published symbols used are: -: denotes not available -Further information on the use of symbols is available on the Government Statistical Service (GSS) website. -NA -The ONS policy on protecting confidentiality in birth and death statistics is available on our website. -NA -Further information and enquiries -NA -Special extracts and tabulations of mortality data for England and Wales are available to order for a charge (subject to legal -"frameworks, disclosure control, resources and the ONS charging policy, where appropriate). Enquiries should be made to" -Vital Statistics Outputs Branch (vsob@ons.gsi.gov.uk or telephone: +44 (0)1329 444110). -User requested data will be published onto our website. -NA -"Access to microdata and disclosive data, that is, data which have the potential to identify an individual record, requires the approval of the ONS Microdata Release Procedure (MRP) before the data can be provided." -NA -Feedback -"We welcome feedback from users, please contact Vital Statistics Outputs Branch" -email: vsob@ons.gsi.gov.uk -telephone: +44 (0)1329 444110 diff --git a/working_files/Weekly/2016Mortality-Related publications.csv b/working_files/Weekly/2016Mortality-Related publications.csv deleted file mode 100644 index afb8920..0000000 --- a/working_files/Weekly/2016Mortality-Related publications.csv +++ /dev/null @@ -1,30 +0,0 @@ -Contents -Related publications -NA -User guide to mortality statistics -Supporting information for these tables can be found in the User guide to mortality statistics -NA -Quality and Methodology Information -"A Quality and Methodology Information document contains important information on: -• the strengths and limitations of the data -• the quality of the output: including the accuracy of the data, how it compares with related data -• uses and users -• how the output was created -" -NA -Further mortality statistics based on death registrations are available on the ONS website: -NA -"Death summary tables, England and Wales" -The summary tables provide key death registration statistics for the reference year. -NA -Deaths registered in England and Wales (Series DR) -Series DR (Mortality Statistics: Deaths Registered in England and Wales) provides detailed death registration statistics for the reference year. This includes numbers of deaths by detailed underlying cause by age-sex group defined by the different chapters of the Tenth Revision of the International Statistical Classification of Diseases and Related Health Problems (ICD-10). -NA -"Monthly figures on deaths registered by area of usual residence, England and Wales" -"To meet user needs, very timely but provisional counts of monthly death registrations in England and Wales are published by area of usual residence. Figures remain provisional until final annual data are released." -NA -"Vital statistics: Population and health reference tables, UK and constituent countries" -"These tables provide annual data for a selection of key statistics under the following themes: population, demography and health. Figures for the latest years may be provisional, these will be updated to final figures when data are available." -NA -Mortality Statistics: Deaths registered in England and Wales by area of usual residence -Presents data on death registrations in the UK by area of usual residence. The release contains a summary table providing key mortality measures (numbers and rates including age standardised mortality rates) for the UK and its constituent countries and a table providing numbers of deaths in England and Wales by age and sex. diff --git a/working_files/Weekly/2016Mortality-Terms and conditions.csv b/working_files/Weekly/2016Mortality-Terms and conditions.csv deleted file mode 100644 index 2d366aa..0000000 --- a/working_files/Weekly/2016Mortality-Terms and conditions.csv +++ /dev/null @@ -1,33 +0,0 @@ -Contents -Terms and conditions -NA -A National Statistics publication -NA -National Statistics are produced to high professional standards set out in the Code of Practice for Official Statistics. They are produced free from any political interference. -NA -"The UK Statistics Authority has designated these statistics as National Statistics, in accordance with the Statistics and Registration Service Act 2007 and signifying compliance with the Code of Practice for Official Statistics." -Designation can be broadly interpreted to mean that the statistics: -• meet identified user needs -• are well explained and readily accessible -• are produced according to sound methods -• are managed impartially and objectively in the public interest -NA -Once statistics have been designated as National Statistics it is a statutory requirement that the Code of Practice shall continue to be observed. -NA -About us -NA -"We are the executive office of the UK Statistics Authority, a non-ministerial department which reports directly to Parliament and the UK government’s single largest statistical producer. We compile information about the UK’s society and economy, and provide the evidence-base for policy and decision-making, the allocation of resources, and public accountability." -NA -Copyright and reproduction -NA -© Crown copyright 2017 -"You may re-use this publication (not including logos) free of charge in any format or medium, under the terms of the Open Government Licence." -Users should include a source accreditation to ONS - Source: Office for National Statistics licensed under the Open Government Licence. -NA -Visit the Open Government Licence -"or write to the Information Policy Team, The National Archives, Kew, Richmond, Surrey, TW9 4DU;" -or email: psi@nationalarchives.gsi.gov.uk -NA -Where we have identified any third party copyright information you will need to obtain permission from the copyright holders concerned. -NA -This publication is also available on our website. diff --git a/working_files/Weekly/2016Mortality-Weekly figures 2016.csv b/working_files/Weekly/2016Mortality-Weekly figures 2016.csv deleted file mode 100644 index a7b6795..0000000 --- a/working_files/Weekly/2016Mortality-Weekly figures 2016.csv +++ /dev/null @@ -1,69 +0,0 @@ -Contents,...2,...3,...4,...5,...6,...7,...8,...9,...10,...11,...12,...13,...14,...15,...16,...17,...18,...19,...20,...21,...22,...23,...24,...25,...26,...27,...28,...29,...30,...31,...32,...33,...34,...35,...36,...37,...38,...39,...40,...41,...42,...43,...44,...45,...46,...47,...48,...49,...50,...51,...52,...53,...54 -Weekly provisional figures on deaths registered in England and Wales,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Week number,NA,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52 -Week ended,NA,42377,42384,42391,42398,42405,42412,42419,42426,42433,42440,42447,42454,42461,42468,42475,42482,42489,42496,42503,42510,42517,42524,42531,42538,42545,42552,42559,42566,42573,42580,42587,42594,42601,42608,42615,42622,42629,42636,42643,42650,42657,42664,42671,42678,42685,42692,42699,42706,42713,42720,42727,42734 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"Total deaths, all ages",NA,13045,11501,11473,11317,11052,11170,10590,11056,11285,11010,11022,9635,10286,11599,11417,10925,10413,9137,10637,9953,9739,7909,9873,9386,9365,9228,9138,9388,9350,9335,9182,9172,9070,9319,7923,9399,9124,8945,8994,9291,9719,9768,9724,10152,10470,10694,10603,10439,11223,10533,11493,8003 -Total deaths: average of corresponding,NA,11701.4,13016.4,11765.4,11289,10965.6,10704,10669.4,10657.6,10613,10544,10405,10209.4,9668,9592.4,10206.2,10104.8,9776.6,10127.8,9058.4,9699.2,9524,8417.2,9047.2,9388.4,8986,8852,8872.2,8706.8,8776.2,8712.2,8682.6,8651.4,8671.8,8783.4,8020,8813.2,8825.8,8839.4,9105.6,9133.2,9210,9225.6,9445.4,9459,9584.8,9751.4,9572,9615.4,10042,10317,11061.8,7925 -week over the previous 5 years1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,"Deaths by underlying cause2,3,4",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,"All respiratory diseases (ICD-10 J00-J99) -ICD-10 v 2013 (IRIS)",2046,1835,1775,1810,1748,1730,1700,1734,1774,1768,1709,1485,1688,1971,1809,1597,1396,1261,1447,1328,1248,982,1292,1225,1206,1106,1062,1101,1168,1190,1112,1065,1032,1093,917,1036,1027,1039,979,1060,1153,1238,1270,1276,1342,1374,1413,1371,1591,1522,1640,1312 -NA,Persons 5,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Under 1 year,49,64,50,47,60,60,52,58,39,54,55,55,49,53,63,65,43,55,49,61,63,35,58,49,57,46,49,54,55,39,56,57,42,48,43,48,56,58,53,57,72,50,58,52,54,57,49,58,57,72,56,41 -NA,01-14,17,24,18,14,22,21,22,20,21,22,22,18,15,15,18,24,22,23,19,21,19,19,21,22,15,13,18,15,18,15,19,15,17,16,14,23,15,15,15,21,14,21,16,21,15,26,26,15,28,22,16,7 -NA,15-44,299,326,345,324,314,331,305,267,318,273,295,247,264,306,311,319,327,348,308,328,326,214,268,255,295,303,287,279,282,312,276,277,276,241,228,283,265,264,297,275,272,276,271,281,278,355,284,345,310,281,339,178 -NA,45-64,1482,1363,1293,1322,1281,1356,1333,1294,1328,1340,1358,1148,1184,1327,1312,1292,1301,1075,1277,1149,1185,963,1181,1195,1161,1192,1176,1153,1115,1074,1171,1183,1078,1104,968,1161,1170,1132,1151,1115,1145,1158,1239,1186,1279,1225,1226,1191,1266,1219,1253,849 -NA,65-74,2179,1925,1831,1859,1779,1826,1720,1774,1864,1755,1781,1567,1698,1941,1927,1816,1694,1490,1768,1686,1681,1445,1613,1604,1549,1570,1552,1634,1586,1567,1542,1552,1610,1577,1415,1562,1583,1548,1549,1647,1633,1652,1567,1723,1709,1703,1716,1752,1808,1675,1927,1269 -NA,75-84,3727,3283,3327,3147,3181,3058,2982,3127,3180,3171,3070,2713,2992,3238,3166,3085,2927,2583,2994,2855,2697,2253,2875,2703,2659,2573,2567,2649,2638,2641,2588,2557,2624,2680,2233,2659,2628,2564,2506,2641,2746,2724,2800,2833,2954,2992,3062,2961,3176,2943,3170,2294 -NA,85+,5292,4512,4606,4599,4405,4502,4175,4516,4533,4390,4434,3878,4079,4719,4617,4324,4098,3559,4218,3853,3767,2980,3857,3556,3625,3530,3489,3603,3650,3683,3524,3520,3423,3652,3020,3661,3406,3364,3422,3531,3835,3887,3773,4056,4178,4332,4239,4116,4578,4316,4725,3364 -NA,Males 5,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Under 1 year,31,36,32,25,35,36,27,34,22,27,31,32,26,34,32,40,22,34,36,34,36,16,28,28,29,26,30,33,37,20,29,37,26,23,21,30,27,30,22,30,41,25,25,31,28,31,27,35,29,36,30,24 -NA,01-14,10,14,8,8,14,12,14,13,13,10,10,13,10,7,10,15,14,15,5,12,10,9,10,13,9,9,9,8,9,8,11,9,10,4,9,17,6,11,7,8,6,9,11,11,6,18,12,8,13,16,6,5 -NA,15-44,178,221,238,217,203,203,196,176,212,172,194,157,171,201,189,208,212,249,195,209,205,128,167,174,192,204,175,186,192,203,187,172,191,157,135,185,153,173,194,176,183,178,170,188,187,250,174,225,202,180,218,99 -NA,45-64,867,812,791,773,767,782,803,733,799,795,835,683,662,768,774,766,792,629,743,687,716,546,694,725,675,701,698,683,667,630,690,738,653,699,564,710,690,670,697,637,674,687,741,670,730,709,734,692,749,748,754,451 -NA,65-74,1246,1159,1079,1069,1040,1062,1015,995,1024,1030,1048,898,941,1109,1137,1039,1003,870,1057,960,957,827,923,931,909,897,917,964,936,924,923,902,946,899,825,944,900,910,925,992,961,965,908,1011,1021,1001,1013,984,1019,979,1057,738 -NA,75-84,1897,1709,1734,1643,1683,1639,1616,1650,1709,1713,1596,1437,1550,1738,1688,1613,1534,1410,1563,1532,1441,1188,1535,1463,1443,1369,1359,1395,1459,1433,1416,1364,1383,1480,1204,1398,1397,1404,1327,1385,1444,1485,1494,1451,1576,1566,1621,1557,1676,1500,1682,1229 -NA,85+,1982,1656,1750,1754,1655,1666,1577,1707,1745,1711,1705,1482,1583,1743,1789,1647,1548,1367,1673,1464,1417,1180,1466,1367,1454,1280,1334,1336,1414,1389,1302,1288,1324,1395,1196,1345,1338,1251,1350,1381,1508,1488,1472,1598,1565,1730,1616,1574,1738,1595,1796,1288 -NA,Females 5,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Under 1 year,18,28,18,22,25,24,25,24,17,27,24,23,23,19,31,25,21,21,13,27,27,19,30,21,28,20,19,21,18,19,27,20,16,25,22,18,29,28,31,27,31,25,33,21,26,26,22,23,28,36,26,17 -NA,01-14,7,10,10,6,8,9,8,7,8,12,12,5,5,8,8,9,8,8,14,9,9,10,11,9,6,4,9,7,9,7,8,6,7,12,5,6,9,4,8,13,8,12,5,10,9,8,14,7,15,6,10,2 -NA,15-44,121,105,107,107,111,128,109,91,106,101,101,90,93,105,122,111,115,99,113,119,121,86,101,81,103,99,112,93,90,109,89,105,85,84,93,98,112,91,103,99,89,98,101,93,91,105,110,120,108,101,121,79 -NA,45-64,615,551,502,549,514,574,530,561,529,545,523,465,522,559,538,526,509,446,534,462,469,417,487,470,486,491,478,470,448,444,481,445,425,405,404,451,480,462,454,478,471,471,498,516,549,516,492,499,517,471,499,398 -NA,65-74,933,766,752,790,739,764,705,779,840,725,733,669,757,832,790,777,691,620,711,726,724,618,690,673,640,673,635,670,650,643,619,650,664,678,590,618,683,638,624,655,672,687,659,712,688,702,703,768,789,696,870,531 -NA,75-84,1830,1574,1593,1504,1498,1419,1366,1477,1471,1458,1474,1276,1442,1500,1478,1472,1393,1173,1431,1323,1256,1065,1340,1240,1216,1204,1208,1254,1179,1208,1172,1193,1241,1200,1029,1261,1231,1160,1179,1256,1302,1239,1306,1382,1378,1426,1441,1404,1500,1443,1488,1065 -NA,85+,3310,2856,2856,2845,2750,2836,2598,2809,2788,2679,2729,2396,2496,2976,2828,2677,2550,2192,2545,2389,2350,1800,2391,2189,2171,2250,2155,2267,2236,2294,2222,2232,2099,2257,1824,2316,2068,2113,2072,2150,2327,2399,2301,2458,2613,2602,2623,2542,2840,2721,2929,2076 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Deaths by region of usual residence 6,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000001,North East,705,600,612,631,620,599,588,582,582,569,552,474,578,606,594,539,571,495,547,533,484,431,542,473,528,488,507,485,538,476,467,492,476,499,398,478,491,435,481,465,520,511,530,535,546,547,536,550,589,561,679,456 -E12000002,North West,1748,1532,1602,1516,1459,1466,1443,1497,1505,1525,1460,1331,1362,1514,1572,1470,1371,1280,1420,1327,1300,1138,1306,1252,1272,1157,1269,1242,1295,1223,1316,1244,1279,1250,1114,1312,1222,1230,1219,1331,1328,1322,1401,1351,1390,1513,1432,1491,1529,1444,1594,1087 -E12000003,Yorkshire and The Humber,1284,1148,1119,1131,1109,1066,1083,1115,1107,1097,1102,937,968,1128,1105,1008,1014,941,1055,927,936,814,1038,923,925,936,910,948,877,910,879,886,887,860,800,942,914,890,856,907,940,919,914,1041,1017,1025,1022,973,1193,1036,1097,794 -E12000004,East Midlands,1067,956,929,858,954,917,881,930,913,911,917,809,859,911,900,908,857,703,914,862,826,680,839,858,804,801,770,784,830,762,739,780,742,793,626,844,736,730,787,777,791,831,850,850,889,892,887,888,932,893,981,759 -E12000005,West Midlands,1396,1208,1209,1195,1197,1262,1088,1087,1144,1104,1136,891,942,1232,1183,1134,1065,929,1069,1013,995,776,1011,981,1015,954,956,943,914,923,983,941,951,1039,764,974,898,892,971,938,966,977,966,1013,1045,1117,1090,1076,1164,1098,1149,715 -E12000006,East,1401,1237,1253,1236,1160,1155,1057,1180,1240,1190,1143,923,1079,1190,1217,1189,1147,954,1190,1147,1103,790,1119,1037,966,971,950,1054,988,1013,1004,1031,1005,991,877,981,998,979,879,945,1069,1020,1034,1048,1127,1184,1131,1176,1212,1107,1207,774 -E12000007,London,1226,1048,1068,1065,1059,1040,999,1021,1093,1008,1058,900,1039,1111,1007,999,969,876,971,884,884,710,939,858,831,880,796,798,847,940,822,801,831,822,795,873,839,854,852,863,919,931,860,904,976,941,987,936,1029,933,1052,761 -E12000008,South East,1951,1771,1710,1730,1604,1718,1596,1707,1742,1694,1595,1542,1611,1828,1785,1683,1634,1365,1646,1534,1489,1242,1468,1410,1408,1497,1407,1463,1443,1414,1311,1346,1317,1419,1251,1384,1433,1399,1345,1456,1524,1542,1472,1630,1691,1605,1679,1578,1658,1634,1784,1236 -E12000009,South West,1424,1263,1219,1207,1169,1222,1171,1215,1218,1148,1292,1122,1104,1319,1282,1250,1128,994,1143,1092,1082,817,1004,993,1039,964,1031,1052,1023,1027,1052,974,983,1000,797,1033,988,941,987,1024,1056,1078,1043,1114,1139,1154,1154,1112,1201,1145,1223,846 -W92000004,Wales,809,711,720,717,690,700,657,696,721,734,738,668,712,742,738,714,629,569,652,611,624,500,584,578,558,549,524,599,560,610,580,641,574,619,470,552,576,563,592,562,587,624,624,644,626,681,661,643,693,663,691,558 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Footnotes,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"1 This average is based on the actual number of death registrations recorded for each corresponding week over the previous five years. Moveable public holidays, when register offices are closed, affect the number of registrations made in the published weeks and in the corresponding weeks in previous years.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2 Counts of deaths by underlying cause exclude deaths at age under 28 days.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -3 Coding of deaths by underlying cause for the latest week is not yet complete.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"4 For deaths registered from January 2014, cause of death is coded to the ICD-10 classification using IRIS software. Further information about the implementation of the software is available on the ONS website.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"5 Does not include deaths where age is either missing or not yet fully coded. For this reason counts of 'Persons', 'Males' and 'Females' may not sum to 'Total Deaths, all ages'.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"6 Does not include deaths of those resident outside England and Wales or those records where the place of residence is either missing or not yet fully coded. For this reason counts for ""Deaths by Region of usual residence"" may not sum to ""Total deaths, all ages"".",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Source: Office for National Statistics,NA,NA,Released:,42752,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA diff --git a/working_files/Weekly/2016Mortality.xls b/working_files/Weekly/2016Mortality.xls deleted file mode 100644 index 920556a..0000000 Binary files a/working_files/Weekly/2016Mortality.xls and /dev/null differ diff --git a/working_files/Weekly/2017Mortality-Contents.csv b/working_files/Weekly/2017Mortality-Contents.csv deleted file mode 100644 index 09bab6c..0000000 --- a/working_files/Weekly/2017Mortality-Contents.csv +++ /dev/null @@ -1,11 +0,0 @@ -Contents,"Weekly provisional figures on deaths registered in -England and Wales" -NA,NA -NA,NA -Information,Information on weekly deaths -NA,NA -Terms and conditions,Terms and conditions -NA,NA -Weekly figures for 2017,"Deaths (numbers): by age, sex and region, 2017 registrations, England and Wales" -NA,NA -Related publications,Provides links to further mortality statistics based on death registrations diff --git a/working_files/Weekly/2017Mortality-Information.csv b/working_files/Weekly/2017Mortality-Information.csv deleted file mode 100644 index d193f57..0000000 --- a/working_files/Weekly/2017Mortality-Information.csv +++ /dev/null @@ -1,46 +0,0 @@ -Contents -Information on weekly deaths -NA -Things you need to know -NA -"Weekly death figures provide provisional counts of the number of deaths registered in England and Wales for which data are available, and the number of deaths for which the underlying cause was coded to respiratory diseases as defined in the International Statistical Classification of Diseases and Related Health Problems Tenth Revision (ICD-10)." -NA -"These figures are also presented by age group, sex and by area of usual residence." -NA -Notes and definitions -NA -Deaths occurring in England and Wales are registered on the General Register Office's Registration Online system (RON). -NA -Daily extracts of death registration records from RON are processed on our database systems. -NA -Provisional data on deaths registered in each week (ending on a Friday) are compiled at the end of the following week. -NA -Bank Holidays could affect the number of registrations made within those weeks. -NA -The respiratory diseases counts are updated with each weekly publication as the coding of the underlying cause is not always complete at the time of production. -NA -"In January 2014, ONS changed the software used to code cause of death. Further information about the implementation of the software can be found on our website." -NA -"Where there are the same values in categories in consecutive weeks, the counts have been checked and are made up of unique death registrations." -NA -Symbols -NA -In our mortality outputs published symbols used are: -: denotes not available -Further information on the use of symbols is available on the Government Statistical Service (GSS) website. -NA -The ONS policy on protecting confidentiality in birth and death statistics is available on our website. -NA -Further information and enquiries -NA -Special extracts and tabulations of mortality data for England and Wales are available to order for a charge (subject to legal -"frameworks, disclosure control, resources and the ONS charging policy, where appropriate). Enquiries should be made to" -Vital Statistics Outputs Branch (vsob@ons.gsi.gov.uk or telephone: +44 (0)1329 444110). -User requested data will be published onto our website. -NA -"Access to microdata and disclosive data, that is, data which have the potential to identify an individual record, requires the approval of the ONS Microdata Release Procedure (MRP) before the data can be provided." -NA -Feedback -"We welcome feedback from users, please contact Vital Statistics Outputs Branch" -email: vsob@ons.gsi.gov.uk -telephone: +44 (0)1329 444110 diff --git a/working_files/Weekly/2017Mortality-Related publications.csv b/working_files/Weekly/2017Mortality-Related publications.csv deleted file mode 100644 index d569f7e..0000000 --- a/working_files/Weekly/2017Mortality-Related publications.csv +++ /dev/null @@ -1,33 +0,0 @@ -Contents -Related publications -NA -User guide to mortality statistics -Supporting information for these tables can be found in the User guide to mortality statistics -NA -Quality and Methodology Information -"A Quality and Methodology Information document contains important information on: -• the strengths and limitations of the data -• the quality of the output: including the accuracy of the data, how it compares with related data -• uses and users -• how the output was created -" -NA -Further mortality statistics based on death registrations are available on the ONS website: -NA -"Death summary tables, England and Wales" -The summary tables provide key death registration statistics for the reference year. -NA -Deaths registered in England and Wales (Series DR) -Series DR (Mortality Statistics: Deaths Registered in England and Wales) provides detailed death registration statistics for the reference year. This includes numbers of deaths by detailed underlying cause by age-sex group defined by the different chapters of the Tenth Revision of the International Statistical Classification of Diseases and Related Health Problems (ICD-10). -NA -"Monthly figures on deaths registered by area of usual residence, England and Wales" -"To meet user needs, very timely but provisional counts of monthly death registrations in England and Wales are published by area of usual residence. Figures remain provisional until final annual data are released." -NA -"Vital statistics: Population and health reference tables, UK and constituent countries" -"These tables provide annual data for a selection of key statistics under the following themes: population, demography and health. Figures for the latest years may be provisional, these will be updated to final figures when data are available." -NA -Mortality Statistics: Deaths registered in England and Wales by area of usual residence -Presents data on death registrations in the UK by area of usual residence. The release contains a summary table providing key mortality measures (numbers and rates including age standardised mortality rates) for the UK and its constituent countries and a table providing numbers of deaths in England and Wales by age and sex. -NA -Explorable datasets for mortality statistics in England and Wales -"This dataset provides mortality statistics in England and Wales, broken down by calendar year of registration, age, sex, underlying cause of death and other selected information collected at the time of registration." diff --git a/working_files/Weekly/2017Mortality-Terms and conditions.csv b/working_files/Weekly/2017Mortality-Terms and conditions.csv deleted file mode 100644 index 7954558..0000000 --- a/working_files/Weekly/2017Mortality-Terms and conditions.csv +++ /dev/null @@ -1,33 +0,0 @@ -Contents -Terms and conditions -NA -A National Statistics publication -NA -National Statistics are produced to high professional standards set out in the Code of Practice for Official Statistics. They are produced free from any political interference. -NA -"The UK Statistics Authority has designated these statistics as National Statistics, in accordance with the Statistics and Registration Service Act 2007 and signifying compliance with the Code of Practice for Official Statistics." -Designation can be broadly interpreted to mean that the statistics: -• meet identified user needs -• are well explained and readily accessible -• are produced according to sound methods -• are managed impartially and objectively in the public interest -NA -Once statistics have been designated as National Statistics it is a statutory requirement that the Code of Practice shall continue to be observed. -NA -About us -NA -"We are the executive office of the UK Statistics Authority, a non-ministerial department which reports directly to Parliament and the UK government’s single largest statistical producer. We compile information about the UK’s society and economy, and provide the evidence-base for policy and decision-making, the allocation of resources, and public accountability." -NA -Copyright and reproduction -NA -© Crown copyright 2018 -"You may re-use this publication (not including logos) free of charge in any format or medium, under the terms of the Open Government Licence." -Users should include a source accreditation to ONS - Source: Office for National Statistics licensed under the Open Government Licence. -NA -Visit the Open Government Licence -"or write to the Information Policy Team, The National Archives, Kew, Richmond, Surrey, TW9 4DU;" -or email: psi@nationalarchives.gsi.gov.uk -NA -Where we have identified any third party copyright information you will need to obtain permission from the copyright holders concerned. -NA -This publication is also available on our website. diff --git a/working_files/Weekly/2017Mortality-Weekly figures 2017.csv b/working_files/Weekly/2017Mortality-Weekly figures 2017.csv deleted file mode 100644 index c41e8e5..0000000 --- a/working_files/Weekly/2017Mortality-Weekly figures 2017.csv +++ /dev/null @@ -1,69 +0,0 @@ -Contents,...2,...3,...4,...5,...6,...7,...8,...9,...10,...11,...12,...13,...14,...15,...16,...17,...18,...19,...20,...21,...22,...23,...24,...25,...26,...27,...28,...29,...30,...31,...32,...33,...34,...35,...36,...37,...38,...39,...40,...41,...42,...43,...44,...45,...46,...47,...48,...49,...50,...51,...52,...53,...54 -Weekly provisional figures on deaths registered in England and Wales,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Week number,NA,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52 -Week ended,NA,42741,42748,42755,42762,42769,42776,42783,42790,42797,42804,42811,42818,42825,42832,42839,42846,42853,42860,42867,42874,42881,42888,42895,42902,42909,42916,42923,42930,42937,42944,42951,42958,42965,42972,42979,42986,42993,43000,43007,43014,43021,43028,43035,43042,43049,43056,43063,43070,43077,43084,43091,43098 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"Total deaths, all ages",NA,11991,13715,13610,12877,12485,12269,11644,11794,11248,11077,10697,10325,10027,9939,8493,9644,10908,9064,10693,10288,10040,8332,9766,9367,9627,9334,9263,9376,9113,8882,8941,9038,9299,9382,8149,9497,9454,9534,9689,9778,9940,10031,9739,9984,10346,10275,10621,10538,10781,11217,12517,8487 -Total deaths: average of corresponding,NA,11782,12692,11773,11441,11128,10935,10835,10983,10980,10816,10641,10193,9863,10001,10624,10625,10246,9984,9158,9902,9640,8417,9170,9473,9117,8956,8959,8893,8946,8889,8762,8772,8802,8953,8062,8940,8929,8923,9120,9248,9411,9452,9563,9562,9871,10030,9861,9858,10322,10353,11130,7831 -week over the previous 5 years1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,"Deaths by underlying cause2,3,4",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,"All respiratory diseases (ICD-10 J00-J99) -ICD-10 v 2013 (IRIS)",2321,2690,2625,2373,2147,2093,1932,1872,1766,1660,1561,1436,1324,1378,1143,1311,1435,1154,1423,1325,1286,1076,1229,1062,1215,1170,1012,1141,959,1004,1009,937,1081,1121,940,1058,1022,1088,1153,1208,1219,1199,1144,1244,1314,1362,1319,1436,1497,1603,1905,1431 -NA,Persons 5,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Under 1 year,58,56,54,52,55,57,49,47,53,54,59,55,65,59,38,68,70,44,41,38,71,49,57,60,65,54,60,56,64,37,47,55,50,51,45,53,48,49,45,66,48,62,54,40,47,48,50,56,58,39,52,23 -NA,01-14,18,18,19,16,14,17,18,20,22,17,7,13,20,21,20,19,20,18,23,18,21,12,27,20,17,13,23,23,19,15,12,17,20,11,18,17,18,21,27,20,11,13,25,18,20,9,20,21,20,19,20,18 -NA,15-44,215,287,301,286,308,293,295,286,254,316,274,268,307,277,235,280,273,268,323,291,307,223,308,259,300,275,293,270,331,280,269,257,293,286,211,273,277,294,243,284,245,293,269,288,322,308,310,295,268,267,307,172 -NA,45-64,1232,1372,1374,1273,1239,1342,1316,1298,1252,1240,1260,1256,1202,1181,1003,1130,1315,1035,1275,1320,1187,995,1227,1188,1175,1121,1202,1144,1210,1184,1131,1141,1146,1095,997,1190,1207,1157,1160,1171,1185,1165,1166,1243,1251,1242,1308,1216,1224,1282,1397,895 -NA,65-74,1880,2149,2132,1946,1930,1940,1811,1816,1823,1756,1722,1739,1656,1705,1468,1585,1822,1529,1813,1794,1722,1475,1632,1663,1570,1656,1622,1660,1541,1539,1510,1580,1568,1549,1448,1613,1641,1614,1686,1677,1678,1731,1658,1659,1734,1682,1728,1737,1761,1776,1995,1275 -NA,75-84,3450,3886,3701,3652,3509,3483,3242,3214,3142,3086,3015,2940,2838,2748,2397,2834,3132,2557,3019,2854,2744,2361,2785,2554,2715,2676,2584,2694,2531,2439,2542,2620,2601,2667,2279,2644,2628,2623,2698,2677,2846,2836,2765,2875,2889,2901,2962,2945,3027,3176,3523,2444 -NA,85+,5136,5947,6029,5652,5430,5129,4913,5112,4699,4608,4360,4054,3939,3947,3330,3721,4276,3613,4196,3973,3983,3217,3727,3619,3785,3536,3477,3528,3415,3388,3427,3368,3617,3723,3148,3703,3634,3776,3830,3881,3926,3929,3802,3860,4081,4084,4234,4266,4423,4658,5220,3654 -NA,Males 5,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Under 1 year,32,33,28,28,27,29,33,26,32,29,38,27,32,35,20,39,41,25,22,20,40,29,37,30,36,36,33,30,31,20,27,26,27,29,26,34,23,29,21,38,27,30,34,30,26,26,24,33,38,23,25,15 -NA,01-14,9,10,10,7,8,9,10,8,14,5,4,7,12,8,8,13,10,11,11,10,10,9,20,12,12,7,15,11,12,10,6,8,11,9,6,11,12,13,16,10,5,7,14,14,14,8,11,10,13,10,10,12 -NA,15-44,143,199,183,189,209,196,176,173,153,211,171,174,196,186,145,172,167,167,192,192,192,141,203,172,194,166,182,158,224,170,170,179,196,182,126,197,189,196,161,192,149,191,168,181,212,208,220,200,168,173,188,97 -NA,45-64,718,819,837,763,751,825,794,754,733,748,744,762,705,701,634,658,784,648,752,787,737,604,746,726,698,672,731,690,727,704,700,685,678,665,611,690,707,694,669,672,706,717,712,737,736,723,763,735,760,753,849,529 -NA,65-74,1070,1237,1202,1164,1149,1136,1071,1031,1039,1045,996,1000,969,1005,849,943,1104,892,1088,1061,1022,864,950,949,905,982,984,982,938,931,887,946,927,894,845,968,949,944,952,964,965,1022,975,977,1057,963,1016,991,1029,1048,1114,665 -NA,75-84,1803,2015,1902,1893,1854,1754,1719,1680,1646,1636,1573,1612,1519,1491,1255,1529,1687,1345,1631,1506,1448,1260,1486,1372,1490,1405,1397,1446,1331,1289,1356,1393,1381,1439,1222,1432,1432,1426,1438,1403,1534,1504,1452,1563,1583,1557,1596,1585,1619,1690,1796,1289 -NA,85+,1907,2230,2282,2074,2059,1887,1884,1923,1768,1760,1672,1512,1455,1565,1250,1423,1655,1441,1657,1503,1553,1204,1477,1400,1465,1314,1391,1398,1358,1304,1304,1326,1414,1452,1221,1451,1452,1488,1532,1568,1519,1545,1494,1454,1608,1616,1624,1633,1736,1791,2004,1410 -NA,Females 5,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Under 1 year,26,23,26,24,28,28,16,21,21,25,21,28,33,24,18,29,29,19,19,18,31,20,20,30,29,18,27,26,33,17,20,29,23,22,19,19,25,20,24,28,21,32,20,10,21,22,26,23,20,16,27,8 -NA,01-14,9,8,9,9,6,8,8,12,8,12,3,6,8,13,12,6,10,7,12,8,11,3,7,8,5,6,8,12,7,5,6,9,9,2,12,6,6,8,11,10,6,6,11,4,6,1,9,11,7,9,10,6 -NA,15-44,72,88,118,97,99,97,119,113,101,105,103,94,111,91,90,108,106,101,131,99,115,82,105,87,106,109,111,112,107,110,99,78,97,104,85,76,88,98,82,92,96,102,101,107,110,100,90,95,100,94,119,75 -NA,45-64,514,553,537,510,488,517,522,544,519,492,516,494,497,480,369,472,531,387,523,533,450,391,481,462,477,449,471,454,483,480,431,456,468,430,386,500,500,463,491,499,479,448,454,506,515,519,545,481,464,529,548,366 -NA,65-74,810,912,930,782,781,804,740,785,784,711,726,739,687,700,619,642,718,637,725,733,700,611,682,714,665,674,638,678,603,608,623,634,641,655,603,645,692,670,734,713,713,709,683,682,677,719,712,746,732,728,881,610 -NA,75-84,1647,1871,1799,1759,1655,1729,1523,1534,1496,1450,1442,1328,1319,1257,1142,1305,1445,1212,1388,1348,1296,1101,1299,1182,1225,1271,1187,1248,1200,1150,1186,1227,1220,1228,1057,1212,1196,1197,1260,1274,1312,1332,1313,1312,1306,1344,1366,1360,1408,1486,1727,1155 -NA,85+,3229,3717,3747,3578,3371,3242,3029,3189,2931,2848,2688,2542,2484,2382,2080,2298,2621,2172,2539,2470,2430,2013,2250,2219,2320,2222,2086,2130,2057,2084,2123,2042,2203,2271,1927,2252,2182,2288,2298,2313,2407,2384,2308,2406,2473,2468,2610,2633,2687,2867,3216,2244 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Deaths by region of usual residence 6,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000001,North East,602,738,676,627,631,635,610,636,606,570,581,535,509,523,410,517,583,479,551,553,519,408,514,499,509,451,495,502,514,456,507,479,464,482,434,512,539,504,507,501,513,550,509,536,510,502,550,562,612,595,719,500 -E12000002,North West,1665,1840,1786,1666,1625,1566,1528,1519,1488,1464,1450,1364,1313,1373,1217,1362,1495,1279,1368,1329,1349,1208,1311,1272,1328,1174,1278,1225,1196,1174,1192,1171,1260,1299,1117,1307,1285,1221,1305,1289,1340,1359,1375,1356,1365,1381,1419,1453,1538,1509,1709,1194 -E12000003,Yorkshire and The Humber,1208,1351,1383,1242,1243,1224,1186,1159,1123,1110,1121,1065,1045,929,795,1010,1053,872,1053,1030,936,818,950,918,901,914,904,953,856,881,891,882,849,848,836,921,877,919,957,946,1011,1019,903,1006,1042,1027,1089,1045,1013,1048,1181,840 -E12000004,East Midlands,1016,1170,1190,1116,1045,1036,964,954,963,1038,963,947,870,835,708,812,882,803,988,817,802,726,841,819,841,804,802,862,809,738,784,772,747,783,667,808,758,814,782,818,827,806,743,850,931,898,862,878,970,971,1039,685 -E12000005,West Midlands,1243,1439,1414,1362,1293,1234,1243,1216,1184,1163,1140,1034,1024,1048,868,978,1125,902,1059,1079,1088,849,1060,1016,991,996,985,973,947,941,911,943,936,966,780,1017,1001,978,990,1003,1001,997,1058,1014,1117,1096,1080,1065,1066,1128,1318,844 -E12000006,East,1187,1450,1484,1488,1384,1411,1253,1327,1328,1230,1150,1134,1109,1056,918,996,1137,956,1153,1124,1118,813,1016,990,991,1028,1010,1005,970,949,955,1005,1018,1002,853,1066,990,1096,1071,1057,1085,1056,1037,1129,1132,1091,1148,1168,1139,1226,1322,878 -E12000007,London,1173,1296,1276,1198,1210,1161,1095,1114,930,969,946,930,888,905,801,896,1053,804,970,914,953,787,876,829,902,903,820,843,867,783,792,858,929,907,766,866,871,900,882,923,928,934,931,897,931,949,1038,972,1008,1042,1153,814 -E12000008,South East,1899,2161,2195,1999,1920,1916,1847,1834,1673,1738,1593,1557,1520,1522,1316,1409,1678,1356,1685,1639,1526,1217,1527,1380,1473,1456,1395,1393,1389,1381,1345,1346,1481,1502,1205,1445,1493,1422,1468,1521,1497,1541,1539,1473,1572,1539,1623,1608,1649,1765,1961,1305 -E12000009,South West,1228,1419,1346,1278,1359,1339,1217,1312,1221,1144,1083,1107,1064,1075,863,984,1159,997,1155,1161,1118,897,1066,1015,1058,1038,996,1031,979,963,946,982,998,1001,908,993,1006,1074,1109,1063,1068,1098,1020,1105,1117,1103,1151,1123,1140,1204,1332,863 -W92000004,Wales,744,825,835,881,749,723,690,701,715,634,653,635,658,642,577,654,727,600,687,615,602,586,584,599,608,546,556,564,551,586,590,572,592,570,555,542,609,585,593,631,640,650,608,595,598,666,639,636,630,708,762,541 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Footnotes,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"1 This average is based on the actual number of death registrations recorded for each corresponding week over the previous five years. Moveable public holidays, when register offices are closed, affect the number of registrations made in the published weeks and in the corresponding weeks in previous years.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2 Counts of deaths by underlying cause exclude deaths at age under 28 days.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -3 Coding of deaths by underlying cause for the latest week is not yet complete.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"4 For deaths registered from January 2014, cause of death is coded to the ICD-10 classification using IRIS software. Further information about the implementation of the software is available on the ONS website.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"5 Does not include deaths where age is either missing or not yet fully coded. For this reason counts of 'Persons', 'Males' and 'Females' may not sum to 'Total Deaths, all ages'.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"6 Does not include deaths of those resident outside England and Wales or those records where the place of residence is either missing or not yet fully coded. For this reason counts for ""Deaths by Region of usual residence"" may not sum to ""Total deaths, all ages"".",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Source: Office for National Statistics,NA,NA,Released:,43124,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA diff --git a/working_files/Weekly/2017Mortality.xls b/working_files/Weekly/2017Mortality.xls deleted file mode 100644 index 7cfd938..0000000 Binary files a/working_files/Weekly/2017Mortality.xls and /dev/null differ diff --git a/working_files/Weekly/2018Mortality-Contents.csv b/working_files/Weekly/2018Mortality-Contents.csv deleted file mode 100644 index cca232d..0000000 --- a/working_files/Weekly/2018Mortality-Contents.csv +++ /dev/null @@ -1,11 +0,0 @@ -Contents,"Weekly provisional figures on deaths registered in -England and Wales" -NA,NA -NA,NA -Information,Information on weekly deaths -NA,NA -Terms and conditions,Terms and conditions -NA,NA -Weekly figures for 2018,"Deaths (numbers): by age, sex and region, 2018 registrations, England and Wales" -NA,NA -Related publications,Provides links to further mortality statistics based on death registrations diff --git a/working_files/Weekly/2018Mortality-Information.csv b/working_files/Weekly/2018Mortality-Information.csv deleted file mode 100644 index 0a2d294..0000000 --- a/working_files/Weekly/2018Mortality-Information.csv +++ /dev/null @@ -1,48 +0,0 @@ -Contents -Information on weekly deaths -NA -Things you need to know -NA -"Weekly death figures provide provisional counts of the number of deaths registered in England and Wales for which data are available, and the number of deaths for which the underlying cause was coded to respiratory diseases as defined in the International Statistical Classification of Diseases and Related Health Problems Tenth Revision (ICD-10)." -NA -"These figures are also presented by age group, sex and by area of usual residence." -NA -Notes and definitions -NA -Deaths occurring in England and Wales are registered on the General Register Office's Registration Online system (RON). -NA -Daily extracts of death registration records from RON are processed on our database systems. -NA -Provisional data on deaths registered in each week (ending on a Friday) are compiled at the end of the following week. -NA -Bank Holidays could affect the number of registrations made within those weeks. -NA -The respiratory diseases counts are updated with each weekly publication as the coding of the underlying cause is not always complete at the time of production. -NA -"In January 2014, ONS changed the software used to code cause of death. Further information about the implementation of the software can be found on our website." -NA -"Where there are the same values in categories in consecutive weeks, the counts have been checked and are made up of unique death registrations." -NA -Figures for the latest week are based on boundaries as of November 2018. -NA -Symbols -NA -In our mortality outputs published symbols used are: -: denotes not available -Further information on the use of symbols is available. -NA -The ONS policy on protecting confidentiality in birth and death statistics is available on our website. -NA -Further information and enquiries -NA -Special extracts and tabulations of mortality data for England and Wales are available to order for a charge (subject to legal -"frameworks, disclosure control, resources and the ONS charging policy, where appropriate). Enquiries should be made to" -Vital Statistics Outputs Branch (vsob@ons.gov.uk or telephone: +44 (0)1329 444110). -User requested data will be published onto our website. -NA -"Access to microdata and disclosive data, that is, data which have the potential to identify an individual record, requires the approval of the ONS Microdata Release Procedure (MRP) before the data can be provided." -NA -Feedback -"We welcome feedback from users, please contact Vital Statistics Outputs Branch" -email: vsob@ons.gov.uk -telephone: +44 (0)1329 444110 diff --git a/working_files/Weekly/2018Mortality-Related publications.csv b/working_files/Weekly/2018Mortality-Related publications.csv deleted file mode 100644 index 654a770..0000000 --- a/working_files/Weekly/2018Mortality-Related publications.csv +++ /dev/null @@ -1,33 +0,0 @@ -Contents -Related publications -NA -User guide to mortality statistics -Supporting information for these tables can be found in the User guide to mortality statistics -NA -Quality and Methodology Information -"A Quality and Methodology Information document contains important information on: -• the strengths and limitations of the data -• the quality of the output: including the accuracy of the data, how it compares with related data -• uses and users -• how the output was created -" -NA -Further mortality statistics based on death registrations are available on the ONS website: -NA -Deaths registered in England and Wales -The summary tables provide key death registration statistics for the reference year. -NA -Deaths registered in England and Wales (Series DR) -Series DR (Mortality Statistics: Deaths Registered in England and Wales) provides detailed death registration statistics for the reference year. This includes numbers of deaths by detailed underlying cause by age-sex group defined by the different chapters of the Tenth Revision of the International Statistical Classification of Diseases and Related Health Problems (ICD-10). -NA -Deaths registered monthly in England and Wales -"To meet user needs, very timely but provisional counts of monthly death registrations in England and Wales are published by area of usual residence. Figures remain provisional until final annual data are released." -NA -"Vital statistics in the UK: births, deaths and marriages" -"These tables provide annual data for a selection of key statistics under the following themes: population, demography and health. Figures for the latest years may be provisional, these will be updated to final figures when data are available." -NA -"Deaths registered by area of usual residence, UK" -Presents data on death registrations in the UK by area of usual residence. The release contains a summary table providing key mortality measures (numbers and rates including age standardised mortality rates) for the UK and its constituent countries and a table providing numbers of deaths in England and Wales by age and sex. -NA -Explorable datasets for mortality statistics in England and Wales -"This dataset provides mortality statistics in England and Wales, broken down by calendar year of registration, age, sex, underlying cause of death and other selected information collected at the time of registration." diff --git a/working_files/Weekly/2018Mortality-Terms and conditions.csv b/working_files/Weekly/2018Mortality-Terms and conditions.csv deleted file mode 100644 index 9a44de5..0000000 --- a/working_files/Weekly/2018Mortality-Terms and conditions.csv +++ /dev/null @@ -1,33 +0,0 @@ -Contents -Terms and conditions -NA -A National Statistics publication -NA -National Statistics are produced to high professional standards set out in the Code of Practice for Official Statistics. They are produced free from any political interference. -NA -"The UK Statistics Authority has designated these statistics as National Statistics, in accordance with the Statistics and Registration Service Act 2007 and signifying compliance with the Code of Practice for Official Statistics." -Designation can be broadly interpreted to mean that the statistics: -• meet identified user needs -• are well explained and readily accessible -• are produced according to sound methods -• are managed impartially and objectively in the public interest -NA -Once statistics have been designated as National Statistics it is a statutory requirement that the Code of Practice shall continue to be observed. -NA -About us -NA -"We are the executive office of the UK Statistics Authority, a non-ministerial department which reports directly to Parliament and the UK government’s single largest statistical producer. We compile information about the UK’s society and economy, and provide the evidence-base for policy and decision-making, the allocation of resources, and public accountability." -NA -Copyright and reproduction -NA -© Crown copyright 2018 -"You may re-use this publication (not including logos) free of charge in any format or medium, under the terms of the Open Government Licence." -Users should include a source accreditation to ONS - Source: Office for National Statistics licensed under the Open Government Licence. -NA -Visit the Open Government Licence -"or write to the Information Policy Team, The National Archives, Kew, Richmond, Surrey, TW9 4DU;" -or email: psi@nationalarchives.gov.uk -NA -Where we have identified any third party copyright information you will need to obtain permission from the copyright holders concerned. -NA -This publication is also available on our website. diff --git a/working_files/Weekly/2018Mortality-Weekly figures 2018.csv b/working_files/Weekly/2018Mortality-Weekly figures 2018.csv deleted file mode 100644 index 7869ab5..0000000 --- a/working_files/Weekly/2018Mortality-Weekly figures 2018.csv +++ /dev/null @@ -1,69 +0,0 @@ -Contents,...2,...3,...4,...5,...6,...7,...8,...9,...10,...11,...12,...13,...14,...15,...16,...17,...18,...19,...20,...21,...22,...23,...24,...25,...26,...27,...28,...29,...30,...31,...32,...33,...34,...35,...36,...37,...38,...39,...40,...41,...42,...43,...44,...45,...46,...47,...48,...49,...50,...51,...52,...53,...54 -Weekly provisional figures on deaths registered in England and Wales,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Week number,NA,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52 -Week ended,NA,43105,43112,43119,43126,43133,43140,43147,43154,43161,43168,43175,43182,43189,43196,43203,43210,43217,43224,43231,43238,43245,43252,43259,43266,43273,43280,43287,43294,43301,43308,43315,43322,43329,43336,43343,43350,43357,43364,43371,43378,43385,43392,43399,43406,43413,43420,43427,43434,43441,43448,43455,43462 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"Total deaths, all ages",NA,12723,15050,14256,13935,13285,12495,12246,12142,10854,12997,12788,11913,9941,10794,12301,11223,10306,10153,8624,10141,9636,8147,9950,9343,9256,9212,9258,9293,9127,9141,9161,9319,8830,8978,7865,9445,9191,9305,9150,9503,9649,9864,9603,9529,10151,10193,9957,10033,10287,10550,11116,7131 -Total deaths: average of corresponding,NA,12079,13167,12418,11954,11605,11333,11059,11125,11037,10935,10774,10289,9944,10286,10328,10395,10381,9807,9526,9978,9727,8163,9767,9313,9232,9052,9030,9018,9032,8890,8763,8818,8905,9033,8162,9069,9091,9063,9285,9388,9511,9602,9601,9692,10003,10104,10050,10087,10509,10519,11343,7909 -week over the previous 5 years1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,"Deaths by underlying cause2,3,4",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,"All respiratory diseases (ICD-10 J00-J99) -ICD-10 v 2013 (IRIS)",2361,3075,2829,2672,2479,2197,2081,2128,1900,2302,2271,1946,1657,1761,1971,1641,1426,1369,1055,1248,1179,1065,1270,1150,1103,1055,1086,1123,1107,1019,1005,1019,941,921,827,1098,999,1034,987,1050,1124,1141,1154,1090,1295,1268,1240,1224,1341,1386,1509,1053 -NA,Persons 5,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Under 1 year,52,73,59,50,41,45,48,26,45,47,47,46,43,46,36,54,57,51,48,52,60,46,46,60,55,43,50,48,45,59,62,59,64,44,51,45,55,69,50,40,47,43,65,46,44,47,62,58,45,51,41,22 -NA,01-14,18,17,22,25,14,23,17,13,11,27,17,15,20,22,25,21,12,21,21,24,13,18,19,17,21,22,23,21,15,13,18,18,11,22,11,20,18,18,10,17,20,18,24,24,12,29,22,20,15,13,23,11 -NA,15-44,208,302,286,298,339,293,318,294,254,287,329,278,261,260,337,301,340,308,247,300,294,250,298,286,308,306,286,304,304,291,286,328,253,250,233,323,275,292,270,287,328,301,309,289,308,292,312,317,326,295,333,166 -NA,45-64,1290,1561,1507,1459,1404,1347,1377,1378,1229,1362,1316,1349,1065,1229,1382,1386,1213,1363,1115,1330,1258,998,1195,1199,1161,1184,1150,1140,1166,1193,1155,1175,1130,1083,1017,1196,1180,1171,1083,1200,1212,1209,1200,1151,1157,1238,1223,1246,1218,1265,1306,792 -NA,65-74,1976,2321,2191,2157,1988,2032,1953,1896,1728,2019,1989,1917,1586,1764,2053,1880,1707,1725,1437,1760,1659,1431,1700,1607,1613,1652,1548,1600,1577,1566,1536,1608,1558,1601,1442,1621,1600,1623,1607,1627,1607,1654,1657,1569,1666,1716,1700,1658,1696,1814,1867,1205 -NA,75-84,3612,4155,3866,3824,3661,3376,3492,3398,3028,3691,3594,3342,2884,3013,3442,3109,2906,2907,2384,2791,2687,2330,2881,2670,2550,2508,2611,2633,2484,2628,2620,2563,2489,2560,2150,2638,2576,2601,2629,2696,2741,2769,2642,2700,2949,2819,2766,2829,2965,2962,3136,2013 -NA,85+,5565,6621,6325,6122,5838,5374,5041,5137,4559,5564,5496,4966,4082,4460,5026,4472,4071,3778,3372,3884,3665,3074,3811,3504,3548,3497,3590,3547,3536,3391,3484,3568,3325,3418,2961,3602,3487,3531,3501,3636,3694,3870,3706,3750,4015,4052,3872,3905,4022,4150,4410,2922 -NA,Males 5,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Under 1 year,32,42,33,26,24,26,24,18,25,26,25,35,21,28,19,29,32,29,26,29,33,27,32,33,27,23,26,25,28,36,33,30,38,30,30,27,29,42,29,16,23,26,34,27,24,24,35,32,24,26,24,10 -NA,01-14,11,5,12,18,8,13,11,7,6,16,7,5,7,13,14,10,6,14,12,16,8,14,9,7,13,15,15,15,8,10,12,11,7,8,8,9,9,11,6,7,14,14,15,15,7,15,8,5,9,9,15,7 -NA,15-44,118,186,185,219,216,190,196,206,168,195,219,182,179,167,220,191,227,201,163,205,170,171,193,182,203,193,181,204,187,197,190,237,161,165,151,194,179,179,184,173,229,195,202,192,195,196,197,205,220,190,222,103 -NA,45-64,748,918,888,889,809,816,836,840,745,806,798,810,674,718,812,830,731,815,648,791,731,581,723,698,696,726,697,677,703,727,685,725,669,659,575,709,722,709,652,709,699,760,702,677,687,734,700,733,701,747,810,450 -NA,65-74,1120,1347,1268,1273,1186,1183,1168,1067,998,1158,1157,1133,921,1029,1197,1106,980,1008,841,1017,994,845,968,949,994,936,892,957,925,922,863,960,918,901,815,985,922,945,929,965,987,965,953,937,971,986,982,953,991,1057,1112,694 -NA,75-84,1865,2120,2009,1978,1960,1786,1851,1731,1579,1945,1879,1732,1580,1605,1870,1678,1522,1539,1280,1509,1431,1259,1510,1479,1382,1346,1418,1421,1333,1417,1357,1439,1311,1381,1123,1361,1353,1373,1443,1461,1451,1493,1474,1448,1589,1519,1455,1504,1573,1576,1680,1051 -NA,85+,2080,2499,2390,2264,2204,2043,1999,1915,1751,2142,2075,1885,1505,1699,1974,1722,1566,1511,1343,1543,1509,1210,1524,1368,1447,1393,1443,1388,1455,1277,1388,1378,1339,1365,1177,1475,1387,1431,1397,1443,1437,1549,1466,1530,1549,1684,1568,1531,1532,1598,1708,1146 -NA,Females 5,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Under 1 year,20,31,26,24,17,19,24,8,20,21,22,11,22,18,17,25,25,22,22,23,27,19,14,27,28,20,24,23,17,23,29,29,26,14,21,18,26,27,21,24,24,17,31,19,20,23,27,26,21,25,17,12 -NA,01-14,7,12,10,7,6,10,6,6,5,11,10,10,13,9,11,11,6,7,9,8,5,4,10,10,8,7,8,6,7,3,6,7,4,14,3,11,9,7,4,10,6,4,9,9,5,14,14,15,6,4,8,4 -NA,15-44,90,116,101,79,123,103,122,88,86,92,110,96,82,93,117,110,113,107,84,95,124,79,105,104,105,113,105,100,117,94,96,91,92,85,82,129,96,113,86,114,99,106,107,97,113,96,115,112,106,105,111,63 -NA,45-64,542,643,619,570,595,531,541,538,484,556,518,539,391,511,570,556,482,548,467,539,527,417,472,501,465,458,453,463,463,466,470,450,461,424,442,487,458,462,431,491,513,449,498,474,470,504,523,513,517,518,496,342 -NA,65-74,856,974,923,884,802,849,785,829,730,861,832,784,665,735,856,774,727,717,596,743,665,586,732,658,619,716,656,643,652,644,673,648,640,700,627,636,678,678,678,662,620,689,704,632,695,730,718,705,705,757,755,511 -NA,75-84,1747,2035,1857,1846,1701,1590,1641,1667,1449,1746,1715,1610,1304,1408,1572,1431,1384,1368,1104,1282,1256,1071,1371,1191,1168,1162,1193,1212,1151,1211,1263,1124,1178,1179,1027,1277,1223,1228,1186,1235,1290,1276,1168,1252,1360,1300,1311,1325,1392,1386,1456,962 -NA,85+,3485,4122,3935,3858,3634,3331,3042,3222,2808,3422,3421,3081,2577,2761,3052,2750,2505,2267,2029,2341,2156,1864,2287,2136,2101,2104,2147,2159,2081,2114,2096,2190,1986,2053,1784,2127,2100,2100,2104,2193,2257,2321,2240,2220,2466,2368,2304,2374,2490,2552,2702,1776 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Deaths by region of usual residence 6,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000001,North East,640,837,783,779,740,663,612,671,551,677,614,576,498,534,631,559,516,534,510,504,501,458,548,454,475,484,477,470,471,477,486,448,446,477,437,534,465,475,483,514,486,527,526,511,520,490,511,505,539,561,625,459 -E12000002,North West,1747,2113,1828,1855,1728,1615,1665,1677,1485,1690,1690,1516,1335,1470,1613,1456,1391,1347,1116,1390,1278,1142,1309,1167,1217,1214,1280,1239,1229,1219,1228,1231,1171,1134,1058,1152,1231,1226,1262,1302,1291,1274,1215,1330,1403,1408,1357,1330,1377,1422,1439,1020 -E12000003,Yorkshire and The Humber,1300,1481,1387,1363,1285,1206,1230,1196,1125,1192,1203,1124,973,1105,1199,1037,987,922,886,888,913,769,985,947,944,882,895,901,942,907,817,913,880,913,779,956,865,912,904,948,963,968,956,964,981,969,1013,998,1006,1108,1148,688 -E12000004,East Midlands,1085,1266,1175,1165,1154,1109,1024,1034,907,1072,1116,1038,819,886,1068,986,904,892,740,943,828,716,884,777,764,822,788,758,730,762,830,793,742,780,630,804,814,776,766,781,832,815,880,810,813,899,848,838,830,873,930,651 -E12000005,West Midlands,1313,1468,1544,1433,1441,1335,1285,1251,1308,1390,1343,1263,1019,1054,1228,1170,969,1113,823,1105,983,859,1065,967,971,954,998,961,949,897,961,946,910,983,793,1005,956,947,965,1020,980,979,1079,890,1081,1047,1001,1076,1098,1034,1145,660 -E12000006,East,1404,1677,1562,1553,1468,1359,1307,1300,1088,1390,1358,1251,1074,1196,1425,1248,1209,1117,937,1125,1053,839,1157,991,985,1011,940,993,953,1008,1010,1028,991,993,877,996,999,990,957,990,1071,1045,993,1042,1094,1128,1071,1077,1106,1130,1124,695 -E12000007,London,1130,1342,1239,1264,1208,1041,1171,1105,1060,1177,1121,1095,910,1014,1133,1039,947,917,841,913,932,784,890,921,855,824,814,941,905,955,883,947,870,808,741,904,834,865,868,898,860,941,905,896,925,940,903,948,958,1007,1035,655 -E12000008,South East,1902,2371,2287,2184,2046,1867,1810,1757,1611,1919,1954,1853,1518,1578,1883,1743,1613,1570,1294,1511,1512,1187,1435,1442,1448,1408,1426,1403,1373,1374,1396,1453,1361,1392,1170,1464,1440,1503,1375,1387,1491,1570,1376,1465,1543,1538,1503,1523,1594,1573,1688,1062 -E12000009,South West,1393,1552,1535,1460,1382,1378,1283,1314,997,1560,1414,1283,1047,1142,1293,1212,1117,1082,929,1068,997,830,1057,1085,1019,983,991,1025,971,941,957,997,902,900,845,1000,986,986,965,1020,1043,1088,1004,988,1106,1077,1062,1040,1076,1106,1225,756 -W92000004,Wales,783,904,885,850,815,801,803,789,634,896,918,774,633,730,743,688,614,633,530,667,603,538,607,561,562,599,625,583,548,560,574,537,518,565,511,594,579,598,560,595,606,640,633,604,642,656,657,673,674,708,724,461 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Footnotes,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"1 This average is based on the actual number of death registrations recorded for each corresponding week over the previous five years. Moveable public holidays, when register offices are closed, affect the number of registrations made in the published weeks and in the corresponding weeks in previous years.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2 Counts of deaths by underlying cause exclude deaths at age under 28 days.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -3 Coding of deaths by underlying cause for the latest week is not yet complete.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"4 For deaths registered from January 2014, cause of death is coded to the ICD-10 classification using IRIS software. Further information about the implementation of the software is available on the ONS website.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"5 Does not include deaths where age is either missing or not yet fully coded. For this reason counts of 'Persons', 'Males' and 'Females' may not sum to 'Total Deaths, all ages'.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"6 Does not include deaths of those resident outside England and Wales or those records where the place of residence is either missing or not yet fully coded. For this reason counts for ""Deaths by Region of usual residence"" may not sum to ""Total deaths, all ages"".",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Source: Office for National Statistics,NA,NA,Released:,15 January 2019,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA diff --git a/working_files/Weekly/2018Mortality.xls b/working_files/Weekly/2018Mortality.xls deleted file mode 100644 index cbcecb6..0000000 Binary files a/working_files/Weekly/2018Mortality.xls and /dev/null differ diff --git a/working_files/Weekly/2019Mortality-Contents.csv b/working_files/Weekly/2019Mortality-Contents.csv deleted file mode 100644 index 735e939..0000000 --- a/working_files/Weekly/2019Mortality-Contents.csv +++ /dev/null @@ -1,11 +0,0 @@ -Contents,"Weekly provisional figures on deaths registered in -England and Wales" -NA,NA -NA,NA -Information,Information on weekly deaths -NA,NA -Terms and conditions,Terms and conditions -NA,NA -Weekly figures for 2019,"Deaths (numbers): by age, sex and region, 2019 registrations, England and Wales" -NA,NA -Related publications,Provides links to further mortality statistics based on death registrations diff --git a/working_files/Weekly/2019Mortality-Information.csv b/working_files/Weekly/2019Mortality-Information.csv deleted file mode 100644 index a688a55..0000000 --- a/working_files/Weekly/2019Mortality-Information.csv +++ /dev/null @@ -1,49 +0,0 @@ -Contents -Information on weekly deaths -NA -Things you need to know -NA -"Weekly death figures provide provisional counts of the number of deaths registered in England and Wales for which data are available, and the number of deaths for which the underlying cause was coded to respiratory diseases as defined in the International Statistical Classification of Diseases and Related Health Problems Tenth Revision (ICD-10)." -NA -"These figures are also presented by age group, sex and by area of usual residence." -NA -Notes and definitions -NA -Deaths occurring in England and Wales are registered on the General Register Office's Registration Online system (RON). -NA -Daily extracts of death registration records from RON are processed on our database systems. -NA -Provisional data on deaths registered in each week (ending on a Friday) are compiled at the end of the following week. -NA -Bank Holidays could affect the number of registrations made within those weeks. -NA -The respiratory diseases counts are updated with each weekly publication as the coding of the underlying cause is not always complete at the time of production. -NA -"In January 2014, ONS changed the software used to code cause of death. Further information about the implementation of the software can be found on our website." -NA -"Where there are the same values in categories in consecutive weeks, the counts have been checked and are made up of unique death registrations." -NA -Figures for the latest week are based on boundaries as of November 2019. -NA -Symbols -NA -In our mortality outputs published symbols used are: -: denotes not available -Further information on the use of symbols is available. -NA -The ONS policy on protecting confidentiality in birth and death statistics is available on our website. -NA -Further information and enquiries -NA -Special extracts and tabulations of mortality data for England and Wales are available to order for a charge (subject to legal -"frameworks, disclosure control, resources and the ONS charging policy, where appropriate). Enquiries should be made to" -Mortality Analysis Team (mortality@ons.gov.uk or telephone: +44 (0)1633 456935). -User requested data will be published onto our website. -NA -"Access to microdata and disclosive data, that is, data which have the potential to identify an individual record, requires the approval of the ONS Microdata Release Procedure (MRP) before the data can be provided." -NA -Feedback -NA -"We welcome feedback from users, please contact Mortality Analysis Team" -email: mortality@ons.gov.uk -telephone: +44 (0)1633 456935 diff --git a/working_files/Weekly/2019Mortality-Related publications.csv b/working_files/Weekly/2019Mortality-Related publications.csv deleted file mode 100644 index 654a770..0000000 --- a/working_files/Weekly/2019Mortality-Related publications.csv +++ /dev/null @@ -1,33 +0,0 @@ -Contents -Related publications -NA -User guide to mortality statistics -Supporting information for these tables can be found in the User guide to mortality statistics -NA -Quality and Methodology Information -"A Quality and Methodology Information document contains important information on: -• the strengths and limitations of the data -• the quality of the output: including the accuracy of the data, how it compares with related data -• uses and users -• how the output was created -" -NA -Further mortality statistics based on death registrations are available on the ONS website: -NA -Deaths registered in England and Wales -The summary tables provide key death registration statistics for the reference year. -NA -Deaths registered in England and Wales (Series DR) -Series DR (Mortality Statistics: Deaths Registered in England and Wales) provides detailed death registration statistics for the reference year. This includes numbers of deaths by detailed underlying cause by age-sex group defined by the different chapters of the Tenth Revision of the International Statistical Classification of Diseases and Related Health Problems (ICD-10). -NA -Deaths registered monthly in England and Wales -"To meet user needs, very timely but provisional counts of monthly death registrations in England and Wales are published by area of usual residence. Figures remain provisional until final annual data are released." -NA -"Vital statistics in the UK: births, deaths and marriages" -"These tables provide annual data for a selection of key statistics under the following themes: population, demography and health. Figures for the latest years may be provisional, these will be updated to final figures when data are available." -NA -"Deaths registered by area of usual residence, UK" -Presents data on death registrations in the UK by area of usual residence. The release contains a summary table providing key mortality measures (numbers and rates including age standardised mortality rates) for the UK and its constituent countries and a table providing numbers of deaths in England and Wales by age and sex. -NA -Explorable datasets for mortality statistics in England and Wales -"This dataset provides mortality statistics in England and Wales, broken down by calendar year of registration, age, sex, underlying cause of death and other selected information collected at the time of registration." diff --git a/working_files/Weekly/2019Mortality-Terms and conditions.csv b/working_files/Weekly/2019Mortality-Terms and conditions.csv deleted file mode 100644 index 4232928..0000000 --- a/working_files/Weekly/2019Mortality-Terms and conditions.csv +++ /dev/null @@ -1,33 +0,0 @@ -Contents -Terms and conditions -NA -A National Statistics publication -NA -National Statistics are produced to high professional standards set out in the Code of Practice for Official Statistics. They are produced free from any political interference. -NA -"The UK Statistics Authority has designated these statistics as National Statistics, in accordance with the Statistics and Registration Service Act 2007 and signifying compliance with the Code of Practice for Official Statistics." -Designation can be broadly interpreted to mean that the statistics: -• meet identified user needs -• are well explained and readily accessible -• are produced according to sound methods -• are managed impartially and objectively in the public interest -NA -Once statistics have been designated as National Statistics it is a statutory requirement that the Code of Practice shall continue to be observed. -NA -About us -NA -"We are the executive office of the UK Statistics Authority, a non-ministerial department which reports directly to Parliament and the UK government’s single largest statistical producer. We compile information about the UK’s society and economy, and provide the evidence-base for policy and decision-making, the allocation of resources, and public accountability." -NA -Copyright and reproduction -NA -© Crown copyright 2020 -"You may re-use this publication (not including logos) free of charge in any format or medium, under the terms of the Open Government Licence." -Users should include a source accreditation to ONS - Source: Office for National Statistics licensed under the Open Government Licence. -NA -Visit the Open Government Licence -"or write to the Information Policy Team, The National Archives, Kew, Richmond, Surrey, TW9 4DU;" -or email: psi@nationalarchives.gov.uk -NA -Where we have identified any third party copyright information you will need to obtain permission from the copyright holders concerned. -NA -This publication is also available on our website. diff --git a/working_files/Weekly/2019Mortality-Weekly figures 2019.csv b/working_files/Weekly/2019Mortality-Weekly figures 2019.csv deleted file mode 100644 index 1fe6c0e..0000000 --- a/working_files/Weekly/2019Mortality-Weekly figures 2019.csv +++ /dev/null @@ -1,69 +0,0 @@ -Contents,...2,...3,...4,...5,...6,...7,...8,...9,...10,...11,...12,...13,...14,...15,...16,...17,...18,...19,...20,...21,...22,...23,...24,...25,...26,...27,...28,...29,...30,...31,...32,...33,...34,...35,...36,...37,...38,...39,...40,...41,...42,...43,...44,...45,...46,...47,...48,...49,...50,...51,...52,...53,...54 -Weekly provisional figures on deaths registered in England and Wales,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Week number,NA,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52 -Week ended,NA,43469,43476,43483,43490,43497,43504,43511,43518,43525,43532,43539,43546,43553,43560,43567,43574,43581,43588,43595,43602,43609,43616,43623,43630,43637,43644,43651,43658,43665,43672,43679,43686,43693,43700,43707,43714,43721,43728,43735,43742,43749,43756,43763,43770,43777,43784,43791,43798,43805,43812,43819,43826 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"Total deaths, all ages",NA,10955,12609,11860,11740,11297,11660,11824,11295,11044,10898,10567,10402,9867,10126,10291,9025,10059,11207,9055,10272,10284,8260,10140,9445,9458,9511,9062,9179,9080,9112,9271,9122,9093,8994,8242,9695,9513,9440,9517,9799,9973,10156,10021,10164,10697,10650,10882,10958,10816,11188,11926,7533 -Total deaths: average of corresponding,NA,12273,13670,13056,12486,11998,11623,11301,11383,11051,11286,11095,10456,10076,10268,10362,10291,10317,9804,9488,10036,9747,8125,9860,9408,9302,9177,9123,9170,9100,9023,8963,9026,9025,9113,8197,9177,9260,9197,9283,9450,9651,9726,9674,9777,10142,10226,10124,10164,10585,10622,11499,8014 -week over the previous 5 years1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,"Deaths by underlying cause2,3,4",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,"All respiratory diseases (ICD-10 J00-J99) -ICD-10 v 2013 (IRIS)",1736,2214,1972,1942,1931,1918,1931,1890,1786,1657,1559,1486,1314,1412,1396,1262,1406,1581,1239,1355,1324,1105,1290,1134,1134,1143,1076,1081,1024,996,1116,1048,1033,981,854,1125,1028,1056,1045,1114,1209,1236,1252,1333,1363,1451,1423,1566,1505,1637,1839,1166 -NA,Persons 5,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Under 1 year,43,50,59,42,57,54,49,59,52,45,57,49,45,41,47,48,34,46,56,44,51,45,48,46,46,39,33,44,45,57,57,57,54,47,45,54,60,45,55,68,46,54,49,45,52,46,57,56,50,52,53,34 -NA,01-14,15,20,29,22,15,25,17,30,20,16,24,24,17,13,23,21,18,18,17,14,21,16,18,18,20,21,26,16,14,14,11,12,24,8,16,19,12,18,14,15,16,14,14,19,7,19,19,14,17,32,19,13 -NA,15-44,215,280,319,339,307,267,305,276,288,303,299,293,289,296,288,251,273,297,262,304,309,239,306,298,279,273,255,259,279,267,265,245,277,264,224,268,297,264,269,325,302,303,281,289,314,271,283,312,315,315,368,148 -NA,45-64,1199,1419,1373,1438,1367,1387,1372,1395,1264,1342,1311,1249,1222,1232,1265,1100,1207,1334,1094,1274,1262,991,1223,1149,1150,1214,1112,1140,1136,1117,1123,1095,1244,1127,1026,1199,1169,1174,1197,1189,1137,1154,1198,1196,1236,1254,1225,1237,1275,1313,1316,773 -NA,65-74,1766,2179,2004,1936,1852,1955,1911,1824,1826,1857,1718,1713,1643,1614,1712,1446,1730,1869,1513,1650,1765,1382,1741,1658,1625,1605,1561,1564,1500,1598,1597,1578,1573,1582,1419,1643,1617,1592,1547,1665,1595,1628,1663,1663,1676,1673,1743,1751,1689,1793,1903,1185 -NA,75-84,3078,3590,3414,3266,3126,3251,3392,3169,3117,3042,2933,2948,2794,2937,2907,2547,2811,3207,2579,2864,2946,2403,2846,2672,2711,2692,2650,2616,2610,2580,2664,2575,2530,2479,2319,2775,2654,2695,2760,2780,2869,2920,2799,2938,2998,3070,3163,3142,3078,3215,3299,2231 -NA,85+,4639,5071,4662,4697,4573,4721,4778,4542,4477,4293,4225,4126,3857,3993,4049,3612,3986,4436,3534,4122,3930,3184,3958,3604,3627,3667,3425,3540,3496,3479,3554,3560,3391,3487,3193,3737,3704,3652,3675,3757,4008,4083,4017,4014,4414,4317,4392,4446,4392,4468,4968,3149 -NA,Males 5,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Under 1 year,28,20,39,26,38,36,27,30,24,32,30,29,26,21,31,24,16,26,34,24,29,22,26,22,25,22,24,23,31,36,30,26,28,31,23,29,31,23,28,37,26,32,23,27,29,19,32,35,32,29,25,20 -NA,01-14,5,13,14,10,10,17,8,16,10,10,11,9,8,8,14,11,9,14,9,7,12,11,9,11,11,9,17,7,10,7,6,9,13,4,10,9,3,11,8,7,10,10,6,9,3,9,9,10,11,16,9,6 -NA,15-44,128,168,211,225,208,152,201,159,182,197,194,200,205,184,194,146,171,207,159,192,193,147,199,198,196,186,170,174,180,165,164,156,197,169,138,183,178,165,174,218,208,193,186,176,199,172,168,209,204,187,229,85 -NA,45-64,693,852,831,860,805,869,799,850,745,839,788,774,728,725,783,644,724,821,624,795,751,565,757,673,714,738,637,698,683,660,702,662,743,681,629,715,709,716,704,705,686,676,699,682,738,739,724,739,756,746,768,448 -NA,65-74,992,1265,1131,1154,1045,1100,1117,1088,1059,1112,1043,965,978,930,995,852,970,1089,868,977,1044,784,1015,963,963,969,910,900,863,951,921,938,927,942,846,955,946,918,922,950,966,937,963,980,991,980,1042,1008,985,1028,1095,666 -NA,75-84,1590,1857,1837,1766,1664,1718,1776,1696,1656,1664,1531,1596,1470,1589,1543,1420,1543,1709,1362,1528,1564,1247,1599,1464,1480,1509,1420,1394,1380,1374,1445,1410,1371,1357,1240,1487,1421,1412,1514,1489,1525,1551,1550,1501,1616,1635,1724,1746,1639,1711,1733,1123 -NA,85+,1758,1997,1828,1862,1834,1895,1932,1804,1787,1689,1633,1630,1501,1592,1629,1430,1588,1725,1411,1685,1532,1287,1614,1442,1427,1503,1318,1471,1426,1351,1455,1387,1436,1439,1232,1480,1547,1463,1527,1508,1609,1641,1617,1573,1737,1692,1776,1808,1748,1772,1995,1218 -NA,Females 5,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Under 1 year,15,30,20,16,19,18,22,29,28,13,27,20,19,20,16,24,18,20,22,20,22,23,22,24,21,17,9,21,14,21,27,31,26,16,22,25,29,22,27,31,20,22,26,18,23,27,25,21,18,23,28,14 -NA,01-14,10,7,15,12,5,8,9,14,10,6,13,15,9,5,9,10,9,4,8,7,9,5,9,7,9,12,9,9,4,7,5,3,11,4,6,10,9,7,6,8,6,4,8,10,4,10,10,4,6,16,10,7 -NA,15-44,87,112,108,114,99,115,104,117,106,106,105,93,84,112,94,105,102,90,103,112,116,92,107,100,83,87,85,85,99,102,101,89,80,95,86,85,119,99,95,107,94,110,95,113,115,99,115,103,111,128,139,63 -NA,45-64,506,567,542,578,562,518,573,545,519,503,523,475,494,507,482,456,483,513,470,479,511,426,466,476,436,476,475,442,453,457,421,433,501,446,397,484,460,458,493,484,451,478,499,514,498,515,501,498,519,567,548,325 -NA,65-74,774,914,873,782,807,855,794,736,767,745,675,748,665,684,717,594,760,780,645,673,721,598,726,695,662,636,651,664,637,647,676,640,646,640,573,688,671,674,625,715,629,691,700,683,685,693,701,743,704,765,808,519 -NA,75-84,1488,1733,1577,1500,1462,1533,1616,1473,1461,1378,1402,1352,1324,1348,1364,1127,1268,1498,1217,1336,1382,1156,1247,1208,1231,1183,1230,1222,1230,1206,1219,1165,1159,1122,1079,1288,1233,1283,1246,1291,1344,1369,1249,1437,1382,1435,1439,1396,1439,1504,1566,1108 -NA,85+,2881,3074,2834,2835,2739,2826,2846,2738,2690,2604,2592,2496,2356,2401,2420,2182,2398,2711,2123,2437,2398,1897,2344,2162,2200,2164,2107,2069,2070,2128,2099,2173,1955,2048,1961,2257,2157,2189,2148,2249,2399,2442,2400,2441,2677,2625,2616,2638,2644,2696,2973,1931 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Deaths by region of usual residence 6,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000001,North East,574,643,627,640,618,608,569,610,572,582,527,532,529,518,510,459,551,541,484,548,530,436,554,507,478,475,437,458,478,534,536,530,497,505,466,473,482,494,538,491,527,567,540,537,553,607,582,563,558,585,670,411 -E12000002,North West,1456,1612,1566,1593,1485,1595,1618,1495,1425,1463,1393,1437,1278,1277,1341,1225,1365,1493,1214,1402,1397,1176,1349,1313,1344,1250,1269,1272,1287,1237,1234,1149,1237,1203,1153,1248,1328,1283,1299,1322,1400,1400,1361,1338,1455,1402,1464,1469,1477,1637,1712,1200 -E12000003,Yorkshire and The Humber,1148,1279,1197,1137,1131,1133,1189,1124,1109,1083,1054,1087,943,959,1034,910,996,1125,924,980,1024,782,1025,889,931,984,896,932,841,895,936,867,857,927,832,937,916,954,906,948,1005,1019,1001,1033,1053,1070,1039,1139,1011,1102,1173,737 -E12000004,East Midlands,964,1089,979,1037,963,988,1033,928,927,946,879,890,875,876,858,759,856,986,776,887,888,699,880,817,751,790,750,747,809,774,782,795,749,726,697,867,774,827,842,875,847,863,846,877,880,889,931,935,958,973,1050,729 -E12000005,West Midlands,1180,1299,1187,1131,1150,1241,1231,1143,1188,1150,1092,1062,930,1050,1084,928,1008,1136,906,1082,1070,840,1082,950,938,1013,940,949,962,882,929,953,969,918,826,939,1001,974,1027,1008,1027,1093,1019,967,1110,1080,1138,1184,1083,1130,1269,720 -E12000006,East,1136,1386,1344,1291,1202,1283,1342,1218,1214,1116,1198,1066,1136,1224,1188,1014,1084,1139,943,1112,1097,842,982,1012,1011,1028,981,995,994,1024,988,1026,933,964,838,1115,1088,1049,1014,1059,1073,1083,1063,1100,1181,1090,1166,1116,1184,1176,1238,716 -E12000007,London,1021,1137,1073,1045,1066,1088,1061,1045,1009,1004,975,925,910,928,937,834,951,1040,807,927,876,809,919,900,900,892,833,875,829,833,911,891,892,826,784,976,916,889,840,846,887,886,895,976,974,1041,1023,1025,986,1044,1028,653 -E12000008,South East,1586,1927,1936,1875,1718,1738,1802,1777,1712,1708,1601,1640,1540,1582,1623,1350,1495,1782,1456,1570,1620,1252,1516,1452,1510,1481,1431,1357,1328,1376,1424,1334,1355,1389,1245,1518,1399,1385,1404,1573,1557,1556,1491,1547,1701,1690,1618,1648,1647,1690,1709,1094 -E12000009,South West,1136,1394,1236,1229,1191,1251,1207,1234,1178,1198,1149,1089,1047,1039,1037,919,1053,1251,922,1078,1126,886,1182,986,1032,1005,962,972,981,982,926,1010,978,963,814,1014,1020,982,1017,1059,1026,1040,1107,1118,1102,1083,1203,1166,1157,1130,1288,766 -W92000004,Wales,718,809,683,734,745,701,748,695,684,622,666,628,654,642,637,580,678,688,600,658,627,518,626,598,542,564,534,588,553,543,570,542,589,553,558,582,567,572,611,597,590,622,670,642,653,674,699,689,737,699,767,496 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Footnotes,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"1 This average is based on the actual number of death registrations recorded for each corresponding week over the previous five years. Moveable public holidays, when register offices are closed, affect the number of registrations made in the published weeks and in the corresponding weeks in previous years.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2 Counts of deaths by underlying cause exclude deaths at age under 28 days.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -3 Coding of deaths by underlying cause for the latest week is not yet complete.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"4 For deaths registered from January 2014, cause of death is coded to the ICD-10 classification using IRIS software. Further information about the implementation of the software is available on the ONS website.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"5 Does not include deaths where age is either missing or not yet fully coded. For this reason counts of 'Persons', 'Males' and 'Females' may not sum to 'Total Deaths, all ages'.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"6 Does not include deaths of those resident outside England and Wales or those records where the place of residence is either missing or not yet fully coded. For this reason counts for ""Deaths by Region of usual residence"" may not sum to ""Total deaths, all ages"".",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Source: Office for National Statistics,NA,NA,Released:,14 January 2020,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA diff --git a/working_files/Weekly/2019Mortality.xls b/working_files/Weekly/2019Mortality.xls deleted file mode 100644 index 4883cd2..0000000 Binary files a/working_files/Weekly/2019Mortality.xls and /dev/null differ diff --git a/working_files/Weekly/2020Mortality-Analysis.csv b/working_files/Weekly/2020Mortality-Analysis.csv deleted file mode 100644 index 5431a4d..0000000 --- a/working_files/Weekly/2020Mortality-Analysis.csv +++ /dev/null @@ -1,12 +0,0 @@ -"To meet user needs, we publish very timely but provisional counts of death registrations in England and Wales in our Deaths registered weekly in England and Wales, provisional dataset. These are presented by sex, age group and regions (within England), as well as for Wales as a whole. To allow time for registration and processing, these figures are published 11 days after the week ends." -NA -NA -NA -NA -"Because of the coronavirus (COVID-19) pandemic, our regular weekly deaths release now provides a separate breakdown of the numbers of deaths involving COVID-19. That is, where COVID-19 or suspected COVID-19 was mentioned anywhere on the death certificate, including in combination with other health conditions. Previously, the number of deaths with an underlying cause of respiratory disease was published a week behind the current week. These will now be published for the current week and revised the following week. Alongside this, a new bulletin summarises the latest weekly information and will be updated each week during the pandemic. A link to the bulletin can be found in the notice box on the weekly deaths dataset page." -NA -NA -NA -NA -NA -"We will publish extra articles periodically, giving enhanced information such as age-standardised and age-specific mortality rates for recent time periods, and breakdowns of deaths involving COVID-19 by associated pre-existing health conditions." diff --git a/working_files/Weekly/2020Mortality-Contents.csv b/working_files/Weekly/2020Mortality-Contents.csv deleted file mode 100644 index fff2c99..0000000 --- a/working_files/Weekly/2020Mortality-Contents.csv +++ /dev/null @@ -1,23 +0,0 @@ -Contents,"Weekly provisional figures on deaths registered in -England and Wales" -NA,NA -NA,NA -Information,Information on weekly deaths -NA,NA -Terms and conditions,Terms and conditions -NA,NA -Weekly figures for 2020,"Deaths (numbers): by age, sex and region, 2020 registrations, England and Wales" -NA,NA -COVID-19 - Weekly registrations,"Deaths involving coronavirus (COVID-19) (numbers): by age, sex and region, 2020 registrations, England and Wales" -NA,NA -COVID-19 - Weekly occurrences,"Deaths involving coronavirus (COVID-19) (numbers): by age, sex and region, 2020 occurrences, England and Wales" -NA,NA -UK - COVID-19 - Weekly registrations,"Deaths involving coronavirus (COVID-19) (numbers): by age and sex, 2020 registrations, UK" -NA,NA -COVID-19 - England and Wales comparisons,"Deaths involving coronavirus (COVID-19), registered and occurring and those reported on GOV.UK up to 27 March 2020, England and Wales" -NA,NA -COVID-19 - England comparisons,"Deaths involving coronavirus (COVID-19), registered and occurring and those reported on GOV.UK up to 27 March 2020, England" -NA,NA -COVID-19 - Place of occurrence,"Weekly provisional figures on deaths registered where coronavirus (COVID-19) was mentioned on the death certificate, by place of occurrence, England and Wales" -NA,NA -Related publications,Provides links to further mortality statistics based on death registrations diff --git a/working_files/Weekly/2020Mortality-Covid-19 - E&W comparisons.csv b/working_files/Weekly/2020Mortality-Covid-19 - E&W comparisons.csv deleted file mode 100644 index fc775dc..0000000 --- a/working_files/Weekly/2020Mortality-Covid-19 - E&W comparisons.csv +++ /dev/null @@ -1,47 +0,0 @@ -Contents,...2,...3,...4,...5,...6,...7,...8,...9 -"Number of deaths involving COVID-19, registered and occurring and those reported on GOV.UK up to 3 April 2020, England and Wales",NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA -Date,Daily death counts released on GOV.UK (E&W only),ONS deaths by date of registration – registered by 3rd April,ONS deaths by actual date of death – registered by 3rd April,ONS deaths by actual date of death – registered by 11th April,ONS deaths by date of registration – (England only) registered by 3rd April,ONS deaths by date of registration – (Wales only) registered by 3rd April,ONS deaths by actual date of death – (England only) registered by 11th April,ONS deaths by actual date of death – (Wales only) registered by 11th April -43895,1,0,3,4,0,0,4,0 -43896,2,0,3,4,0,0,4,0 -43897,2,0,3,4,0,0,4,0 -43898,3,0,5,6,0,0,6,0 -43899,6,1,8,10,1,0,10,0 -43900,6,2,9,11,2,0,11,0 -43901,8,3,14,16,3,0,16,0 -43902,10,3,23,26,3,0,26,0 -43903,20,5,35,39,5,0,39,0 -43904,34,5,52,56,5,0,56,0 -43905,54,5,81,85,5,0,83,1 -43906,69,16,119,126,16,0,121,3 -43907,100,29,167,177,28,0,171,4 -43908,137,47,229,242,46,0,234,6 -43909,170,74,297,310,72,1,298,10 -43910,225,108,394,413,105,2,397,14 -43911,269,108,507,533,105,2,507,23 -43912,319,108,661,693,105,2,663,27 -43913,402,164,822,865,158,4,828,32 -43914,434,232,1036,1089,224,6,1041,43 -43915,543,357,1299,1370,343,12,1312,53 -43916,713,458,1617,1723,442,14,1651,64 -43917,964,647,1941,2117,620,23,2028,81 -43918,1173,667,2310,2543,640,23,2438,97 -43919,1346,672,2717,3034,645,23,2907,118 -43920,1720,1133,3148,3596,1082,45,3451,135 -43921,2264,1710,3597,4258,1630,71,4091,153 -43922,2815,2412,3928,4932,2308,94,4743,174 -43923,3443,3227,4094,5644,3092,123,5423,205 -43924,4093,4122,4123,6235,3950,157,5979,236 -NA,NA,NA,NA,NA,NA,NA,NA,NA -Footnotes,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA -1 Data is provisional,NA,NA,NA,NA,NA,NA,NA,NA -2 Figures include deaths of non-residents.,NA,NA,NA,NA,NA,NA,NA,NA -3 Figures based on boundaries as of February 2020.,NA,NA,NA,NA,NA,NA,NA,NA -"4 Figures for deaths occurring only include deaths that were registered by the date indicated, so may be an underestimate due to registration delays. More information on registration delays for a range of causes can be found on the ONS website via the link below.",NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA -Impact of registration delays on mortality statistics in England and Wales: 2018 (latest),NA,NA,NA,NA,NA,NA,NA,NA -"5 DHSC death counts are taken the next day. For example, deaths reported on the 6 March were used for 5th March. These figures are being worked on by DHSC and next week will require better reconciliation.",NA,NA,NA,NA,NA,NA,NA,NA -6 Counts are cumulative,NA,NA,NA,NA,NA,NA,NA,NA diff --git a/working_files/Weekly/2020Mortality-Covid-19 - England comparisons.csv b/working_files/Weekly/2020Mortality-Covid-19 - England comparisons.csv deleted file mode 100644 index a90a8d7..0000000 --- a/working_files/Weekly/2020Mortality-Covid-19 - England comparisons.csv +++ /dev/null @@ -1,50 +0,0 @@ -Contents,...2,...3,...4,...5,...6 -"Number of deaths involving COVID-19, registered and occurring and those reported on GOV.UK, and by NHS England up to 3 April 2020, England",NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA -Date,Daily death counts released on GOV.UK,NHS England by date of death - As published on 12th April,ONS deaths by date of registration – registered by 3rd April,ONS deaths by actual date of death – registered by 3rd April,ONS deaths by actual date of death – registered by 11th April -43895,1,12,0,3,4 -43896,2,15,0,3,4 -43897,2,16,0,3,4 -43898,3,21,0,5,6 -43899,6,23,1,8,10 -43900,6,24,2,9,11 -43901,8,31,3,14,16 -43902,10,40,3,23,26 -43903,20,55,5,35,39 -43904,34,77,5,52,56 -43905,53,105,5,79,83 -43906,67,151,16,114,121 -43907,98,190,28,161,171 -43908,135,249,46,221,234 -43909,167,306,72,285,298 -43910,222,401,105,378,397 -43911,257,493,105,481,507 -43912,303,624,105,631,663 -43913,385,749,158,785,828 -43914,412,905,224,988,1041 -43915,515,1116,343,1242,1312 -43916,679,1408,442,1546,1651 -43917,926,1737,620,1855,2028 -43918,1125,2066,640,2208,2438 -43919,1284,2639,645,2594,2907 -43920,1651,3198,1082,3012,3451 -43921,2166,3502,1630,3445,4091 -43922,2698,4057,2308,3768,4743 -43923,3302,4602,3092,3924,5423 -43924,3939,5186,3950,3950,5979 -NA,NA,NA,NA,NA,NA -Footnotes,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA -1 Data is provisional,NA,NA,NA,NA,NA -2 Figures include deaths of non-residents.,NA,NA,NA,NA,NA -3 Figures based on boundaries as of February 2020.,NA,NA,NA,NA,NA -"4 Figures for deaths occurring only include deaths that were registered by the date indicated, so may be an underestimate due to registration delays. More information on registration delays for a range of causes can be found on the ONS website via the link below.",NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA -Impact of registration delays on mortality statistics in England and Wales: 2018 (latest),NA,NA,NA,NA,NA -"5 DHSC death counts are taken the next day. For example, deaths reported on the 6 March were used for 5th March. These figures are being worked on by DHSC and next week will require better reconciliation.",NA,NA,NA,NA,NA -6 Counts are cumulative,NA,NA,NA,NA,NA -7 NHS counts can be found on the link below,NA,NA,NA,NA,NA -https://www.england.nhs.uk/statistics/statistical-work-areas/covid-19-daily-deaths/,NA,NA,NA,NA,NA -8 NHS England and ONS occurrence data will be revised as more notifications and registrations are received,NA,NA,NA,NA,NA diff --git a/working_files/Weekly/2020Mortality-Covid-19 - Place of occurrence .csv b/working_files/Weekly/2020Mortality-Covid-19 - Place of occurrence .csv deleted file mode 100644 index 5c252a8..0000000 --- a/working_files/Weekly/2020Mortality-Covid-19 - Place of occurrence .csv +++ /dev/null @@ -1,37 +0,0 @@ -Contents,...2,...3,...4,...5,...6,...7,...8,...9,...10,...11,...12,...13,...14,...15,...16,...17,...18,...19,...20,...21,...22,...23,...24,...25 -"Weekly provisional figures on deaths registered5 where coronavirus (COVID-19)3 was mentioned on the death certificate, by place of occurrence, in England and Wales",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Week number,11,NA,NA,NA,NA,NA,12,NA,NA,NA,NA,NA,13,NA,NA,NA,NA,NA,14,NA,NA,NA,NA,NA -Week ended,43903,NA,NA,NA,NA,NA,43910,NA,NA,NA,NA,NA,43917,NA,NA,NA,NA,NA,43924,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,England and Wales,NA,England,NA,Wales,NA,England and Wales,NA,England,NA,Wales,NA,England and Wales,NA,England,NA,Wales,NA,England and Wales,NA,England,NA,Wales,NA -NA,Total deaths,COVID-19 deaths,Total deaths,COVID-19 deaths,Total deaths,COVID-19 deaths,Total deaths,COVID-19 deaths,Total deaths,COVID-19 deaths,Total deaths,COVID-19 deaths,Total deaths,COVID-19 deaths,Total deaths,COVID-19 deaths,Total deaths,COVID-19 deaths,Total deaths,COVID-19 deaths,Total deaths,COVID-19 deaths,Total deaths,COVID-19 deaths -Home,2725,0,2562,0,163,0,2709,1,2502,1,207,0,2786,15,2579,14,207,1,3865,120,3604,111,261,9 -"Hospital (acute or community, not psychiatric)",4975,5,4582,5,379,0,4770,100,4390,97,366,2,5105,501,4750,480,347,19,7884,3110,7425,2985,443,115 -Hospice,553,0,539,0,14,0,551,0,531,0,19,0,504,2,492,2,12,0,544,31,525,29,19,2 -Care Home,2471,0,2373,0,98,0,2335,2,2237,2,95,0,2489,20,2352,18,135,1,3769,195,3593,187,174,8 -Other communal establishment,44,0,44,0,NA,0,43,0,38,0,5,0,33,0,33,0,NA,0,53,3,52,3,1,0 -Elsewhere,249,0,222,0,21,0,238,0,207,0,27,0,225,1,207,1,18,0,272,16,244,15,22,0 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Deaths registered from 29 December 2019 to the 3 April 2020.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,England and Wales,NA,England,NA,Wales,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Total deaths,COVID-19 deaths,Total deaths,COVID-19 deaths,Total deaths,COVID-19 deaths,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -All deaths,166436,4122,155749,3950,10376,157,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Home,40238,136,37636,126,2602,10,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"Hospital (acute or community, not psychiatric)",76769,3716,71083,3567,5474,136,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Hospice,8002,33,7758,31,233,2,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Care Home,37386,217,35582,207,1788,9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Other communal establishment,617,3,588,3,29,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Elsewhere,3424,17,3102,16,250,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Footnotes,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -1 Coding of deaths by cause for the latest week is not yet be complete.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"2 For deaths registered from 1st January 2020, cause of death is coded to the ICD-10 classification using MUSE 5.5 software. Previous years were coded to IRIS 4.2.3, further information about the change in software is available.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -3 Deaths involving COVID-19 have been included within weekly death registrations figures due to the pandemic.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"4 Does not include deaths where age is either missing or not yet fully coded. For this reason counts of 'Persons', 'Males' and 'Females' may not sum to 'Total Deaths, all ages'.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"5 Non-residents are included in the England and Wales total but not England and Wales seperately. For this reason counts for ""England"" and ""Wales"" may not sum to ""England and Wales"".",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"6 These figures represent death registrations, there can be a delay between the date a death occurred and the date a death was registered. More information can be found in our impact of registration delays release.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -7 Deaths at home are those at the usual residence of the deceased (according to the informant)‚ where this is not a communal establishment.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Source: Office for National Statistics,NA,NA,NA,NA,Released:,7 April 2020,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA diff --git a/working_files/Weekly/2020Mortality-Covid-19 - Weekly occurrences.csv b/working_files/Weekly/2020Mortality-Covid-19 - Weekly occurrences.csv deleted file mode 100644 index 0eda16f..0000000 --- a/working_files/Weekly/2020Mortality-Covid-19 - Weekly occurrences.csv +++ /dev/null @@ -1,102 +0,0 @@ -Contents,...2,...3,...4,...5,...6,...7,...8,...9,...10,...11,...12,...13,...14,...15,...16,...17,...18,...19,...20,...21,...22,...23,...24,...25,...26,...27,...28,...29,...30,...31,...32,...33,...34,...35,...36,...37,...38,...39,...40,...41,...42,...43,...44,...45,...46,...47,...48,...49,...50,...51,...52,...53,...54,...55 -Weekly provisional figures on deaths registered5 where coronavirus (COVID-19)3 was mentioned on the death certificate in England and Wales,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Note that up-to-date counts of the total numbers of deaths involving coronavirus (COVID-19) are published by Department of Health and Social Care (DHSC) on the .GOV.UK website. ONS figures differ from the DHSC counts as the latter include deaths which have not yet been registered.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Week number,NA,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53 -Week ended,NA,43833,43840,43847,43854,43861,43868,43875,43882,43889,43896,43903,43910,43917,43924,43931,43938,43945,43952,43959,43966,43973,43980,43987,43994,44001,44008,44015,44022,44029,44036,44043,44050,44057,44064,44071,44078,44085,44092,44099,44106,44113,44120,44127,44134,44141,44148,44155,44162,44169,44176,44183,44190,44197 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"Deaths involving COVID-19, all ages1",NA,0,0,0,0,0,0,0,0,0,4,35,374,1704,4117,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Persons 4,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,<1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,1-4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,5-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,10-14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,15-19,0,0,0,0,0,0,0,0,0,0,0,0,2,2,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,20-24,0,0,0,0,0,0,0,0,0,0,0,1,1,5,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,25-29,0,0,0,0,0,0,0,0,0,0,0,1,3,4,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,30-34,0,0,0,0,0,0,0,0,0,0,0,0,10,8,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,35-39,0,0,0,0,0,0,0,0,0,0,0,0,8,11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,40-44,0,0,0,0,0,0,0,0,0,0,1,1,8,16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,45-49,0,0,0,0,0,0,0,0,0,0,0,6,22,56,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,50-54,0,0,0,0,0,0,0,0,0,0,0,15,33,70,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,55-59,0,0,0,0,0,0,0,0,0,0,0,12,67,152,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,60-64,0,0,0,0,0,0,0,0,0,0,3,18,82,201,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,65-69,0,0,0,0,0,0,0,0,0,0,4,27,116,287,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,70-74,0,0,0,0,0,0,0,0,0,0,6,34,198,483,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,75-79,0,0,0,0,0,0,0,0,0,1,2,43,272,649,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,80-84,0,0,0,0,0,0,0,0,0,2,5,67,320,838,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,85-89,0,0,0,0,0,0,0,0,0,0,7,84,310,698,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,90+,0,0,0,0,0,0,0,0,0,1,7,65,252,637,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Males 4,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,<1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,1-4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,5-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,10-14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,15-19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,20-24,0,0,0,0,0,0,0,0,0,0,0,0,0,3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,25-29,0,0,0,0,0,0,0,0,0,0,0,0,1,2,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,30-34,0,0,0,0,0,0,0,0,0,0,0,0,8,5,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,35-39,0,0,0,0,0,0,0,0,0,0,0,0,4,8,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,40-44,0,0,0,0,0,0,0,0,0,0,0,0,6,8,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,45-49,0,0,0,0,0,0,0,0,0,0,0,2,11,28,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,50-54,0,0,0,0,0,0,0,0,0,0,0,7,23,49,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,55-59,0,0,0,0,0,0,0,0,0,0,0,7,44,94,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,60-64,0,0,0,0,0,0,0,0,0,0,1,10,58,138,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,65-69,0,0,0,0,0,0,0,0,0,0,4,16,74,194,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,70-74,0,0,0,0,0,0,0,0,0,0,4,22,130,329,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,75-79,0,0,0,0,0,0,0,0,0,0,1,28,180,420,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,80-84,0,0,0,0,0,0,0,0,0,1,5,39,208,532,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,85-89,0,0,0,0,0,0,0,0,0,0,6,45,175,420,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,90+,0,0,0,0,0,0,0,0,0,0,5,32,135,315,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Females 4,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,<1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,1-4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,5-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,10-14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,15-19,0,0,0,0,0,0,0,0,0,0,0,0,1,2,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,20-24,0,0,0,0,0,0,0,0,0,0,0,1,1,2,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,25-29,0,0,0,0,0,0,0,0,0,0,0,1,2,2,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,30-34,0,0,0,0,0,0,0,0,0,0,0,0,2,3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,35-39,0,0,0,0,0,0,0,0,0,0,0,0,4,3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,40-44,0,0,0,0,0,0,0,0,0,0,1,1,2,8,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,45-49,0,0,0,0,0,0,0,0,0,0,0,4,11,28,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,50-54,0,0,0,0,0,0,0,0,0,0,0,8,10,21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,55-59,0,0,0,0,0,0,0,0,0,0,0,5,23,58,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,60-64,0,0,0,0,0,0,0,0,0,0,2,8,24,63,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,65-69,0,0,0,0,0,0,0,0,0,0,0,11,42,93,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,70-74,0,0,0,0,0,0,0,0,0,0,2,12,68,154,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,75-79,0,0,0,0,0,0,0,0,0,1,1,15,92,229,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,80-84,0,0,0,0,0,0,0,0,0,1,0,28,112,306,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,85-89,0,0,0,0,0,0,0,0,0,0,1,39,135,278,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,90+,0,0,0,0,0,0,0,0,0,1,2,33,117,322,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Deaths by region of usual residence 5,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000001,North East,0,0,0,0,0,0,0,0,0,0,0,4,39,193,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000002,North West,0,0,0,0,0,0,0,0,0,0,4,34,157,552,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000003,Yorkshire and The Humber,0,0,0,0,0,0,0,0,0,0,0,11,55,243,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000004,East Midlands,0,0,0,0,0,0,0,0,0,0,2,18,85,254,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000005,West Midlands,0,0,0,0,0,0,0,0,0,0,9,52,228,529,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000006,East,0,0,0,0,0,0,0,0,0,1,2,13,132,377,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000007,London,0,0,0,0,0,0,0,0,0,1,15,152,652,1132,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000008,South East,0,0,0,0,0,0,0,0,0,2,3,61,223,473,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000009,South West,0,0,0,0,0,0,0,0,0,0,0,13,60,198,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W92000004,Wales,0,0,0,0,0,0,0,0,0,0,0,14,67,155,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Footnotes,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -1 Coding of deaths by cause for the latest week is not yet be complete.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"2 For deaths registered from 1st January 2020, cause of death is coded to the ICD-10 classification using MUSE 5.5 software. Previous years were coded to IRIS 4.2.3, further information about the change in software is available.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -3 Deaths involving COVID-19 have been included within weekly death registrations figures due to the pandemic.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"4 Does not include deaths where age is either missing or not yet fully coded. For this reason counts of 'Persons', 'Males' and 'Females' may not sum to 'Total Deaths, all ages'.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"5 Does not include deaths of those resident outside England and Wales or those records where the place of residence is either missing or not yet fully coded. For this reason counts for ""Deaths by Region of usual residence"" may not sum to ""Total deaths, all ages"".",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"6 These figures represent death registrations, there can be a delay between the date a death occurred and the date a death was registered. More information can be found in our impact of registration delays release.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Source: Office for National Statistics,NA,NA,Released:,14 April 2020,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA diff --git a/working_files/Weekly/2020Mortality-Covid-19 - Weekly registrations.csv b/working_files/Weekly/2020Mortality-Covid-19 - Weekly registrations.csv deleted file mode 100644 index 5a64134..0000000 --- a/working_files/Weekly/2020Mortality-Covid-19 - Weekly registrations.csv +++ /dev/null @@ -1,102 +0,0 @@ -Contents,...2,...3,...4,...5,...6,...7,...8,...9,...10,...11,...12,...13,...14,...15,...16,...17,...18,...19,...20,...21,...22,...23,...24,...25,...26,...27,...28,...29,...30,...31,...32,...33,...34,...35,...36,...37,...38,...39,...40,...41,...42,...43,...44,...45,...46,...47,...48,...49,...50,...51,...52,...53,...54,...55 -Weekly provisional figures on deaths registered5 where coronavirus (COVID-19)3 was mentioned on the death certificate in England and Wales,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Note that up-to-date counts of the total numbers of deaths involving coronavirus (COVID-19) are published by Department of Health and Social Care (DHSC) on the .GOV.UK website. ONS figures differ from the DHSC counts as the latter include deaths which have not yet been registered.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Week number,NA,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53 -Week ended,NA,43833,43840,43847,43854,43861,43868,43875,43882,43889,43896,43903,43910,43917,43924,43931,43938,43945,43952,43959,43966,43973,43980,43987,43994,44001,44008,44015,44022,44029,44036,44043,44050,44057,44064,44071,44078,44085,44092,44099,44106,44113,44120,44127,44134,44141,44148,44155,44162,44169,44176,44183,44190,44197 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"Deaths involving COVID-19, all ages1",NA,0,0,0,0,0,0,0,0,0,0,5,103,539,3475,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Persons 4,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,<1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,1-4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,5-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,10-14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,15-19,0,0,0,0,0,0,0,0,0,0,0,0,0,3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,20-24,0,0,0,0,0,0,0,0,0,0,0,0,0,3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,25-29,0,0,0,0,0,0,0,0,0,0,0,0,1,5,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,30-34,0,0,0,0,0,0,0,0,0,0,0,0,4,9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,35-39,0,0,0,0,0,0,0,0,0,0,0,0,3,12,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,40-44,0,0,0,0,0,0,0,0,0,0,0,1,0,11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,45-49,0,0,0,0,0,0,0,0,0,0,0,0,8,42,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,50-54,0,0,0,0,0,0,0,0,0,0,0,2,9,64,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,55-59,0,0,0,0,0,0,0,0,0,0,0,2,16,137,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,60-64,0,0,0,0,0,0,0,0,0,0,1,2,30,169,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,65-69,0,0,0,0,0,0,0,0,0,0,0,11,42,224,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,70-74,0,0,0,0,0,0,0,0,0,0,1,9,57,402,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,75-79,0,0,0,0,0,0,0,0,0,0,2,11,84,549,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,80-84,0,0,0,0,0,0,0,0,0,0,1,20,97,682,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,85-89,0,0,0,0,0,0,0,0,0,0,0,24,102,617,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,90+,0,0,0,0,0,0,0,0,0,0,0,21,86,546,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Males 4,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,<1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,1-4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,5-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,10-14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,15-19,0,0,0,0,0,0,0,0,0,0,0,0,0,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,20-24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,25-29,0,0,0,0,0,0,0,0,0,0,0,0,0,2,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,30-34,0,0,0,0,0,0,0,0,0,0,0,0,4,6,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,35-39,0,0,0,0,0,0,0,0,0,0,0,0,2,7,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,40-44,0,0,0,0,0,0,0,0,0,0,0,0,0,7,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,45-49,0,0,0,0,0,0,0,0,0,0,0,0,4,18,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,50-54,0,0,0,0,0,0,0,0,0,0,0,2,5,43,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,55-59,0,0,0,0,0,0,0,0,0,0,0,1,12,86,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,60-64,0,0,0,0,0,0,0,0,0,0,1,0,19,118,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,65-69,0,0,0,0,0,0,0,0,0,0,0,7,30,153,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,70-74,0,0,0,0,0,0,0,0,0,0,0,6,38,266,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,75-79,0,0,0,0,0,0,0,0,0,0,0,6,63,352,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,80-84,0,0,0,0,0,0,0,0,0,0,1,13,55,441,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,85-89,0,0,0,0,0,0,0,0,0,0,0,16,59,354,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,90+,0,0,0,0,0,0,0,0,0,0,0,11,42,272,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Females 4,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,<1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,1-4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,5-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,10-14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,15-19,0,0,0,0,0,0,0,0,0,0,0,0,0,2,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,20-24,0,0,0,0,0,0,0,0,0,0,0,0,0,3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,25-29,0,0,0,0,0,0,0,0,0,0,0,0,1,3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,30-34,0,0,0,0,0,0,0,0,0,0,0,0,0,3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,35-39,0,0,0,0,0,0,0,0,0,0,0,0,1,5,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,40-44,0,0,0,0,0,0,0,0,0,0,0,1,0,4,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,45-49,0,0,0,0,0,0,0,0,0,0,0,0,4,24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,50-54,0,0,0,0,0,0,0,0,0,0,0,0,4,21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,55-59,0,0,0,0,0,0,0,0,0,0,0,1,4,51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,60-64,0,0,0,0,0,0,0,0,0,0,0,2,11,51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,65-69,0,0,0,0,0,0,0,0,0,0,0,4,12,71,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,70-74,0,0,0,0,0,0,0,0,0,0,1,3,19,136,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,75-79,0,0,0,0,0,0,0,0,0,0,2,5,21,197,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,80-84,0,0,0,0,0,0,0,0,0,0,0,7,42,241,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,85-89,0,0,0,0,0,0,0,0,0,0,0,8,43,263,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,90+,0,0,0,0,0,0,0,0,0,0,0,10,44,274,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Deaths by region of usual residence 5,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000001,North East,0,0,0,0,0,0,0,0,0,0,0,1,15,134,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000002,North West,0,0,0,0,0,0,0,0,0,0,1,12,60,418,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000003,Yorkshire and The Humber,0,0,0,0,0,0,0,0,0,0,0,5,12,174,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000004,East Midlands,0,0,0,0,0,0,0,0,0,0,0,3,24,185,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000005,West Midlands,0,0,0,0,0,0,0,0,0,0,2,14,67,400,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000006,East,0,0,0,0,0,0,0,0,0,0,0,3,12,283,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000007,London,0,0,0,0,0,0,0,0,0,0,0,44,237,1170,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000008,South East,0,0,0,0,0,0,0,0,0,0,2,17,69,411,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000009,South West,0,0,0,0,0,0,0,0,0,0,0,1,19,155,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W92000004,Wales,0,0,0,0,0,0,0,0,0,0,0,2,21,134,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Footnotes,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -1 Coding of deaths by cause for the latest week is not yet be complete.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"2 For deaths registered from 1st January 2020, cause of death is coded to the ICD-10 classification using MUSE 5.5 software. Previous years were coded to IRIS 4.2.3, further information about the change in software is available.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -3 Deaths involving COVID-19 have been included within weekly death registrations figures due to the pandemic.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"4 Does not include deaths where age is either missing or not yet fully coded. For this reason counts of 'Persons', 'Males' and 'Females' may not sum to 'Total Deaths, all ages'.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"5 Does not include deaths of those resident outside England and Wales or those records where the place of residence is either missing or not yet fully coded. For this reason counts for ""Deaths by Region of usual residence"" may not sum to ""Total deaths, all ages"".",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"6 These figures represent death registrations, there can be a delay between the date a death occurred and the date a death was registered. More information can be found in our impact of registration delays release.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Source: Office for National Statistics,NA,NA,Released:,14 April 2020,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA diff --git a/working_files/Weekly/2020Mortality-Information.csv b/working_files/Weekly/2020Mortality-Information.csv deleted file mode 100644 index f6f5656..0000000 --- a/working_files/Weekly/2020Mortality-Information.csv +++ /dev/null @@ -1,44 +0,0 @@ -Contents -Information on weekly deaths -NA -Things you need to know -NA -"Weekly death figures provide provisional counts of the number of deaths registered in England and Wales for which data are available, and the number of deaths for which the underlying cause was coded to respiratory diseases as defined in the International Statistical Classification of Diseases and Related Health Problems Tenth Revision (ICD-10)." -"From 31 March 2020 these figures also show the number of deaths involving coronavirus (COVID-19), based on any mention of COVID-19 on the death certificate." -NA -"These figures are also presented by age group, sex and by area of usual residence." -NA -Notes and definitions -NA -Deaths occurring in England and Wales are registered on the General Register Office's Registration Online system (RON). -NA -Daily extracts of death registration records from RON are processed on our database systems. -NA -Provisional data on deaths registered in each week (ending on a Friday) are compiled at the end of the following week. -NA -Bank Holidays could affect the number of registrations made within those weeks. -NA -The counts of deaths from specific conditons are updated with each weekly publication as the coding of the underlying cause is not always complete at the time of production. -NA -"For deaths registered from 1st January 2020, cause of death is coded to the ICD-10 classification using MUSE 5.5 software. Previous years were coded to IRIS 4.2.3, further information about the change in software is available." -NA -"Where there are the same values in categories in consecutive weeks, the counts have been checked and are made up of unique death registrations." -NA -Figures for the latest week are based on boundaries as of February 2020. -NA -The ONS policy on protecting confidentiality in birth and death statistics is available on our website. -NA -Further information and enquiries -NA -Special extracts and tabulations of mortality data for England and Wales are available to order for a charge (subject to legal -"frameworks, disclosure control, resources and the ONS charging policy, where appropriate). Enquiries should be made to" -Mortality Analysis Team (health.data@ons.gov.uk or telephone: +44 (0)1633 456490). -User requested data will be published onto our website. -NA -"Access to microdata and disclosive data, that is, data which have the potential to identify an individual record, requires the approval of the ONS Microdata Release Procedure (MRP) before the data can be provided." -NA -Feedback -NA -"We welcome feedback from users, please contact Mortality Analysis Team" -email: health.data@ons.gov.uk -telephone: +44 (0)1633 456490 diff --git a/working_files/Weekly/2020Mortality-Related publications.csv b/working_files/Weekly/2020Mortality-Related publications.csv deleted file mode 100644 index 654a770..0000000 --- a/working_files/Weekly/2020Mortality-Related publications.csv +++ /dev/null @@ -1,33 +0,0 @@ -Contents -Related publications -NA -User guide to mortality statistics -Supporting information for these tables can be found in the User guide to mortality statistics -NA -Quality and Methodology Information -"A Quality and Methodology Information document contains important information on: -• the strengths and limitations of the data -• the quality of the output: including the accuracy of the data, how it compares with related data -• uses and users -• how the output was created -" -NA -Further mortality statistics based on death registrations are available on the ONS website: -NA -Deaths registered in England and Wales -The summary tables provide key death registration statistics for the reference year. -NA -Deaths registered in England and Wales (Series DR) -Series DR (Mortality Statistics: Deaths Registered in England and Wales) provides detailed death registration statistics for the reference year. This includes numbers of deaths by detailed underlying cause by age-sex group defined by the different chapters of the Tenth Revision of the International Statistical Classification of Diseases and Related Health Problems (ICD-10). -NA -Deaths registered monthly in England and Wales -"To meet user needs, very timely but provisional counts of monthly death registrations in England and Wales are published by area of usual residence. Figures remain provisional until final annual data are released." -NA -"Vital statistics in the UK: births, deaths and marriages" -"These tables provide annual data for a selection of key statistics under the following themes: population, demography and health. Figures for the latest years may be provisional, these will be updated to final figures when data are available." -NA -"Deaths registered by area of usual residence, UK" -Presents data on death registrations in the UK by area of usual residence. The release contains a summary table providing key mortality measures (numbers and rates including age standardised mortality rates) for the UK and its constituent countries and a table providing numbers of deaths in England and Wales by age and sex. -NA -Explorable datasets for mortality statistics in England and Wales -"This dataset provides mortality statistics in England and Wales, broken down by calendar year of registration, age, sex, underlying cause of death and other selected information collected at the time of registration." diff --git a/working_files/Weekly/2020Mortality-Terms and conditions.csv b/working_files/Weekly/2020Mortality-Terms and conditions.csv deleted file mode 100644 index 4232928..0000000 --- a/working_files/Weekly/2020Mortality-Terms and conditions.csv +++ /dev/null @@ -1,33 +0,0 @@ -Contents -Terms and conditions -NA -A National Statistics publication -NA -National Statistics are produced to high professional standards set out in the Code of Practice for Official Statistics. They are produced free from any political interference. -NA -"The UK Statistics Authority has designated these statistics as National Statistics, in accordance with the Statistics and Registration Service Act 2007 and signifying compliance with the Code of Practice for Official Statistics." -Designation can be broadly interpreted to mean that the statistics: -• meet identified user needs -• are well explained and readily accessible -• are produced according to sound methods -• are managed impartially and objectively in the public interest -NA -Once statistics have been designated as National Statistics it is a statutory requirement that the Code of Practice shall continue to be observed. -NA -About us -NA -"We are the executive office of the UK Statistics Authority, a non-ministerial department which reports directly to Parliament and the UK government’s single largest statistical producer. We compile information about the UK’s society and economy, and provide the evidence-base for policy and decision-making, the allocation of resources, and public accountability." -NA -Copyright and reproduction -NA -© Crown copyright 2020 -"You may re-use this publication (not including logos) free of charge in any format or medium, under the terms of the Open Government Licence." -Users should include a source accreditation to ONS - Source: Office for National Statistics licensed under the Open Government Licence. -NA -Visit the Open Government Licence -"or write to the Information Policy Team, The National Archives, Kew, Richmond, Surrey, TW9 4DU;" -or email: psi@nationalarchives.gov.uk -NA -Where we have identified any third party copyright information you will need to obtain permission from the copyright holders concerned. -NA -This publication is also available on our website. diff --git a/working_files/Weekly/2020Mortality-UK - Covid-19 - Weekly reg.csv b/working_files/Weekly/2020Mortality-UK - Covid-19 - Weekly reg.csv deleted file mode 100644 index f8355e2..0000000 --- a/working_files/Weekly/2020Mortality-UK - Covid-19 - Weekly reg.csv +++ /dev/null @@ -1,62 +0,0 @@ -Contents,...2,...3,...4,...5,...6,...7,...8,...9,...10,...11,...12,...13,...14,...15,...16,...17,...18,...19,...20,...21,...22,...23,...24,...25,...26,...27,...28,...29,...30,...31,...32,...33,...34,...35,...36,...37,...38,...39,...40,...41,...42,...43,...44,...45,...46,...47,...48,...49,...50,...51,...52,...53,...54,...55 -Weekly provisional figures on deaths registered in the UK,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Note that up-to-date counts of the total numbers of deaths involving coronavirus (COVID-19) are published by Department of Health and Social Care (DHSC) on the .GOV.UK website. ONS figures differ from the DHSC counts as the latter include deaths which have not yet been registered.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Week number,NA,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53 -Week ended,NA,43833,43840,43847,43854,43861,43868,43875,43882,43889,43896,43903,43910,43917,43924,43931,43938,43945,43952,43959,43966,43973,43980,43987,43994,44001,44008,44015,44022,44029,44036,44043,44050,44057,44064,44071,44078,44085,44092,44099,44106,44113,44120,44127,44134,44141,44148,44155,44162,44169,44176,44183,44190,44197 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"UK deaths involving COVID-19, all ages",NA,0,0,0,0,0,0,0,0,0,0,5,113,607,3801,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,England,0,0,0,0,0,0,0,0,0,0,5,100,515,3330,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Wales,0,0,0,0,0,0,0,0,0,0,0,2,21,134,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Scotland,0,0,0,0,0,0,0,0,0,0,0,10,62,282,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Northern Ireland,0,0,0,0,0,0,0,0,0,0,0,1,9,55,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Deaths involving COVID-19 by age,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Persons - UK,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Under 1 year,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,01-14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,15-44,0,0,0,0,0,0,0,0,0,0,0,1,7,49,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,45-64,0,0,0,0,0,0,0,0,0,0,1,7,75,446,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,65-74,0,0,0,0,0,0,0,0,0,0,1,23,113,701,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,75-84,0,0,0,0,0,0,0,0,0,0,3,35,207,1351,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,85+,0,0,0,0,0,0,0,0,0,0,0,47,205,1254,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Males - GB,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Under 1 year,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,01-14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,15-44,0,0,0,0,0,0,0,0,0,0,0,1,2,25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,45-64,0,0,0,0,0,0,0,0,0,0,1,3,32,284,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,65-74,0,0,0,0,0,0,0,0,0,0,0,8,39,466,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,75-84,0,0,0,0,0,0,0,0,0,0,1,15,78,850,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,85+,0,0,0,0,0,0,0,0,0,0,0,19,91,657,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Females-GB,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Under 1 year,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,01-14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,15-44,0,0,0,0,0,0,0,0,0,0,0,0,6,22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,45-64,0,0,0,0,0,0,0,0,0,0,0,4,43,159,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,65-74,0,0,0,0,0,0,0,0,0,0,1,16,71,227,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,75-84,0,0,0,0,0,0,0,0,0,0,2,19,127,487,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,85+,0,0,0,0,0,0,0,0,0,0,0,28,112,580,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Footnotes,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -1. Weekly deaths for Scotland are produces by NRS,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2. Weekly deaths for Northern Ireland are produced by NISRA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -3. All data is provisional,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -4. All data is based on date of registration rather than occurrence. More details can be found in each departments release,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"5. England, Wales and Northern Ireland weekly deaths run from Saturday to Friday, Scotland deaths run from Monday to Sunday",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"5. Northern Ireland week allocation differs from other countries. For example, week 1 is week ending 10-Jan. This has been adjusted for the purpose of aggregating the data.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Source: Office for National Statistics,NA,NA,Released:,14 April 2020,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA diff --git a/working_files/Weekly/2020Mortality-Weekly figures 2020.csv b/working_files/Weekly/2020Mortality-Weekly figures 2020.csv deleted file mode 100644 index aa5a3d9..0000000 --- a/working_files/Weekly/2020Mortality-Weekly figures 2020.csv +++ /dev/null @@ -1,111 +0,0 @@ -Contents,...2,...3,...4,...5,...6,...7,...8,...9,...10,...11,...12,...13,...14,...15,...16,...17,...18,...19,...20,...21,...22,...23,...24,...25,...26,...27,...28,...29,...30,...31,...32,...33,...34,...35,...36,...37,...38,...39,...40,...41,...42,...43,...44,...45,...46,...47,...48,...49,...50,...51,...52,...53,...54,...55 -Weekly provisional figures on deaths registered7 in England and Wales,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Note that up-to-date counts of the total numbers of deaths involving coronavirus (COVID-19) are published by Department of Health and Social Care (DHSC) on the .GOV.UK website. ONS figures differ from the DHSC counts as the latter include deaths which have not yet been registered.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Week number,NA,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53 -Week ended,NA,43833,43840,43847,43854,43861,43868,43875,43882,43889,43896,43903,43910,43917,43924,43931,43938,43945,43952,43959,43966,43973,43980,43987,43994,44001,44008,44015,44022,44029,44036,44043,44050,44057,44064,44071,44078,44085,44092,44099,44106,44113,44120,44127,44134,44141,44148,44155,44162,44169,44176,44183,44190,44197 -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"Total deaths, all ages",NA,12254,14058,12990,11856,11612,10986,10944,10841,10816,10895,11019,10645,11141,16387,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Total deaths: average of corresponding,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -week over the previous 5 years 1,NA,12175,13822,13216,12760,12206,11925,11627,11548,11183,11498,11205,10573,10130,10305,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Note: Deaths could possibly be counted in both causes presented. If a death had an underlying respiratory cause and a mention of COVID-19 then it would appear in both counts.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,"Deaths by cause 2,3,4,5",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Deaths where the underlying cause was respiratory disease (ICD-10 J00-J99),2141,2477,2188,1893,1746,1572,1602,1619,1546,1581,1492,1515,1534,2106,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Deaths where COVID-19 was mentioned on the death certificate (ICD-10 U07.1 and U07.2),0,0,0,0,0,0,0,0,0,0,5,103,539,3475,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Persons 6,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,<1,48,50,69,53,50,30,43,51,49,56,53,44,49,51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,1-4,8,9,7,9,6,8,6,5,7,11,13,2,8,8,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,5-9,4,8,5,4,5,4,2,6,6,2,3,6,1,5,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,10-14,4,9,4,8,4,4,4,7,7,7,6,4,4,8,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,15-19,6,16,10,15,23,10,16,20,24,21,18,15,12,9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,20-24,11,23,25,30,23,34,26,18,25,23,39,22,17,20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,25-29,17,37,37,36,28,23,27,29,28,39,29,31,33,32,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,30-34,32,46,47,38,58,38,40,60,50,53,55,41,55,54,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,35-39,54,68,77,79,76,71,85,77,85,72,80,66,71,67,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,40-44,69,85,118,116,100,95,92,117,103,104,90,100,95,106,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,45-49,115,191,189,160,163,157,165,182,155,155,179,160,163,220,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,50-54,239,279,306,280,278,289,288,232,261,258,260,245,235,376,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,55-59,361,426,461,381,382,371,345,346,347,358,401,390,381,531,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,60-64,486,604,562,535,525,512,490,511,494,481,500,469,522,733,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,65-69,696,857,803,791,732,689,641,695,682,679,685,686,699,1044,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,70-74,1164,1341,1210,1167,1196,1120,1113,1048,1111,1090,1068,1094,1106,1690,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,75-79,1535,1724,1612,1474,1445,1358,1305,1338,1255,1325,1366,1373,1397,2179,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,80-84,2049,2290,2103,1863,1811,1698,1704,1696,1713,1798,1738,1694,1850,2826,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,85-89,2457,2697,2421,2188,2124,2040,2039,1927,2015,1969,1951,1902,2016,3015,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,90+,2898,3297,2924,2626,2583,2433,2517,2475,2398,2391,2483,2302,2428,3413,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Males 6,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,<1,30,29,38,28,22,14,29,32,30,31,24,25,27,26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,1-4,5,4,4,6,4,5,4,5,6,7,5,2,3,2,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,5-9,2,4,4,4,4,2,1,4,4,1,1,3,1,2,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,10-14,1,7,3,4,3,4,3,2,5,2,2,3,1,3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,15-19,5,8,5,14,17,8,9,14,16,13,13,11,8,7,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,20-24,7,14,21,23,16,23,19,14,19,16,26,17,11,12,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,25-29,7,28,31,31,19,11,19,17,21,27,20,22,22,22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,30-34,21,28,29,22,40,24,27,39,32,33,41,25,40,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,35-39,32,46,49,45,45,53,52,46,51,45,48,47,40,36,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,40-44,43,52,72,79,58,55,58,72,64,69,50,63,65,67,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,45-49,62,114,106,90,107,95,99,105,95,93,109,99,97,124,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,50-54,137,156,200,181,180,175,172,140,147,153,168,158,146,244,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,55-59,191,259,295,215,247,208,209,195,189,220,246,229,235,336,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,60-64,275,355,338,334,324,306,287,285,286,278,296,281,286,453,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,65-69,415,509,471,482,437,423,400,400,417,388,424,404,423,662,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,70-74,697,761,690,663,683,626,660,598,647,646,625,629,666,1039,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,75-79,826,924,886,819,827,713,726,778,709,725,748,763,788,1303,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,80-84,1053,1172,1080,951,919,875,870,894,871,938,904,892,1005,1570,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,85-89,1098,1231,1117,1014,970,943,995,906,956,932,935,905,984,1520,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,90+,982,1127,991,910,872,843,852,893,870,841,885,820,883,1327,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Females 6,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Deaths by age group,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,<1,18,21,31,25,28,16,14,19,19,25,29,19,22,25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,1-4,3,5,3,3,2,3,2,0,1,4,8,0,5,6,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,5-9,2,4,1,0,1,2,1,2,2,1,2,3,0,3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,10-14,3,2,1,4,1,0,1,5,2,5,4,1,3,5,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,15-19,1,8,5,1,6,2,7,6,8,8,5,4,4,2,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,20-24,4,9,4,7,7,11,7,4,6,7,13,5,6,8,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,25-29,10,9,6,5,9,12,8,12,7,12,9,9,11,10,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,30-34,11,18,18,16,18,14,13,21,18,20,14,16,15,15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,35-39,22,22,28,34,31,18,33,31,34,27,32,19,31,31,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,40-44,26,33,46,37,42,40,34,45,39,35,40,37,30,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,45-49,53,77,83,70,56,62,66,77,60,62,70,61,66,96,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,50-54,102,123,106,99,98,114,116,92,114,105,92,87,89,132,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,55-59,170,167,166,166,135,163,136,151,158,138,155,161,146,195,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,60-64,211,249,224,201,201,206,203,226,208,203,204,188,236,280,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,65-69,281,348,332,309,295,266,241,295,265,291,261,282,276,382,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,70-74,467,580,520,504,513,494,453,450,464,444,443,465,440,651,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,75-79,709,800,726,655,618,645,579,560,546,600,618,610,609,876,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,80-84,996,1118,1023,912,892,823,834,802,842,860,834,802,845,1256,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,85-89,1359,1466,1304,1174,1154,1097,1044,1021,1059,1037,1016,997,1032,1495,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,90+,1916,2170,1933,1716,1711,1590,1665,1582,1528,1550,1598,1482,1545,2086,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,Deaths by region of usual residence 7,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000001,North East,673,707,647,612,561,564,573,539,572,568,590,522,542,770,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000002,North West,1806,1932,1696,1529,1461,1529,1427,1477,1476,1490,1472,1443,1538,2137,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000003,Yorkshire and The Humber,1240,1339,1278,1187,1136,1072,1059,1087,1078,1112,1053,1012,982,1436,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000004,East Midlands,1060,1195,1106,1024,1015,922,976,924,919,930,915,947,922,1246,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000005,West Midlands,1349,1450,1407,1231,1262,1052,1159,1116,1174,1098,1187,1115,1035,1812,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000006,East,1162,1573,1457,1410,1286,1259,1172,1167,1115,1149,1211,1043,1182,1717,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000007,London,1113,1272,1073,1028,1092,987,967,1032,1085,982,964,1008,1297,2511,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000008,South East,1814,2132,2064,1833,1820,1729,1688,1675,1587,1726,1751,1657,1822,2294,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -E12000009,South West,1225,1487,1466,1253,1233,1157,1169,1118,1133,1170,1174,1156,1092,1520,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -W92000004,Wales,787,939,767,723,727,690,728,679,651,652,675,719,719,920,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Footnotes,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"1 This average is based on the actual number of death registrations recorded for each corresponding week over the previous five years. Moveable public holidays, when register offices are closed, affect the number of registrations made in the published weeks and in the corresponding weeks in previous years.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -2 Counts of deaths by underlying cause exclude deaths at age under 28 days. Counts of deaths involving Covid-19 will include neonatals,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -3 Coding of deaths by cause for the latest week is not yet complete.,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"4 For deaths registered from 1st January 2020, cause of death is coded to the ICD-10 classification using MUSE 5.5 software. Previous years were coded to IRIS 4.2.3, further information about the change in software is available.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"5 An 'underlying cause of death' refers to the main cause of death, whereas a cause being 'mentioned on the death certificate' means that it might be the main reason or a contributory reason to the cause of death",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"6 Does not include deaths where age is either missing or not yet fully coded. For this reason counts of 'Persons', 'Males' and 'Females' may not sum to 'Total Deaths, all ages'.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"7 Does not include deaths of those resident outside England and Wales or those records where the place of residence is either missing or not yet fully coded. For this reason counts for ""Deaths by Region of usual residence"" may not sum to ""Total deaths, all ages"".",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -"8 These figures represent death registrations, there can be a delay between the date a death occurred and the date a death was registered. More information can be found in our impact of registration delays release.",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -Source: Office for National Statistics,NA,NA,Released:,14 April 2020,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA diff --git a/working_files/Weekly/2020Mortality.xlsx b/working_files/Weekly/2020Mortality.xlsx deleted file mode 100644 index ee0a299..0000000 Binary files a/working_files/Weekly/2020Mortality.xlsx and /dev/null differ diff --git a/working_files/covid_19_prep.R b/working_files/covid_19_prep.R deleted file mode 100644 index 6067862..0000000 --- a/working_files/covid_19_prep.R +++ /dev/null @@ -1,67 +0,0 @@ -#these libraries need to be loaded -library(utils) -library(tidyverse) - -#read the Dataset sheet into “R”. The dataset will be called "data". -data <- read.csv("https://opendata.ecdc.europa.eu/covid19/casedistribution/csv", na.strings = "", fileEncoding = "UTF-8-BOM") - - -# library -data2 <- as_tibble(data) - -# There's a no Ascii character somewhere starting: Cura according to CRAN checks - -data2 %>% - filter(str_detect(countriesAndTerritories, "Cura")) - -data2$countriesAndTerritories[data2$countriesAndTerritories=="Curaçao"] <- "Curacao" - - -data2$countries_and_territories <- factor(data2$countriesAndTerritories) -data2$geo_id <- factor(data2$geoId) -data2$country_territory_code <- factor(data2$countryterritoryCode) -data2$date_reported <- as.Date(data2$dateRep, format = "%d/%m/%Y" ) -data2$continent <- as.factor(data2$continentExp) -data2$population_2019 <- data2$popData2019 - - - -covid19 <- - data2 %>% - select(date_reported, continent, countries_and_territories, - country_territory_code, population_2019, cases, deaths) - - -usethis::use_data(covid19, compress="xz", overwrite = TRUE) - - -# ideas: -# 4-day population rate; -# timeseries plots -# forecasting -# mapping - - -data(covid) - -library(dplyr) -library(ggplot2) -library(scales) - -# Create a plot of the performance for England over time -covid %>% - filter(countries_and_territories == c( "United_Kingdom", "Italy", "France", "Germany", "Spain")) %>% - ggplot(aes(x=date_reported, y= cases, col=countries_and_territories)) + - geom_line()+ - scale_color_discrete("Country") + - scale_y_continuous(labels=comma)+ - labs(y="Cases", x="Date", title="Coivd-19 cases for selected countries" - , alt="A plot of covid-19 cases in France, Germany, Italy, Spain & the UK")+ - theme_minimal() - - - - - -rm(covid19) -data("covid19") diff --git a/working_files/mortalityMonthlyONS.R b/working_files/mortalityMonthlyONS.R deleted file mode 100644 index 9e1a14a..0000000 --- a/working_files/mortalityMonthlyONS.R +++ /dev/null @@ -1,274 +0,0 @@ -library(readxl) -library(janitor) -library(tidyverse) -library(stringi) -library(lubridate) - -# Source and licence acknowledgement - -# This data has been made available through Office of National Statistics under the Open Government -# Licence http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/ - -#https://www.ons.gov.uk/peoplepopulationandcommunity/birthsdeathsandmarriages/deaths/datasets/weeklyprovisionalfiguresondeathsregisteredinenglandandwales - - -# Download data ----------------------------------------------------------- - -# 2020 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fmonthlyfiguresondeathsregisteredbyareaofusualresidence%2f2020/publishedoutputfebruary20202.xls", - destfile = "Monthly2020Mortality.xls", - method = "wininet", - mode = "wb") - -# 2019 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fmonthlyfiguresondeathsregisteredbyareaofusualresidence%2f2019/publishedoutputdecember2019.xls", - destfile = "Monthly2019Mortality.xls", - method = "wininet", - mode = "wb") - -# 2018 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fmonthlyfiguresondeathsregisteredbyareaofusualresidence%2f2018/publishedannual2018.xls", - destfile = "Monthly2018Mortality.xls", - method = "wininet", - mode = "wb") - -# 2017 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fmonthlyfiguresondeathsregisteredbyareaofusualresidence%2f2017/publishedoutputannual2017final.xls", - destfile = "Monthly2017Mortality.xls", - method = "wininet", - mode = "wb") - -# 2016 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fmonthlyfiguresondeathsregisteredbyareaofusualresidence%2f2016/publishedoutput2016final.xls", - destfile = "Monthly2016Mortality.xls", - method = "wininet", - mode = "wb") - -# 2015 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fmonthlyfiguresondeathsregisteredbyareaofusualresidence%2f2015/publishedoutput2015final.xls", - destfile = "Monthly2015Mortality.xls", - method = "wininet", - mode = "wb") - -# 2014 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fmonthlyfiguresondeathsregisteredbyareaofusualresidence%2f2014/publishedoutput2014finaltcm774115982.xls", - destfile = "Monthly2014Mortality.xls", - method = "wininet", - mode = "wb") - -# 2013 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fmonthlyfiguresondeathsregisteredbyareaofusualresidence%2f2013/publishedoutput2013finaltcm773717241.xls", - destfile = "Monthly2013Mortality.xls", - method = "wininet", - mode = "wb") - -# 2012 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fmonthlyfiguresondeathsregisteredbyareaofusualresidence%2f2012/publishedoutput2012finaltcm773197501.xls", - destfile = "Monthly2012Mortality.xls", - method = "wininet", - mode = "wb") - -# 2011 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fmonthlyfiguresondeathsregisteredbyareaofusualresidence%2f2011/publishedoutput2011finaltcm772738151.xls", - destfile = "Monthly2011Mortality.xls", - method = "wininet", - mode = "wb") - -# 2010 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fmonthlyfiguresondeathsregisteredbyareaofusualresidence%2f2010/publishedoutputfeb021tcm772274383.xls", - destfile = "Monthly2010Mortality.xls", - method = "wininet", - mode = "wb") - -# 2009 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fmonthlyfiguresondeathsregisteredbyareaofusualresidence%2f2009/publishedoutput200tcm772274362.xls", - destfile = "Monthly2009Mortality.xls", - method = "wininet", - mode = "wb") - -# 2008 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fmonthlyfiguresondeathsregisteredbyareaofusualresidence%2f2008/publishedoutput200tcm772274292.xls", - destfile = "Monthly2008Mortality.xls", - method = "wininet", - mode = "wb") - -# 2007 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fmonthlyfiguresondeathsregisteredbyareaofusualresidence%2f2007/publishedoutput200tcm772274233.xls", - destfile = "Monthly2007Mortality.xls", - method = "wininet", - mode = "wb") - -# 2006 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fmonthlyfiguresondeathsregisteredbyareaofusualresidence%2f2006/publishedoutput200tcm772274163.xls", - destfile = "Monthly2006Mortality.xls", - method = "wininet", - mode = "wb") - - -# Extract all worksheets to individual csv 2010-2019 ------------------------------------------------------------- - -files_list <- list.files(path = "Working files", - pattern = "Monthly", - full.names = TRUE) - - -read_then_csv <- function(sheet, path) { - pathbase <- path %>% - basename() %>% - tools::file_path_sans_ext() - path %>% - read_excel(sheet = sheet) %>% - write_csv(paste0(pathbase, "-", sheet, ".csv")) -} - - -for(j in 1:length(files_list)){ - - path <- paste0(files_list[j]) - - path %>% - excel_sheets() %>% - set_names() %>% - map(read_then_csv, path = path) -} - -# Extract all worksheets to individual csv 2020 ------------------------------------------------------------- - -files_list <- list.files(path = "Working files", - pattern = "*.xls", - full.names = TRUE) - - -read_then_csv <- function(sheet, path) { - pathbase <- path %>% - basename() %>% - tools::file_path_sans_ext() - path %>% - read_excel(sheet = sheet) %>% - write_csv(paste0(pathbase, "-", sheet, ".csv")) -} - - -for(j in 1:length(files_list)){ - - path <- paste0(files_list[j]) - - path %>% - excel_sheets() %>% - set_names() %>% - map(read_then_csv, path = path) -} - - -# Reload just figure worksheet ------------------------------------- - -# From - -files_list_sheets <- list.files(path = "Working files/Monthly", - pattern = "Figures", - full.names = TRUE - ) - -for(i in files_list_sheets) { - - x <- read_csv((i), col_types = cols(.default = col_character())) - - assign(i, x) -} - -# Format data 2006 - 2010 ----------------------------------------------------------- - -formatFunction <- function(file){ - -ONS <- file %>% - clean_names %>% - remove_empty(c("rows","cols")) %>% - mutate(category = coalesce(x2, x3, x4), - category = case_when(str_detect(category, "TOTAL REGISTRATIONS") ~ "TOTAL REGISTRATIONS", - TRUE ~ category)) %>% - select(category, everything()) %>% - rename_at(vars(starts_with("Monthly")), ~("codes")) %>% - filter(!codes %in% c('Footnotes:', - '1')) %>% - select(-x2, -x3, -x4) %>% - mutate(category = case_when(is.na(category) ~ 'category', - TRUE ~ category), - codes = case_when(str_detect(codes, "Area Codes") ~ "area_codes", - TRUE ~ codes)) - - - - # Push date row to column names - - onsFormattedJanitor <- row_to_names(ONS, 1) - - x <- onsFormattedJanitor %>% - pivot_longer(cols = -category:-area_codes, - names_to = "dates", - values_to = "counts") - -return(x) - -} - -Mortality2006 <- formatFunction(`Working files/Monthly/Monthly2006Mortality-Figures for 2006.csv`) -Mortality2007 <- formatFunction(`Working files/Monthly/Monthly2007Mortality-Figures for 2007.csv`) -Mortality2008 <- formatFunction(`Working files/Monthly/Monthly2008Mortality-Figures for 2008.csv`) -Mortality2009 <- formatFunction(`Working files/Monthly/Monthly2009Mortality-Figures for 2009.csv`) -Mortality2010 <- formatFunction(`Working files/Monthly/Monthly2010Mortality-Figures for 2010.csv`) - -# Different format for 2011 - -Mortality2011 <- formatFunction(`Working files/Monthly/Monthly2011Mortality-Figures for 2011.csv`) -Mortality2012 <- formatFunction(`Working files/Monthly/Monthly2012Mortality-Figures for 2012.csv`) -Mortality2013 <- formatFunction(`Working files/Monthly/Monthly2013Mortality-Figures for 2013.csv`) -Mortality2014 <- formatFunction(`Working files/Monthly/Monthly2014Mortality-Figures for 2014.csv`) -Mortality2015 <- formatFunction(`Working files/Monthly/Monthly2015Mortality-Figures for 2015.csv`) -Mortality2016 <- formatFunction(`Working files/Monthly/Monthly2016Mortality-Figures for 2016.csv`) -Mortality2017 <- formatFunction(`Working files/Monthly/Monthly2017Mortality-Figures for 2017.csv`) -Mortality2018 <- formatFunction(`Working files/Monthly/Monthly2018Mortality-Figures for 2018.csv`) -Mortality2019 <- formatFunction(`Working files/Monthly/Monthly2019Mortality-Figures for 2019.csv`) -Mortality2020 <- formatFunction(`Working files/Monthly/Monthly2020Mortality-Figures for 2020.csv`) - -# Bind together ----------------------------------------------------------- - -ons_mortality_monthly <- do.call("rbind", list( - Mortality2006, - Mortality2007, - Mortality2008, - Mortality2009, - Mortality2010, - Mortality2011, - Mortality2012, - Mortality2013, - Mortality2014, - Mortality2015, - Mortality2016, - Mortality2017, - Mortality2018, - Mortality2019, - Mortality2020)) - - - # Save as rda file - - save(ons_mortality_monthly, file = "data/ons_mortality_monthly.rda") - - # Save as an csv file - - write_csv(ons_mortality_monthly, file = "`Working files`/ons_mortality_monthly.csv") diff --git a/working_files/mortality_ONS.R b/working_files/mortality_ONS.R deleted file mode 100644 index f507c56..0000000 --- a/working_files/mortality_ONS.R +++ /dev/null @@ -1,359 +0,0 @@ -library(readxl) -library(janitor) -library(tidyverse) -library(stringi) -library(lubridate) - -# Source and licence acknowledgement - -# This data has been made available through Office of National Statistics under the Open Government -# Licence http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/ - -#https://www.ons.gov.uk/peoplepopulationandcommunity/birthsdeathsandmarriages/deaths/datasets/weeklyprovisionalfiguresondeathsregisteredinenglandandwales - - -# Download data ----------------------------------------------------------- - -# 2019 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fweeklyprovisionalfiguresondeathsregisteredinenglandandwales%2f2019/publishedweek522019.xls", - destfile = "2019Mortality.xls", - method = "wininet", - mode = "wb") - -# 2018 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fweeklyprovisionalfiguresondeathsregisteredinenglandandwales%2f2018/publishedweek522018withupdatedrespiratoryrow.xls", - destfile = "2018Mortality.xls", - method = "wininet", - mode = "wb") - -# 2017 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fweeklyprovisionalfiguresondeathsregisteredinenglandandwales%2f2017/publishedweek522017.xls", - destfile = "2017Mortality.xls", - method = "wininet", - mode = "wb") - -# 2016 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fweeklyprovisionalfiguresondeathsregisteredinenglandandwales%2f2016/publishedweek522016.xls", - destfile = "2016Mortality.xls", - method = "wininet", - mode = "wb") - -# 2015 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fweeklyprovisionalfiguresondeathsregisteredinenglandandwales%2f2015/publishedweek2015.xls", - destfile = "2015Mortality.xls", - method = "wininet", - mode = "wb") - -# 2014 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fweeklyprovisionalfiguresondeathsregisteredinenglandandwales%2f2014/publishedweek2014.xls", - destfile = "2014Mortality.xls", - method = "wininet", - mode = "wb") - -# 2013 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fweeklyprovisionalfiguresondeathsregisteredinenglandandwales%2f2013/publishedweek2013.xls", - destfile = "2013Mortality.xls", - method = "wininet", - mode = "wb") - -# 2012 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fweeklyprovisionalfiguresondeathsregisteredinenglandandwales%2f2012/publishedweek2012.xls", - destfile = "2012Mortality.xls", - method = "wininet", - mode = "wb") - -# 2011 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fweeklyprovisionalfiguresondeathsregisteredinenglandandwales%2f2011/publishedweek2011.xls", - destfile = "2011Mortality.xls", - method = "wininet", - mode = "wb") - -# 2010 -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fweeklyprovisionalfiguresondeathsregisteredinenglandandwales%2f2010/publishedweek2010.xls", - destfile = "2010Mortality.xls", - method = "wininet", - mode = "wb") - - -# Extract all worksheets to individual csv 2010-2019 ------------------------------------------------------------- - -files_list <- list.files(path = "working_files", - pattern = "*.xls", - full.names = TRUE) - - -read_then_csv <- function(sheet, path) { - pathbase <- path %>% - basename() %>% - tools::file_path_sans_ext() - path %>% - read_excel(sheet = sheet) %>% - write_csv(paste0(pathbase, "-", sheet, ".csv")) -} - - -for(j in 1:length(files_list)){ - - path <- paste0(files_list[j]) - - path %>% - excel_sheets() %>% - set_names() %>% - map(read_then_csv, path = path) -} - -# Extract all worksheets to individual csv 2020 ------------------------------------------------------------- - -files_list <- list.files(path = "working_files", - pattern = "*.xlsx", - full.names = TRUE) - - -read_then_csv <- function(sheet, path) { - pathbase <- path %>% - basename() %>% - tools::file_path_sans_ext() - path %>% - read_excel(sheet = sheet) %>% - write_csv(paste0(pathbase, "-", sheet, ".csv")) -} - - -for(j in 1:length(files_list)){ - - path <- paste0(files_list[j]) - - path %>% - excel_sheets() %>% - set_names() %>% - map(read_then_csv, path = path) -} - - -# Reload just weekly figure worksheet ------------------------------------- - -# From 2010 to 2015 the tab name was Weekly Figures then it changed capitisation to Weekly figures - -files_list_sheets <- list.files(path = "working_files", - pattern = "Weekly", - full.names = TRUE - ) - -for(i in files_list_sheets) { - - x <- read_csv((i), col_types = cols(.default = col_character())) - - assign(i, x) -} - - - -# Repeated code ----------------------------------------------------------- - -remove_lookup <- c('week over the previous five years1', - 'Deaths by underlying cause2,3', - 'Footnotes', - '1 This average is based on the actual number of death registrations recorded for each corresponding week over the previous five years. Moveable public holidays, when register offices are closed, affect the number of registrations made in the published weeks and in the corresponding weeks in previous years.', - '2 Counts of deaths by underlying cause exclude deaths at age under 28 days.', - '3 Coding of deaths by underlying cause for the latest week is not yet complete.', - "4Does not include deaths where age is either missing or not yet fully coded. For this reason counts of 'Persons', 'Males' and 'Females' may not sum to 'Total Deaths, all ages'.", - '5 Does not include deaths of those resident outside England and Wales or those records where the place of residence is either missing or not yet fully coded. For this reason counts for "Deaths by Region of usual residence" may not sum to "Total deaths, all ages".', - 'Source: Office for National Statistics', - 'Deaths by age group' -) - -# Format data 2010 - 2015 ----------------------------------------------------------- - -formatFunction <- function(file){ - -ONS <- file %>% - clean_names %>% - remove_empty(c("rows","cols")) %>% - filter(!contents %in% remove_lookup) %>% - mutate(Category = case_when(is.na(x2) & str_detect(contents, "Region") ~ "Region", - is.na(x2) & str_detect(contents, "Persons") ~ "Persons", - is.na(x2) & str_detect(contents, "Females") ~ "Females", - is.na(x2) & str_detect(contents, "Males") ~ "Males") - ) %>% - select(contents, Category, everything()) %>% - fill(Category) %>% - filter(!str_detect(contents, "Persons"), - !str_detect(contents, "Males"), - !str_detect(contents, "Females")) %>% - unite("Categories", Category, contents) %>% - filter(Categories != 'Region_Deaths by Region of usual residence 5') %>% - mutate(Categories = case_when(str_detect(Categories, "NA_") ~ str_replace(Categories, "NA_", ""), - TRUE ~ Categories)) - -# Push date row to column names - -onsFormattedJanitor <- row_to_names(ONS, 3) - -# Move to long form and further formatting - -x <- onsFormattedJanitor %>% - pivot_longer(cols = -`Week ended`, - names_to = "allDates", - values_to = "counts") %>% - mutate(realDate = dmy(allDates), - ExcelSerialDate = case_when(stri_length(allDates) == 5 ~ excel_numeric_to_date(as.numeric(allDates), date_system = "modern")), - date = case_when(is.na(realDate) ~ ExcelSerialDate, - TRUE ~ realDate)) %>% - group_by(`Week ended`) %>% - mutate(week_no = row_number()) %>% - ungroup() %>% - rename(Category = `Week ended`) %>% - mutate(category_1 = case_when(str_detect(Category, ",") ~ - substr(Category,1,str_locate(Category, ",") -1), - str_detect(Category, ":") ~ - substr(Category,1,str_locate(Category, ":") -1), - str_detect(Category, "_") ~ - substr(Category,1,str_locate(Category, "_") -1), - str_detect(Category, "respiratory") ~ - "All respiratory diseases (ICD-10 J00-J99) ICD-10"), - category_2 = case_when(str_detect(Category, ",") ~ - substr(Category,str_locate(Category, ", ") +2, str_length(Category)), - str_detect(Category, ":") ~ - substr(Category,str_locate(Category, ": ") +2, str_length(Category)), - str_detect(Category, "_") ~ - substr(Category,str_locate(Category, "_") +1, str_length(Category)), - str_detect(Category, "respiratory") ~ - substr(Category,str_locate(Category, "v"), str_length(Category)) ), - category_2 = recode(category_2, - "average of corresponding" = "average of same week over 5 years")) %>% - select(category_1, - category_2, - counts, - date, - week_no - ) %>% - filter(!is.na(counts), - counts != ":") %>% - fill(category_1) - - -return(x) - -} - -Mortality2010 <- formatFunction(`Working files/Weekly/2010Mortality-Weekly Figures 2010.csv`) -Mortality2011 <- formatFunction(`Working files/Weekly/2011Mortality-Weekly Figures 2011.csv`) %>% - mutate(category_2 = case_when(is.na(category_2) & category_1 == "All respiratory diseases (ICD-10 J00-J99) ICD-10" ~ "v 2010", - TRUE ~ category_2)) - -Mortality2012 <- formatFunction(`Working files/Weekly/2012Mortality-Weekly Figures 2012.csv`) -Mortality2013 <- formatFunction(`Working files/Weekly/2013Mortality-Weekly Figures 2013.csv`) -Mortality2014 <- formatFunction(`Working files/Weekly/2014Mortality-Weekly Figures 2014.csv`) -Mortality2015 <- formatFunction(`Working files/Weekly/2015Mortality-Weekly Figures 2015.csv`) - - -# Format data 2016 - 2019 ------------------------------------------------- - -formatFunction2016 <- function(file){ - - ONS <- file %>% - clean_names %>% - mutate(x2 = case_when(is.na(x2) ~ contents, - TRUE ~ x2)) %>% - remove_empty(c("rows","cols")) %>% - select(-contents) %>% - filter(!x2 %in% remove_lookup) %>% - mutate(Category = case_when(is.na(x3) & str_detect(x2, "region") ~ "Region", - is.na(x3) & str_detect(x2, "Persons") ~ "Persons", - is.na(x3) & str_detect(x2, "Females") ~ "Females", - is.na(x3) & str_detect(x2, "Males") ~ "Males", - TRUE ~ NA_character_) - ) %>% - select(x2, Category, everything()) %>% - fill(Category) %>% - filter(!str_detect(x2, "Persons"), - !str_detect(x2, "Males"), - !str_detect(x2, "Females")) %>% - unite("Categories", Category, x2) %>% - filter(Categories != 'Region_Deaths by Region of usual residence 5') %>% - mutate(Categories = case_when(str_detect(Categories, "NA_") ~ str_replace(Categories, "NA_", ""), - TRUE ~ Categories)) - - # Push date row to column names - - onsFormattedJanitor <- row_to_names(ONS, 3) - - # Move to long form and further formatting - - x <- onsFormattedJanitor %>% - pivot_longer(cols = -`Week ended`, - names_to = "allDates", - values_to = "counts") %>% - mutate(realDate = dmy(allDates), - ExcelSerialDate = case_when(stri_length(allDates) == 5 ~ excel_numeric_to_date(as.numeric(allDates), date_system = "modern")), - date = case_when(is.na(realDate) ~ ExcelSerialDate, - TRUE ~ realDate)) %>% - group_by(`Week ended`) %>% - mutate(week_no = row_number()) %>% - ungroup() %>% - rename(Category = `Week ended`) %>% - mutate(category_1 = case_when(str_detect(Category, ",") ~ - substr(Category,1,str_locate(Category, ",") -1), - str_detect(Category, ":") ~ - substr(Category,1,str_locate(Category, ":") -1), - str_detect(Category, "_") ~ - substr(Category,1,str_locate(Category, "_") -1), - str_detect(Category, "respiratory") ~ - "All respiratory diseases (ICD-10 J00-J99) ICD-10"), - category_2 = case_when(str_detect(Category, ",") ~ - substr(Category,str_locate(Category, ", ") +2, str_length(Category)), - str_detect(Category, ":") ~ - substr(Category,str_locate(Category, ": ") +2, str_length(Category)), - str_detect(Category, "_") ~ - substr(Category,str_locate(Category, "_") +1, str_length(Category)), - str_detect(Category, "respiratory") ~ - substr(Category,str_locate(Category, "v"), str_length(Category)) ), - category_2 = recode(category_2, - "average of corresponding" = "average of same week over 5 years")) %>% - select(category_1, - category_2, - counts, - date, - week_no - ) %>% - filter(!is.na(counts)) - - return(x) - -} - - -Mortality2016 <- formatFunction2016(`Working files/Weekly/2016Mortality-Weekly figures 2016.csv`) -Mortality2017 <- formatFunction2016(`Working files/Weekly/2017Mortality-Weekly figures 2017.csv`) -Mortality2018 <- formatFunction2016(`Working files/Weekly/2018Mortality-Weekly figures 2018.csv`) -Mortality2019 <- formatFunction2016(`Working files/Weekly/2019Mortality-Weekly figures 2019.csv`) - - -# Bind together ----------------------------------------------------------- - -ons_mortality <- do.call("rbind", list( - Mortality2010, - Mortality2011, - Mortality2012, - Mortality2013, - Mortality2014, - Mortality2015, - Mortality2016, - Mortality2017, - Mortality2018, - Mortality2019)) %>% - mutate(counts = as.numeric(counts)) - - # Save as rda file - - save(ons_mortality, file = "data/ons_mortality.rda") diff --git a/working_files/mortality_ONS_2020.R b/working_files/mortality_ONS_2020.R deleted file mode 100644 index e81018e..0000000 --- a/working_files/mortality_ONS_2020.R +++ /dev/null @@ -1,193 +0,0 @@ -library(readxl) -library(janitor) -library(tidyverse) -library(stringi) -library(lubridate) - -# Source and licence acknowledgement - -# This data has been made available through Office of National Statistics under the Open Government -# Licence http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/ - -#https://www.ons.gov.uk/peoplepopulationandcommunity/birthsdeathsandmarriages/deaths/datasets/weeklyprovisionalfiguresondeathsregisteredinenglandandwales - - -# Download data ----------------------------------------------------------- - -# 2020 Format changed to xlsx from xls - -download.file( - "https://www.ons.gov.uk/file?uri=%2fpeoplepopulationandcommunity%2fbirthsdeathsandmarriages%2fdeaths%2fdatasets%2fweeklyprovisionalfiguresondeathsregisteredinenglandandwales%2f2020/publishedweek152020corrected.xlsx", - destfile = "2020Mortality.xlsx", - method = "wininet", - mode = "wb") - -# Extract all worksheets to individual csv 2020 ------------------------------------------------------------- - -files_list <- list.files(path = "Working files/Weekly", - pattern = "*.xlsx", - full.names = TRUE) - - -read_then_csv <- function(sheet, path) { - pathbase <- path %>% - basename() %>% - tools::file_path_sans_ext() - path %>% - read_excel(sheet = sheet) %>% - write_csv(paste0(pathbase, "-", sheet, ".csv")) -} - - -for(j in 1:length(files_list)){ - - path <- paste0(files_list[j]) - - path %>% - excel_sheets() %>% - set_names() %>% - map(read_then_csv, path = path) -} - -# Reload just weekly figure worksheet ------------------------------------- - -# From 2010 to 2015 the tab name was Weekly Figures then it changed capitisation to Weekly figures - -files_list_sheets <- list.files(path = "Working files/Weekly", - pattern = "Weekly figures 2020", - full.names = TRUE -) - -for(i in files_list_sheets) { - - x <- read_csv((i), col_types = cols(.default = col_character())) - - assign(i, x) -} - -# Repeated code ----------------------------------------------------------- - -remove_lookup <- c('week over the previous five years1', - 'Deaths by underlying cause2,3', - 'Footnotes', - '1 This average is based on the actual number of death registrations recorded for each corresponding week over the previous five years. Moveable public holidays, when register offices are closed, affect the number of registrations made in the published weeks and in the corresponding weeks in previous years.', - '2 Counts of deaths by underlying cause exclude deaths at age under 28 days.', - '3 Coding of deaths by underlying cause for the latest week is not yet complete.', - "4Does not include deaths where age is either missing or not yet fully coded. For this reason counts of 'Persons', 'Males' and 'Females' may not sum to 'Total Deaths, all ages'.", - '5 Does not include deaths of those resident outside England and Wales or those records where the place of residence is either missing or not yet fully coded. For this reason counts for "Deaths by Region of usual residence" may not sum to "Total deaths, all ages".', - 'Source: Office for National Statistics', - 'Deaths by age group' -) - -# Format data 2020 ------------------------------------------------- - -# Format data skip line is 2 -# Added formatting for age bands in line with historical data - -formatFunction2020 <- function(file){ - - ONS <- file %>% - clean_names %>% - mutate(x2 = case_when(is.na(x2) ~ contents, - TRUE ~ x2), - x2 = recode(x2, "<1" = "Under 1 year")) %>% - remove_empty(c("rows","cols")) %>% - select(-contents) %>% - filter(!x2 %in% c('week over the previous five years1', - 'Deaths by underlying cause2,3', - 'Footnotes', - '1 This average is based on the actual number of death registrations recorded for each corresponding week over the previous five years. Moveable public holidays, when register offices are closed, affect the number of registrations made in the published weeks and in the corresponding weeks in previous years.', - '2 Counts of deaths by underlying cause exclude deaths at age under 28 days.', - '3 Coding of deaths by underlying cause for the latest week is not yet complete.', - "4Does not include deaths where age is either missing or not yet fully coded. For this reason counts of 'Persons', 'Males' and 'Females' may not sum to 'Total Deaths, all ages'.", - '5 Does not include deaths of those resident outside England and Wales or those records where the place of residence is either missing or not yet fully coded. For this reason counts for "Deaths by Region of usual residence" may not sum to "Total deaths, all ages".', - 'Source: Office for National Statistics', - 'Deaths by age group' - )) %>% - mutate(Category = case_when(#is.na(x3) & str_detect(x2, " 4") ~ str_replace(x2, " 4", ""), - is.na(x3) & str_detect(x2, "region") ~ "Region", - is.na(x3) & str_detect(x2, "Persons") ~ "Persons", - is.na(x3) & str_detect(x2, "Females") ~ "Females", - is.na(x3) & str_detect(x2, "Males") ~ "Males", - TRUE ~ NA_character_) - ) %>% - select(x2, Category, everything()) %>% - fill(Category) %>% - filter(!str_detect(x2, 'Persons'), - !str_detect(x2, 'Males'), - !str_detect(x2, 'Females')) %>% - unite("Categories", Category, x2) %>% - filter(Categories != 'Region_Deaths by Region of usual residence 5') %>% - mutate(Categories = case_when(str_detect(Categories, "NA_") ~ str_replace(Categories, "NA_", ""), - str_detect(Categories, "Week ended") ~ "Week ended", - str_detect(Categories, "Week number") ~ "Week number", - TRUE ~ Categories) - ) %>% - filter(!is.na(x3)) %>% - mutate(Categories = case_when(str_detect(Categories, "previous 5 years") ~ "average of same week over 5 years", - TRUE ~ Categories)) - - # Push date row to column names - - onsFormattedJanitor <- row_to_names(ONS, 2) - - x <- onsFormattedJanitor %>% - pivot_longer(cols = -`Week ended`, - names_to = "allDates", - values_to = "counts") %>% - mutate(realDate = dmy(allDates), - ExcelSerialDate = case_when(stri_length(allDates) == 5 ~ excel_numeric_to_date(as.numeric(allDates), date_system = "modern")), - date = case_when(is.na(realDate) ~ ExcelSerialDate, - TRUE ~ realDate)) %>% - group_by(`Week ended`) %>% - mutate(week_no = row_number()) %>% - ungroup() %>% - rename(Category = `Week ended`) %>% - mutate(category_1 = case_when(str_detect(Category, ",") ~ - substr(Category,1,str_locate(Category, ",") -1), - str_detect(Category, ":") ~ - substr(Category,1,str_locate(Category, ":") -1), - str_detect(Category, "_") ~ - substr(Category,1,str_locate(Category, "_") -1), - str_detect(Category, "respiratory") ~ - "All respiratory diseases (ICD-10 J00-J99) ICD-10", - TRUE ~ Category), - category_2 = case_when(str_detect(Category, ",") ~ - substr(Category,str_locate(Category, ", ") +2, str_length(Category)), - str_detect(Category, ":") ~ - substr(Category,str_locate(Category, ": ") +2, str_length(Category)), - str_detect(Category, "_") ~ - substr(Category,str_locate(Category, "_") +1, str_length(Category)), - str_detect(Category, "respiratory") ~ - substr(Category,str_locate(Category, "v"), str_length(Category)), - TRUE ~ NA_character_) - ) %>% - select(category_1, - category_2, - counts, - date, - week_no - ) %>% - filter(!is.na(counts)) - - return(x) - -} - -Mortality2020 <- formatFunction2020(`Working files/Weekly/2020Mortality-Weekly figures 2020.csv`) - - -# Bind together ----------------------------------------------------------- - -load("data/ons_mortality.rda") - -ons_mortality <- do.call("rbind", list(ons_mortality, - Mortality2020)) - -# Save as rda file - -save(ons_mortality, file = "Working files/ons_mortality.rda") - -# Save as a csv file - -write_csv(ons_mortality, "Working files/ons_mortality.csv") diff --git a/working_files/ons_mortality.csv b/working_files/ons_mortality.csv deleted file mode 100644 index c7070a2..0000000 --- a/working_files/ons_mortality.csv +++ /dev/null @@ -1,18804 +0,0 @@ -category_1,category_2,counts,date,week_no -Total deaths,all ages,12968,2010-01-08,1 -Total deaths,all ages,12541,2010-01-15,2 -Total deaths,all ages,11762,2010-01-22,3 -Total deaths,all ages,11056,2010-01-29,4 -Total deaths,all ages,10524,2010-02-05,5 -Total deaths,all ages,10117,2010-02-12,6 -Total deaths,all ages,10102,2010-02-19,7 -Total deaths,all ages,10295,2010-02-26,8 -Total deaths,all ages,9981,2010-03-05,9 -Total deaths,all ages,9792,2010-03-12,10 -Total deaths,all ages,9729,2010-03-19,11 -Total deaths,all ages,9631,2010-03-26,12 -Total deaths,all ages,8004,2010-04-02,13 -Total deaths,all ages,9756,2010-04-09,14 -Total deaths,all ages,9892,2010-04-16,15 -Total deaths,all ages,9449,2010-04-23,16 -Total deaths,all ages,9503,2010-04-30,17 -Total deaths,all ages,8343,2010-05-07,18 -Total deaths,all ages,9483,2010-05-14,19 -Total deaths,all ages,9190,2010-05-21,20 -Total deaths,all ages,9452,2010-05-28,21 -Total deaths,all ages,8178,2010-06-04,22 -Total deaths,all ages,9259,2010-06-11,23 -Total deaths,all ages,8513,2010-06-18,24 -Total deaths,all ages,8461,2010-06-25,25 -Total deaths,all ages,8973,2010-07-02,26 -Total deaths,all ages,8627,2010-07-09,27 -Total deaths,all ages,8541,2010-07-16,28 -Total deaths,all ages,8261,2010-07-23,29 -Total deaths,all ages,8257,2010-07-30,30 -Total deaths,all ages,8467,2010-08-06,31 -Total deaths,all ages,8318,2010-08-13,32 -Total deaths,all ages,8584,2010-08-20,33 -Total deaths,all ages,8635,2010-08-27,34 -Total deaths,all ages,7708,2010-09-03,35 -Total deaths,all ages,8961,2010-09-10,36 -Total deaths,all ages,8727,2010-09-17,37 -Total deaths,all ages,8943,2010-09-24,38 -Total deaths,all ages,8759,2010-10-01,39 -Total deaths,all ages,9195,2010-10-08,40 -Total deaths,all ages,9218,2010-10-15,41 -Total deaths,all ages,9286,2010-10-22,42 -Total deaths,all ages,9275,2010-10-29,43 -Total deaths,all ages,9668,2010-11-05,44 -Total deaths,all ages,9406,2010-11-12,45 -Total deaths,all ages,9437,2010-11-19,46 -Total deaths,all ages,9473,2010-11-26,47 -Total deaths,all ages,9220,2010-12-03,48 -Total deaths,all ages,11193,2010-12-10,49 -Total deaths,all ages,10880,2010-12-17,50 -Total deaths,all ages,11484,2010-12-24,51 -Total deaths,all ages,9689,2010-12-31,52 -Total deaths,average of same week over 5 years,12050,2010-01-08,1 -Total deaths,average of same week over 5 years,12600,2010-01-15,2 -Total deaths,average of same week over 5 years,11692.2,2010-01-22,3 -Total deaths,average of same week over 5 years,11069.2,2010-01-29,4 -Total deaths,average of same week over 5 years,10840.4,2010-02-05,5 -Total deaths,average of same week over 5 years,10602.4,2010-02-12,6 -Total deaths,average of same week over 5 years,10774.8,2010-02-19,7 -Total deaths,average of same week over 5 years,10715.2,2010-02-26,8 -Total deaths,average of same week over 5 years,10793.8,2010-03-05,9 -Total deaths,average of same week over 5 years,10572.8,2010-03-12,10 -Total deaths,average of same week over 5 years,10432.2,2010-03-19,11 -Total deaths,average of same week over 5 years,9646.8,2010-03-26,12 -Total deaths,average of same week over 5 years,10315,2010-04-02,13 -Total deaths,average of same week over 5 years,10013.8,2010-04-09,14 -Total deaths,average of same week over 5 years,9696,2010-04-16,15 -Total deaths,average of same week over 5 years,10259.8,2010-04-23,16 -Total deaths,average of same week over 5 years,10025,2010-04-30,17 -Total deaths,average of same week over 5 years,9378.8,2010-05-07,18 -Total deaths,average of same week over 5 years,9090,2010-05-14,19 -Total deaths,average of same week over 5 years,9474.8,2010-05-21,20 -Total deaths,average of same week over 5 years,9384.2,2010-05-28,21 -Total deaths,average of same week over 5 years,8464.6,2010-06-04,22 -Total deaths,average of same week over 5 years,9332.4,2010-06-11,23 -Total deaths,average of same week over 5 years,9072.8,2010-06-18,24 -Total deaths,average of same week over 5 years,9013.8,2010-06-25,25 -Total deaths,average of same week over 5 years,8791.6,2010-07-02,26 -Total deaths,average of same week over 5 years,8914,2010-07-09,27 -Total deaths,average of same week over 5 years,8745.2,2010-07-16,28 -Total deaths,average of same week over 5 years,8762.8,2010-07-23,29 -Total deaths,average of same week over 5 years,8846.2,2010-07-30,30 -Total deaths,average of same week over 5 years,8669.4,2010-08-06,31 -Total deaths,average of same week over 5 years,8611.4,2010-08-13,32 -Total deaths,average of same week over 5 years,8651.4,2010-08-20,33 -Total deaths,average of same week over 5 years,8683.8,2010-08-27,34 -Total deaths,average of same week over 5 years,8100.8,2010-09-03,35 -Total deaths,average of same week over 5 years,8596.4,2010-09-10,36 -Total deaths,average of same week over 5 years,8654,2010-09-17,37 -Total deaths,average of same week over 5 years,8652.4,2010-09-24,38 -Total deaths,average of same week over 5 years,8827,2010-10-01,39 -Total deaths,average of same week over 5 years,8894.6,2010-10-08,40 -Total deaths,average of same week over 5 years,9124.6,2010-10-15,41 -Total deaths,average of same week over 5 years,9192,2010-10-22,42 -Total deaths,average of same week over 5 years,9327.6,2010-10-29,43 -Total deaths,average of same week over 5 years,9420.2,2010-11-05,44 -Total deaths,average of same week over 5 years,9547.8,2010-11-12,45 -Total deaths,average of same week over 5 years,9671.2,2010-11-19,46 -Total deaths,average of same week over 5 years,9856,2010-11-26,47 -Total deaths,average of same week over 5 years,9898.4,2010-12-03,48 -Total deaths,average of same week over 5 years,10175.2,2010-12-10,49 -Total deaths,average of same week over 5 years,10453.6,2010-12-17,50 -Total deaths,average of same week over 5 years,10925,2010-12-24,51 -Total deaths,average of same week over 5 years,8825,2010-12-31,52 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,2345,2010-01-08,1 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,2293,2010-01-15,2 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1955,2010-01-22,3 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1698,2010-01-29,4 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1635,2010-02-05,5 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1566,2010-02-12,6 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1551,2010-02-19,7 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1468,2010-02-26,8 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1412,2010-03-05,9 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1381,2010-03-12,10 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1303,2010-03-19,11 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1290,2010-03-26,12 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1092,2010-04-02,13 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1415,2010-04-09,14 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1305,2010-04-16,15 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1233,2010-04-23,16 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1232,2010-04-30,17 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1144,2010-05-07,18 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1214,2010-05-14,19 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1164,2010-05-21,20 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1315,2010-05-28,21 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1057,2010-06-04,22 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1191,2010-06-11,23 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,988,2010-06-18,24 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,984,2010-06-25,25 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1135,2010-07-02,26 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1074,2010-07-09,27 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,978,2010-07-16,28 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,878,2010-07-23,29 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,903,2010-07-30,30 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,906,2010-08-06,31 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,914,2010-08-13,32 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1046,2010-08-20,33 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,962,2010-08-27,34 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,888,2010-09-03,35 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1032,2010-09-10,36 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1003,2010-09-17,37 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1012,2010-09-24,38 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1068,2010-10-01,39 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1183,2010-10-08,40 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1188,2010-10-15,41 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1232,2010-10-22,42 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1194,2010-10-29,43 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1306,2010-11-05,44 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1274,2010-11-12,45 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1224,2010-11-19,46 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1250,2010-11-26,47 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1215,2010-12-03,48 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1586,2010-12-10,49 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1674,2010-12-17,50 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,2000,2010-12-24,51 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,1916,2010-12-31,52 -Persons,Under 1 year,61,2010-01-08,1 -Persons,Under 1 year,69,2010-01-15,2 -Persons,Under 1 year,66,2010-01-22,3 -Persons,Under 1 year,68,2010-01-29,4 -Persons,Under 1 year,72,2010-02-05,5 -Persons,Under 1 year,79,2010-02-12,6 -Persons,Under 1 year,71,2010-02-19,7 -Persons,Under 1 year,73,2010-02-26,8 -Persons,Under 1 year,55,2010-03-05,9 -Persons,Under 1 year,45,2010-03-12,10 -Persons,Under 1 year,53,2010-03-19,11 -Persons,Under 1 year,61,2010-03-26,12 -Persons,Under 1 year,50,2010-04-02,13 -Persons,Under 1 year,66,2010-04-09,14 -Persons,Under 1 year,63,2010-04-16,15 -Persons,Under 1 year,66,2010-04-23,16 -Persons,Under 1 year,59,2010-04-30,17 -Persons,Under 1 year,59,2010-05-07,18 -Persons,Under 1 year,70,2010-05-14,19 -Persons,Under 1 year,71,2010-05-21,20 -Persons,Under 1 year,78,2010-05-28,21 -Persons,Under 1 year,49,2010-06-04,22 -Persons,Under 1 year,46,2010-06-11,23 -Persons,Under 1 year,72,2010-06-18,24 -Persons,Under 1 year,57,2010-06-25,25 -Persons,Under 1 year,58,2010-07-02,26 -Persons,Under 1 year,61,2010-07-09,27 -Persons,Under 1 year,74,2010-07-16,28 -Persons,Under 1 year,55,2010-07-23,29 -Persons,Under 1 year,68,2010-07-30,30 -Persons,Under 1 year,61,2010-08-06,31 -Persons,Under 1 year,62,2010-08-13,32 -Persons,Under 1 year,46,2010-08-20,33 -Persons,Under 1 year,58,2010-08-27,34 -Persons,Under 1 year,52,2010-09-03,35 -Persons,Under 1 year,54,2010-09-10,36 -Persons,Under 1 year,68,2010-09-17,37 -Persons,Under 1 year,67,2010-09-24,38 -Persons,Under 1 year,68,2010-10-01,39 -Persons,Under 1 year,66,2010-10-08,40 -Persons,Under 1 year,70,2010-10-15,41 -Persons,Under 1 year,46,2010-10-22,42 -Persons,Under 1 year,55,2010-10-29,43 -Persons,Under 1 year,66,2010-11-05,44 -Persons,Under 1 year,58,2010-11-12,45 -Persons,Under 1 year,55,2010-11-19,46 -Persons,Under 1 year,57,2010-11-26,47 -Persons,Under 1 year,51,2010-12-03,48 -Persons,Under 1 year,59,2010-12-10,49 -Persons,Under 1 year,62,2010-12-17,50 -Persons,Under 1 year,64,2010-12-24,51 -Persons,Under 1 year,40,2010-12-31,52 -Persons,01-14,24,2010-01-08,1 -Persons,01-14,29,2010-01-15,2 -Persons,01-14,18,2010-01-22,3 -Persons,01-14,21,2010-01-29,4 -Persons,01-14,18,2010-02-05,5 -Persons,01-14,28,2010-02-12,6 -Persons,01-14,17,2010-02-19,7 -Persons,01-14,27,2010-02-26,8 -Persons,01-14,31,2010-03-05,9 -Persons,01-14,28,2010-03-12,10 -Persons,01-14,24,2010-03-19,11 -Persons,01-14,32,2010-03-26,12 -Persons,01-14,16,2010-04-02,13 -Persons,01-14,19,2010-04-09,14 -Persons,01-14,21,2010-04-16,15 -Persons,01-14,31,2010-04-23,16 -Persons,01-14,19,2010-04-30,17 -Persons,01-14,13,2010-05-07,18 -Persons,01-14,25,2010-05-14,19 -Persons,01-14,22,2010-05-21,20 -Persons,01-14,26,2010-05-28,21 -Persons,01-14,20,2010-06-04,22 -Persons,01-14,14,2010-06-11,23 -Persons,01-14,18,2010-06-18,24 -Persons,01-14,15,2010-06-25,25 -Persons,01-14,22,2010-07-02,26 -Persons,01-14,20,2010-07-09,27 -Persons,01-14,26,2010-07-16,28 -Persons,01-14,19,2010-07-23,29 -Persons,01-14,15,2010-07-30,30 -Persons,01-14,17,2010-08-06,31 -Persons,01-14,20,2010-08-13,32 -Persons,01-14,20,2010-08-20,33 -Persons,01-14,13,2010-08-27,34 -Persons,01-14,13,2010-09-03,35 -Persons,01-14,22,2010-09-10,36 -Persons,01-14,21,2010-09-17,37 -Persons,01-14,19,2010-09-24,38 -Persons,01-14,23,2010-10-01,39 -Persons,01-14,24,2010-10-08,40 -Persons,01-14,28,2010-10-15,41 -Persons,01-14,22,2010-10-22,42 -Persons,01-14,23,2010-10-29,43 -Persons,01-14,21,2010-11-05,44 -Persons,01-14,16,2010-11-12,45 -Persons,01-14,11,2010-11-19,46 -Persons,01-14,23,2010-11-26,47 -Persons,01-14,19,2010-12-03,48 -Persons,01-14,29,2010-12-10,49 -Persons,01-14,23,2010-12-17,50 -Persons,01-14,35,2010-12-24,51 -Persons,01-14,21,2010-12-31,52 -Persons,15-44,299,2010-01-08,1 -Persons,15-44,331,2010-01-15,2 -Persons,15-44,347,2010-01-22,3 -Persons,15-44,336,2010-01-29,4 -Persons,15-44,317,2010-02-05,5 -Persons,15-44,308,2010-02-12,6 -Persons,15-44,329,2010-02-19,7 -Persons,15-44,340,2010-02-26,8 -Persons,15-44,348,2010-03-05,9 -Persons,15-44,334,2010-03-12,10 -Persons,15-44,294,2010-03-19,11 -Persons,15-44,303,2010-03-26,12 -Persons,15-44,230,2010-04-02,13 -Persons,15-44,288,2010-04-09,14 -Persons,15-44,321,2010-04-16,15 -Persons,15-44,333,2010-04-23,16 -Persons,15-44,325,2010-04-30,17 -Persons,15-44,240,2010-05-07,18 -Persons,15-44,335,2010-05-14,19 -Persons,15-44,356,2010-05-21,20 -Persons,15-44,352,2010-05-28,21 -Persons,15-44,244,2010-06-04,22 -Persons,15-44,303,2010-06-11,23 -Persons,15-44,291,2010-06-18,24 -Persons,15-44,311,2010-06-25,25 -Persons,15-44,279,2010-07-02,26 -Persons,15-44,313,2010-07-09,27 -Persons,15-44,291,2010-07-16,28 -Persons,15-44,302,2010-07-23,29 -Persons,15-44,289,2010-07-30,30 -Persons,15-44,355,2010-08-06,31 -Persons,15-44,327,2010-08-13,32 -Persons,15-44,280,2010-08-20,33 -Persons,15-44,278,2010-08-27,34 -Persons,15-44,249,2010-09-03,35 -Persons,15-44,322,2010-09-10,36 -Persons,15-44,320,2010-09-17,37 -Persons,15-44,317,2010-09-24,38 -Persons,15-44,282,2010-10-01,39 -Persons,15-44,315,2010-10-08,40 -Persons,15-44,307,2010-10-15,41 -Persons,15-44,318,2010-10-22,42 -Persons,15-44,323,2010-10-29,43 -Persons,15-44,318,2010-11-05,44 -Persons,15-44,307,2010-11-12,45 -Persons,15-44,319,2010-11-19,46 -Persons,15-44,307,2010-11-26,47 -Persons,15-44,280,2010-12-03,48 -Persons,15-44,338,2010-12-10,49 -Persons,15-44,349,2010-12-17,50 -Persons,15-44,405,2010-12-24,51 -Persons,15-44,218,2010-12-31,52 -Persons,45-64,1570,2010-01-08,1 -Persons,45-64,1465,2010-01-15,2 -Persons,45-64,1392,2010-01-22,3 -Persons,45-64,1300,2010-01-29,4 -Persons,45-64,1308,2010-02-05,5 -Persons,45-64,1239,2010-02-12,6 -Persons,45-64,1276,2010-02-19,7 -Persons,45-64,1315,2010-02-26,8 -Persons,45-64,1230,2010-03-05,9 -Persons,45-64,1259,2010-03-12,10 -Persons,45-64,1307,2010-03-19,11 -Persons,45-64,1227,2010-03-26,12 -Persons,45-64,1035,2010-04-02,13 -Persons,45-64,1242,2010-04-09,14 -Persons,45-64,1276,2010-04-16,15 -Persons,45-64,1243,2010-04-23,16 -Persons,45-64,1220,2010-04-30,17 -Persons,45-64,1119,2010-05-07,18 -Persons,45-64,1262,2010-05-14,19 -Persons,45-64,1165,2010-05-21,20 -Persons,45-64,1205,2010-05-28,21 -Persons,45-64,1080,2010-06-04,22 -Persons,45-64,1292,2010-06-11,23 -Persons,45-64,1182,2010-06-18,24 -Persons,45-64,1145,2010-06-25,25 -Persons,45-64,1161,2010-07-02,26 -Persons,45-64,1203,2010-07-09,27 -Persons,45-64,1174,2010-07-16,28 -Persons,45-64,1200,2010-07-23,29 -Persons,45-64,1075,2010-07-30,30 -Persons,45-64,1211,2010-08-06,31 -Persons,45-64,1086,2010-08-13,32 -Persons,45-64,1144,2010-08-20,33 -Persons,45-64,1160,2010-08-27,34 -Persons,45-64,1045,2010-09-03,35 -Persons,45-64,1176,2010-09-10,36 -Persons,45-64,1206,2010-09-17,37 -Persons,45-64,1131,2010-09-24,38 -Persons,45-64,1160,2010-10-01,39 -Persons,45-64,1214,2010-10-08,40 -Persons,45-64,1315,2010-10-15,41 -Persons,45-64,1205,2010-10-22,42 -Persons,45-64,1198,2010-10-29,43 -Persons,45-64,1215,2010-11-05,44 -Persons,45-64,1221,2010-11-12,45 -Persons,45-64,1185,2010-11-19,46 -Persons,45-64,1198,2010-11-26,47 -Persons,45-64,1199,2010-12-03,48 -Persons,45-64,1396,2010-12-10,49 -Persons,45-64,1466,2010-12-17,50 -Persons,45-64,1463,2010-12-24,51 -Persons,45-64,1254,2010-12-31,52 -Persons,65-74,2049,2010-01-08,1 -Persons,65-74,1860,2010-01-15,2 -Persons,65-74,1781,2010-01-22,3 -Persons,65-74,1666,2010-01-29,4 -Persons,65-74,1588,2010-02-05,5 -Persons,65-74,1596,2010-02-12,6 -Persons,65-74,1560,2010-02-19,7 -Persons,65-74,1600,2010-02-26,8 -Persons,65-74,1547,2010-03-05,9 -Persons,65-74,1552,2010-03-12,10 -Persons,65-74,1572,2010-03-19,11 -Persons,65-74,1566,2010-03-26,12 -Persons,65-74,1256,2010-04-02,13 -Persons,65-74,1603,2010-04-09,14 -Persons,65-74,1646,2010-04-16,15 -Persons,65-74,1525,2010-04-23,16 -Persons,65-74,1564,2010-04-30,17 -Persons,65-74,1379,2010-05-07,18 -Persons,65-74,1497,2010-05-14,19 -Persons,65-74,1525,2010-05-21,20 -Persons,65-74,1616,2010-05-28,21 -Persons,65-74,1371,2010-06-04,22 -Persons,65-74,1527,2010-06-11,23 -Persons,65-74,1497,2010-06-18,24 -Persons,65-74,1437,2010-06-25,25 -Persons,65-74,1497,2010-07-02,26 -Persons,65-74,1376,2010-07-09,27 -Persons,65-74,1404,2010-07-16,28 -Persons,65-74,1359,2010-07-23,29 -Persons,65-74,1377,2010-07-30,30 -Persons,65-74,1434,2010-08-06,31 -Persons,65-74,1386,2010-08-13,32 -Persons,65-74,1425,2010-08-20,33 -Persons,65-74,1462,2010-08-27,34 -Persons,65-74,1292,2010-09-03,35 -Persons,65-74,1539,2010-09-10,36 -Persons,65-74,1476,2010-09-17,37 -Persons,65-74,1455,2010-09-24,38 -Persons,65-74,1440,2010-10-01,39 -Persons,65-74,1455,2010-10-08,40 -Persons,65-74,1467,2010-10-15,41 -Persons,65-74,1495,2010-10-22,42 -Persons,65-74,1462,2010-10-29,43 -Persons,65-74,1581,2010-11-05,44 -Persons,65-74,1507,2010-11-12,45 -Persons,65-74,1540,2010-11-19,46 -Persons,65-74,1502,2010-11-26,47 -Persons,65-74,1516,2010-12-03,48 -Persons,65-74,1736,2010-12-10,49 -Persons,65-74,1642,2010-12-17,50 -Persons,65-74,1796,2010-12-24,51 -Persons,65-74,1514,2010-12-31,52 -Persons,75-84,3952,2010-01-08,1 -Persons,75-84,3883,2010-01-15,2 -Persons,75-84,3501,2010-01-22,3 -Persons,75-84,3359,2010-01-29,4 -Persons,75-84,3123,2010-02-05,5 -Persons,75-84,3002,2010-02-12,6 -Persons,75-84,3015,2010-02-19,7 -Persons,75-84,3106,2010-02-26,8 -Persons,75-84,3003,2010-03-05,9 -Persons,75-84,2917,2010-03-12,10 -Persons,75-84,2895,2010-03-19,11 -Persons,75-84,2870,2010-03-26,12 -Persons,75-84,2385,2010-04-02,13 -Persons,75-84,2958,2010-04-09,14 -Persons,75-84,3058,2010-04-16,15 -Persons,75-84,2821,2010-04-23,16 -Persons,75-84,2857,2010-04-30,17 -Persons,75-84,2574,2010-05-07,18 -Persons,75-84,2973,2010-05-14,19 -Persons,75-84,2689,2010-05-21,20 -Persons,75-84,2861,2010-05-28,21 -Persons,75-84,2416,2010-06-04,22 -Persons,75-84,2727,2010-06-11,23 -Persons,75-84,2530,2010-06-18,24 -Persons,75-84,2502,2010-06-25,25 -Persons,75-84,2644,2010-07-02,26 -Persons,75-84,2688,2010-07-09,27 -Persons,75-84,2582,2010-07-16,28 -Persons,75-84,2533,2010-07-23,29 -Persons,75-84,2464,2010-07-30,30 -Persons,75-84,2557,2010-08-06,31 -Persons,75-84,2478,2010-08-13,32 -Persons,75-84,2604,2010-08-20,33 -Persons,75-84,2531,2010-08-27,34 -Persons,75-84,2316,2010-09-03,35 -Persons,75-84,2684,2010-09-10,36 -Persons,75-84,2534,2010-09-17,37 -Persons,75-84,2651,2010-09-24,38 -Persons,75-84,2564,2010-10-01,39 -Persons,75-84,2785,2010-10-08,40 -Persons,75-84,2703,2010-10-15,41 -Persons,75-84,2766,2010-10-22,42 -Persons,75-84,2861,2010-10-29,43 -Persons,75-84,2851,2010-11-05,44 -Persons,75-84,2829,2010-11-12,45 -Persons,75-84,2856,2010-11-19,46 -Persons,75-84,2932,2010-11-26,47 -Persons,75-84,2764,2010-12-03,48 -Persons,75-84,3336,2010-12-10,49 -Persons,75-84,3193,2010-12-17,50 -Persons,75-84,3465,2010-12-24,51 -Persons,75-84,2861,2010-12-31,52 -Persons,85+,5012,2010-01-08,1 -Persons,85+,4902,2010-01-15,2 -Persons,85+,4654,2010-01-22,3 -Persons,85+,4305,2010-01-29,4 -Persons,85+,4089,2010-02-05,5 -Persons,85+,3864,2010-02-12,6 -Persons,85+,3834,2010-02-19,7 -Persons,85+,3833,2010-02-26,8 -Persons,85+,3765,2010-03-05,9 -Persons,85+,3653,2010-03-12,10 -Persons,85+,3581,2010-03-19,11 -Persons,85+,3554,2010-03-26,12 -Persons,85+,2971,2010-04-02,13 -Persons,85+,3553,2010-04-09,14 -Persons,85+,3496,2010-04-16,15 -Persons,85+,3429,2010-04-23,16 -Persons,85+,3458,2010-04-30,17 -Persons,85+,2955,2010-05-07,18 -Persons,85+,3321,2010-05-14,19 -Persons,85+,3361,2010-05-21,20 -Persons,85+,3310,2010-05-28,21 -Persons,85+,2996,2010-06-04,22 -Persons,85+,3350,2010-06-11,23 -Persons,85+,2923,2010-06-18,24 -Persons,85+,2994,2010-06-25,25 -Persons,85+,3306,2010-07-02,26 -Persons,85+,2964,2010-07-09,27 -Persons,85+,2988,2010-07-16,28 -Persons,85+,2791,2010-07-23,29 -Persons,85+,2965,2010-07-30,30 -Persons,85+,2828,2010-08-06,31 -Persons,85+,2958,2010-08-13,32 -Persons,85+,3063,2010-08-20,33 -Persons,85+,3123,2010-08-27,34 -Persons,85+,2741,2010-09-03,35 -Persons,85+,3164,2010-09-10,36 -Persons,85+,3093,2010-09-17,37 -Persons,85+,3299,2010-09-24,38 -Persons,85+,3218,2010-10-01,39 -Persons,85+,3334,2010-10-08,40 -Persons,85+,3328,2010-10-15,41 -Persons,85+,3433,2010-10-22,42 -Persons,85+,3350,2010-10-29,43 -Persons,85+,3616,2010-11-05,44 -Persons,85+,3468,2010-11-12,45 -Persons,85+,3471,2010-11-19,46 -Persons,85+,3454,2010-11-26,47 -Persons,85+,3391,2010-12-03,48 -Persons,85+,4298,2010-12-10,49 -Persons,85+,4145,2010-12-17,50 -Persons,85+,4255,2010-12-24,51 -Persons,85+,3778,2010-12-31,52 -Males,Under 1 year,25,2010-01-08,1 -Males,Under 1 year,40,2010-01-15,2 -Males,Under 1 year,35,2010-01-22,3 -Males,Under 1 year,39,2010-01-29,4 -Males,Under 1 year,32,2010-02-05,5 -Males,Under 1 year,45,2010-02-12,6 -Males,Under 1 year,40,2010-02-19,7 -Males,Under 1 year,36,2010-02-26,8 -Males,Under 1 year,33,2010-03-05,9 -Males,Under 1 year,27,2010-03-12,10 -Males,Under 1 year,34,2010-03-19,11 -Males,Under 1 year,37,2010-03-26,12 -Males,Under 1 year,28,2010-04-02,13 -Males,Under 1 year,35,2010-04-09,14 -Males,Under 1 year,38,2010-04-16,15 -Males,Under 1 year,35,2010-04-23,16 -Males,Under 1 year,33,2010-04-30,17 -Males,Under 1 year,32,2010-05-07,18 -Males,Under 1 year,33,2010-05-14,19 -Males,Under 1 year,35,2010-05-21,20 -Males,Under 1 year,43,2010-05-28,21 -Males,Under 1 year,30,2010-06-04,22 -Males,Under 1 year,30,2010-06-11,23 -Males,Under 1 year,32,2010-06-18,24 -Males,Under 1 year,37,2010-06-25,25 -Males,Under 1 year,31,2010-07-02,26 -Males,Under 1 year,34,2010-07-09,27 -Males,Under 1 year,36,2010-07-16,28 -Males,Under 1 year,33,2010-07-23,29 -Males,Under 1 year,40,2010-07-30,30 -Males,Under 1 year,28,2010-08-06,31 -Males,Under 1 year,38,2010-08-13,32 -Males,Under 1 year,26,2010-08-20,33 -Males,Under 1 year,28,2010-08-27,34 -Males,Under 1 year,26,2010-09-03,35 -Males,Under 1 year,33,2010-09-10,36 -Males,Under 1 year,37,2010-09-17,37 -Males,Under 1 year,30,2010-09-24,38 -Males,Under 1 year,43,2010-10-01,39 -Males,Under 1 year,38,2010-10-08,40 -Males,Under 1 year,35,2010-10-15,41 -Males,Under 1 year,23,2010-10-22,42 -Males,Under 1 year,27,2010-10-29,43 -Males,Under 1 year,38,2010-11-05,44 -Males,Under 1 year,28,2010-11-12,45 -Males,Under 1 year,32,2010-11-19,46 -Males,Under 1 year,32,2010-11-26,47 -Males,Under 1 year,22,2010-12-03,48 -Males,Under 1 year,38,2010-12-10,49 -Males,Under 1 year,35,2010-12-17,50 -Males,Under 1 year,39,2010-12-24,51 -Males,Under 1 year,24,2010-12-31,52 -Males,01-14,9,2010-01-08,1 -Males,01-14,17,2010-01-15,2 -Males,01-14,9,2010-01-22,3 -Males,01-14,9,2010-01-29,4 -Males,01-14,11,2010-02-05,5 -Males,01-14,14,2010-02-12,6 -Males,01-14,3,2010-02-19,7 -Males,01-14,14,2010-02-26,8 -Males,01-14,16,2010-03-05,9 -Males,01-14,20,2010-03-12,10 -Males,01-14,14,2010-03-19,11 -Males,01-14,17,2010-03-26,12 -Males,01-14,8,2010-04-02,13 -Males,01-14,9,2010-04-09,14 -Males,01-14,8,2010-04-16,15 -Males,01-14,16,2010-04-23,16 -Males,01-14,12,2010-04-30,17 -Males,01-14,8,2010-05-07,18 -Males,01-14,10,2010-05-14,19 -Males,01-14,12,2010-05-21,20 -Males,01-14,18,2010-05-28,21 -Males,01-14,14,2010-06-04,22 -Males,01-14,5,2010-06-11,23 -Males,01-14,10,2010-06-18,24 -Males,01-14,6,2010-06-25,25 -Males,01-14,9,2010-07-02,26 -Males,01-14,14,2010-07-09,27 -Males,01-14,15,2010-07-16,28 -Males,01-14,8,2010-07-23,29 -Males,01-14,7,2010-07-30,30 -Males,01-14,10,2010-08-06,31 -Males,01-14,6,2010-08-13,32 -Males,01-14,8,2010-08-20,33 -Males,01-14,11,2010-08-27,34 -Males,01-14,7,2010-09-03,35 -Males,01-14,11,2010-09-10,36 -Males,01-14,13,2010-09-17,37 -Males,01-14,14,2010-09-24,38 -Males,01-14,10,2010-10-01,39 -Males,01-14,17,2010-10-08,40 -Males,01-14,18,2010-10-15,41 -Males,01-14,15,2010-10-22,42 -Males,01-14,10,2010-10-29,43 -Males,01-14,15,2010-11-05,44 -Males,01-14,12,2010-11-12,45 -Males,01-14,7,2010-11-19,46 -Males,01-14,12,2010-11-26,47 -Males,01-14,14,2010-12-03,48 -Males,01-14,15,2010-12-10,49 -Males,01-14,12,2010-12-17,50 -Males,01-14,15,2010-12-24,51 -Males,01-14,13,2010-12-31,52 -Males,15-44,184,2010-01-08,1 -Males,15-44,214,2010-01-15,2 -Males,15-44,219,2010-01-22,3 -Males,15-44,222,2010-01-29,4 -Males,15-44,203,2010-02-05,5 -Males,15-44,200,2010-02-12,6 -Males,15-44,216,2010-02-19,7 -Males,15-44,222,2010-02-26,8 -Males,15-44,235,2010-03-05,9 -Males,15-44,214,2010-03-12,10 -Males,15-44,189,2010-03-19,11 -Males,15-44,185,2010-03-26,12 -Males,15-44,144,2010-04-02,13 -Males,15-44,176,2010-04-09,14 -Males,15-44,196,2010-04-16,15 -Males,15-44,229,2010-04-23,16 -Males,15-44,220,2010-04-30,17 -Males,15-44,148,2010-05-07,18 -Males,15-44,217,2010-05-14,19 -Males,15-44,232,2010-05-21,20 -Males,15-44,221,2010-05-28,21 -Males,15-44,155,2010-06-04,22 -Males,15-44,197,2010-06-11,23 -Males,15-44,189,2010-06-18,24 -Males,15-44,211,2010-06-25,25 -Males,15-44,179,2010-07-02,26 -Males,15-44,207,2010-07-09,27 -Males,15-44,197,2010-07-16,28 -Males,15-44,195,2010-07-23,29 -Males,15-44,191,2010-07-30,30 -Males,15-44,224,2010-08-06,31 -Males,15-44,213,2010-08-13,32 -Males,15-44,169,2010-08-20,33 -Males,15-44,193,2010-08-27,34 -Males,15-44,159,2010-09-03,35 -Males,15-44,210,2010-09-10,36 -Males,15-44,215,2010-09-17,37 -Males,15-44,227,2010-09-24,38 -Males,15-44,185,2010-10-01,39 -Males,15-44,204,2010-10-08,40 -Males,15-44,202,2010-10-15,41 -Males,15-44,200,2010-10-22,42 -Males,15-44,207,2010-10-29,43 -Males,15-44,204,2010-11-05,44 -Males,15-44,203,2010-11-12,45 -Males,15-44,208,2010-11-19,46 -Males,15-44,203,2010-11-26,47 -Males,15-44,187,2010-12-03,48 -Males,15-44,212,2010-12-10,49 -Males,15-44,214,2010-12-17,50 -Males,15-44,249,2010-12-24,51 -Males,15-44,132,2010-12-31,52 -Males,45-64,894,2010-01-08,1 -Males,45-64,895,2010-01-15,2 -Males,45-64,826,2010-01-22,3 -Males,45-64,770,2010-01-29,4 -Males,45-64,764,2010-02-05,5 -Males,45-64,753,2010-02-12,6 -Males,45-64,760,2010-02-19,7 -Males,45-64,780,2010-02-26,8 -Males,45-64,743,2010-03-05,9 -Males,45-64,726,2010-03-12,10 -Males,45-64,775,2010-03-19,11 -Males,45-64,725,2010-03-26,12 -Males,45-64,614,2010-04-02,13 -Males,45-64,764,2010-04-09,14 -Males,45-64,780,2010-04-16,15 -Males,45-64,757,2010-04-23,16 -Males,45-64,740,2010-04-30,17 -Males,45-64,667,2010-05-07,18 -Males,45-64,763,2010-05-14,19 -Males,45-64,686,2010-05-21,20 -Males,45-64,742,2010-05-28,21 -Males,45-64,650,2010-06-04,22 -Males,45-64,780,2010-06-11,23 -Males,45-64,716,2010-06-18,24 -Males,45-64,686,2010-06-25,25 -Males,45-64,720,2010-07-02,26 -Males,45-64,731,2010-07-09,27 -Males,45-64,734,2010-07-16,28 -Males,45-64,722,2010-07-23,29 -Males,45-64,636,2010-07-30,30 -Males,45-64,700,2010-08-06,31 -Males,45-64,635,2010-08-13,32 -Males,45-64,683,2010-08-20,33 -Males,45-64,684,2010-08-27,34 -Males,45-64,623,2010-09-03,35 -Males,45-64,716,2010-09-10,36 -Males,45-64,746,2010-09-17,37 -Males,45-64,685,2010-09-24,38 -Males,45-64,676,2010-10-01,39 -Males,45-64,731,2010-10-08,40 -Males,45-64,807,2010-10-15,41 -Males,45-64,706,2010-10-22,42 -Males,45-64,738,2010-10-29,43 -Males,45-64,731,2010-11-05,44 -Males,45-64,710,2010-11-12,45 -Males,45-64,701,2010-11-19,46 -Males,45-64,713,2010-11-26,47 -Males,45-64,697,2010-12-03,48 -Males,45-64,854,2010-12-10,49 -Males,45-64,901,2010-12-17,50 -Males,45-64,870,2010-12-24,51 -Males,45-64,744,2010-12-31,52 -Males,65-74,1214,2010-01-08,1 -Males,65-74,1082,2010-01-15,2 -Males,65-74,1045,2010-01-22,3 -Males,65-74,976,2010-01-29,4 -Males,65-74,914,2010-02-05,5 -Males,65-74,963,2010-02-12,6 -Males,65-74,927,2010-02-19,7 -Males,65-74,948,2010-02-26,8 -Males,65-74,940,2010-03-05,9 -Males,65-74,912,2010-03-12,10 -Males,65-74,922,2010-03-19,11 -Males,65-74,923,2010-03-26,12 -Males,65-74,749,2010-04-02,13 -Males,65-74,949,2010-04-09,14 -Males,65-74,968,2010-04-16,15 -Males,65-74,898,2010-04-23,16 -Males,65-74,912,2010-04-30,17 -Males,65-74,818,2010-05-07,18 -Males,65-74,910,2010-05-14,19 -Males,65-74,888,2010-05-21,20 -Males,65-74,947,2010-05-28,21 -Males,65-74,813,2010-06-04,22 -Males,65-74,870,2010-06-11,23 -Males,65-74,860,2010-06-18,24 -Males,65-74,835,2010-06-25,25 -Males,65-74,897,2010-07-02,26 -Males,65-74,835,2010-07-09,27 -Males,65-74,804,2010-07-16,28 -Males,65-74,808,2010-07-23,29 -Males,65-74,796,2010-07-30,30 -Males,65-74,834,2010-08-06,31 -Males,65-74,801,2010-08-13,32 -Males,65-74,852,2010-08-20,33 -Males,65-74,872,2010-08-27,34 -Males,65-74,765,2010-09-03,35 -Males,65-74,906,2010-09-10,36 -Males,65-74,885,2010-09-17,37 -Males,65-74,828,2010-09-24,38 -Males,65-74,837,2010-10-01,39 -Males,65-74,839,2010-10-08,40 -Males,65-74,869,2010-10-15,41 -Males,65-74,881,2010-10-22,42 -Males,65-74,873,2010-10-29,43 -Males,65-74,928,2010-11-05,44 -Males,65-74,898,2010-11-12,45 -Males,65-74,900,2010-11-19,46 -Males,65-74,896,2010-11-26,47 -Males,65-74,902,2010-12-03,48 -Males,65-74,1051,2010-12-10,49 -Males,65-74,984,2010-12-17,50 -Males,65-74,1037,2010-12-24,51 -Males,65-74,874,2010-12-31,52 -Males,75-84,2004,2010-01-08,1 -Males,75-84,1925,2010-01-15,2 -Males,75-84,1755,2010-01-22,3 -Males,75-84,1687,2010-01-29,4 -Males,75-84,1635,2010-02-05,5 -Males,75-84,1611,2010-02-12,6 -Males,75-84,1521,2010-02-19,7 -Males,75-84,1551,2010-02-26,8 -Males,75-84,1529,2010-03-05,9 -Males,75-84,1446,2010-03-12,10 -Males,75-84,1468,2010-03-19,11 -Males,75-84,1488,2010-03-26,12 -Males,75-84,1236,2010-04-02,13 -Males,75-84,1538,2010-04-09,14 -Males,75-84,1611,2010-04-16,15 -Males,75-84,1494,2010-04-23,16 -Males,75-84,1523,2010-04-30,17 -Males,75-84,1327,2010-05-07,18 -Males,75-84,1511,2010-05-14,19 -Males,75-84,1375,2010-05-21,20 -Males,75-84,1480,2010-05-28,21 -Males,75-84,1209,2010-06-04,22 -Males,75-84,1424,2010-06-11,23 -Males,75-84,1327,2010-06-18,24 -Males,75-84,1283,2010-06-25,25 -Males,75-84,1296,2010-07-02,26 -Males,75-84,1430,2010-07-09,27 -Males,75-84,1353,2010-07-16,28 -Males,75-84,1338,2010-07-23,29 -Males,75-84,1288,2010-07-30,30 -Males,75-84,1344,2010-08-06,31 -Males,75-84,1258,2010-08-13,32 -Males,75-84,1372,2010-08-20,33 -Males,75-84,1319,2010-08-27,34 -Males,75-84,1177,2010-09-03,35 -Males,75-84,1373,2010-09-10,36 -Males,75-84,1334,2010-09-17,37 -Males,75-84,1303,2010-09-24,38 -Males,75-84,1319,2010-10-01,39 -Males,75-84,1401,2010-10-08,40 -Males,75-84,1412,2010-10-15,41 -Males,75-84,1423,2010-10-22,42 -Males,75-84,1454,2010-10-29,43 -Males,75-84,1459,2010-11-05,44 -Males,75-84,1489,2010-11-12,45 -Males,75-84,1485,2010-11-19,46 -Males,75-84,1483,2010-11-26,47 -Males,75-84,1413,2010-12-03,48 -Males,75-84,1762,2010-12-10,49 -Males,75-84,1642,2010-12-17,50 -Males,75-84,1743,2010-12-24,51 -Males,75-84,1395,2010-12-31,52 -Males,85+,1683,2010-01-08,1 -Males,85+,1719,2010-01-15,2 -Males,85+,1609,2010-01-22,3 -Males,85+,1458,2010-01-29,4 -Males,85+,1441,2010-02-05,5 -Males,85+,1346,2010-02-12,6 -Males,85+,1373,2010-02-19,7 -Males,85+,1334,2010-02-26,8 -Males,85+,1288,2010-03-05,9 -Males,85+,1297,2010-03-12,10 -Males,85+,1247,2010-03-19,11 -Males,85+,1205,2010-03-26,12 -Males,85+,1067,2010-04-02,13 -Males,85+,1276,2010-04-09,14 -Males,85+,1193,2010-04-16,15 -Males,85+,1200,2010-04-23,16 -Males,85+,1196,2010-04-30,17 -Males,85+,1092,2010-05-07,18 -Males,85+,1211,2010-05-14,19 -Males,85+,1179,2010-05-21,20 -Males,85+,1145,2010-05-28,21 -Males,85+,1082,2010-06-04,22 -Males,85+,1222,2010-06-11,23 -Males,85+,1121,2010-06-18,24 -Males,85+,1050,2010-06-25,25 -Males,85+,1149,2010-07-02,26 -Males,85+,1053,2010-07-09,27 -Males,85+,1067,2010-07-16,28 -Males,85+,991,2010-07-23,29 -Males,85+,1008,2010-07-30,30 -Males,85+,1018,2010-08-06,31 -Males,85+,1031,2010-08-13,32 -Males,85+,1039,2010-08-20,33 -Males,85+,1120,2010-08-27,34 -Males,85+,1005,2010-09-03,35 -Males,85+,1097,2010-09-10,36 -Males,85+,1077,2010-09-17,37 -Males,85+,1171,2010-09-24,38 -Males,85+,1128,2010-10-01,39 -Males,85+,1191,2010-10-08,40 -Males,85+,1222,2010-10-15,41 -Males,85+,1215,2010-10-22,42 -Males,85+,1190,2010-10-29,43 -Males,85+,1295,2010-11-05,44 -Males,85+,1239,2010-11-12,45 -Males,85+,1212,2010-11-19,46 -Males,85+,1244,2010-11-26,47 -Males,85+,1206,2010-12-03,48 -Males,85+,1546,2010-12-10,49 -Males,85+,1427,2010-12-17,50 -Males,85+,1471,2010-12-24,51 -Males,85+,1339,2010-12-31,52 -Females,Under 1 year,36,2010-01-08,1 -Females,Under 1 year,29,2010-01-15,2 -Females,Under 1 year,31,2010-01-22,3 -Females,Under 1 year,29,2010-01-29,4 -Females,Under 1 year,40,2010-02-05,5 -Females,Under 1 year,34,2010-02-12,6 -Females,Under 1 year,31,2010-02-19,7 -Females,Under 1 year,37,2010-02-26,8 -Females,Under 1 year,22,2010-03-05,9 -Females,Under 1 year,18,2010-03-12,10 -Females,Under 1 year,19,2010-03-19,11 -Females,Under 1 year,24,2010-03-26,12 -Females,Under 1 year,22,2010-04-02,13 -Females,Under 1 year,31,2010-04-09,14 -Females,Under 1 year,25,2010-04-16,15 -Females,Under 1 year,31,2010-04-23,16 -Females,Under 1 year,26,2010-04-30,17 -Females,Under 1 year,27,2010-05-07,18 -Females,Under 1 year,37,2010-05-14,19 -Females,Under 1 year,36,2010-05-21,20 -Females,Under 1 year,35,2010-05-28,21 -Females,Under 1 year,19,2010-06-04,22 -Females,Under 1 year,16,2010-06-11,23 -Females,Under 1 year,40,2010-06-18,24 -Females,Under 1 year,20,2010-06-25,25 -Females,Under 1 year,27,2010-07-02,26 -Females,Under 1 year,27,2010-07-09,27 -Females,Under 1 year,38,2010-07-16,28 -Females,Under 1 year,22,2010-07-23,29 -Females,Under 1 year,28,2010-07-30,30 -Females,Under 1 year,33,2010-08-06,31 -Females,Under 1 year,24,2010-08-13,32 -Females,Under 1 year,20,2010-08-20,33 -Females,Under 1 year,30,2010-08-27,34 -Females,Under 1 year,26,2010-09-03,35 -Females,Under 1 year,21,2010-09-10,36 -Females,Under 1 year,31,2010-09-17,37 -Females,Under 1 year,37,2010-09-24,38 -Females,Under 1 year,25,2010-10-01,39 -Females,Under 1 year,28,2010-10-08,40 -Females,Under 1 year,35,2010-10-15,41 -Females,Under 1 year,23,2010-10-22,42 -Females,Under 1 year,28,2010-10-29,43 -Females,Under 1 year,28,2010-11-05,44 -Females,Under 1 year,30,2010-11-12,45 -Females,Under 1 year,23,2010-11-19,46 -Females,Under 1 year,25,2010-11-26,47 -Females,Under 1 year,29,2010-12-03,48 -Females,Under 1 year,21,2010-12-10,49 -Females,Under 1 year,27,2010-12-17,50 -Females,Under 1 year,25,2010-12-24,51 -Females,Under 1 year,16,2010-12-31,52 -Females,01-14,15,2010-01-08,1 -Females,01-14,12,2010-01-15,2 -Females,01-14,9,2010-01-22,3 -Females,01-14,12,2010-01-29,4 -Females,01-14,7,2010-02-05,5 -Females,01-14,14,2010-02-12,6 -Females,01-14,14,2010-02-19,7 -Females,01-14,13,2010-02-26,8 -Females,01-14,15,2010-03-05,9 -Females,01-14,8,2010-03-12,10 -Females,01-14,10,2010-03-19,11 -Females,01-14,15,2010-03-26,12 -Females,01-14,8,2010-04-02,13 -Females,01-14,10,2010-04-09,14 -Females,01-14,13,2010-04-16,15 -Females,01-14,15,2010-04-23,16 -Females,01-14,7,2010-04-30,17 -Females,01-14,5,2010-05-07,18 -Females,01-14,15,2010-05-14,19 -Females,01-14,10,2010-05-21,20 -Females,01-14,8,2010-05-28,21 -Females,01-14,6,2010-06-04,22 -Females,01-14,9,2010-06-11,23 -Females,01-14,8,2010-06-18,24 -Females,01-14,9,2010-06-25,25 -Females,01-14,13,2010-07-02,26 -Females,01-14,6,2010-07-09,27 -Females,01-14,11,2010-07-16,28 -Females,01-14,11,2010-07-23,29 -Females,01-14,8,2010-07-30,30 -Females,01-14,7,2010-08-06,31 -Females,01-14,14,2010-08-13,32 -Females,01-14,12,2010-08-20,33 -Females,01-14,2,2010-08-27,34 -Females,01-14,6,2010-09-03,35 -Females,01-14,11,2010-09-10,36 -Females,01-14,8,2010-09-17,37 -Females,01-14,5,2010-09-24,38 -Females,01-14,13,2010-10-01,39 -Females,01-14,7,2010-10-08,40 -Females,01-14,10,2010-10-15,41 -Females,01-14,7,2010-10-22,42 -Females,01-14,13,2010-10-29,43 -Females,01-14,6,2010-11-05,44 -Females,01-14,4,2010-11-12,45 -Females,01-14,4,2010-11-19,46 -Females,01-14,11,2010-11-26,47 -Females,01-14,5,2010-12-03,48 -Females,01-14,14,2010-12-10,49 -Females,01-14,11,2010-12-17,50 -Females,01-14,20,2010-12-24,51 -Females,01-14,8,2010-12-31,52 -Females,15-44,115,2010-01-08,1 -Females,15-44,117,2010-01-15,2 -Females,15-44,128,2010-01-22,3 -Females,15-44,114,2010-01-29,4 -Females,15-44,114,2010-02-05,5 -Females,15-44,108,2010-02-12,6 -Females,15-44,113,2010-02-19,7 -Females,15-44,118,2010-02-26,8 -Females,15-44,113,2010-03-05,9 -Females,15-44,120,2010-03-12,10 -Females,15-44,105,2010-03-19,11 -Females,15-44,118,2010-03-26,12 -Females,15-44,86,2010-04-02,13 -Females,15-44,112,2010-04-09,14 -Females,15-44,125,2010-04-16,15 -Females,15-44,104,2010-04-23,16 -Females,15-44,105,2010-04-30,17 -Females,15-44,92,2010-05-07,18 -Females,15-44,118,2010-05-14,19 -Females,15-44,124,2010-05-21,20 -Females,15-44,131,2010-05-28,21 -Females,15-44,89,2010-06-04,22 -Females,15-44,106,2010-06-11,23 -Females,15-44,102,2010-06-18,24 -Females,15-44,100,2010-06-25,25 -Females,15-44,100,2010-07-02,26 -Females,15-44,106,2010-07-09,27 -Females,15-44,94,2010-07-16,28 -Females,15-44,107,2010-07-23,29 -Females,15-44,98,2010-07-30,30 -Females,15-44,131,2010-08-06,31 -Females,15-44,114,2010-08-13,32 -Females,15-44,111,2010-08-20,33 -Females,15-44,85,2010-08-27,34 -Females,15-44,90,2010-09-03,35 -Females,15-44,112,2010-09-10,36 -Females,15-44,105,2010-09-17,37 -Females,15-44,90,2010-09-24,38 -Females,15-44,97,2010-10-01,39 -Females,15-44,111,2010-10-08,40 -Females,15-44,105,2010-10-15,41 -Females,15-44,118,2010-10-22,42 -Females,15-44,116,2010-10-29,43 -Females,15-44,114,2010-11-05,44 -Females,15-44,104,2010-11-12,45 -Females,15-44,111,2010-11-19,46 -Females,15-44,104,2010-11-26,47 -Females,15-44,93,2010-12-03,48 -Females,15-44,126,2010-12-10,49 -Females,15-44,135,2010-12-17,50 -Females,15-44,156,2010-12-24,51 -Females,15-44,86,2010-12-31,52 -Females,45-64,676,2010-01-08,1 -Females,45-64,570,2010-01-15,2 -Females,45-64,566,2010-01-22,3 -Females,45-64,530,2010-01-29,4 -Females,45-64,544,2010-02-05,5 -Females,45-64,486,2010-02-12,6 -Females,45-64,516,2010-02-19,7 -Females,45-64,535,2010-02-26,8 -Females,45-64,487,2010-03-05,9 -Females,45-64,533,2010-03-12,10 -Females,45-64,532,2010-03-19,11 -Females,45-64,502,2010-03-26,12 -Females,45-64,421,2010-04-02,13 -Females,45-64,478,2010-04-09,14 -Females,45-64,496,2010-04-16,15 -Females,45-64,486,2010-04-23,16 -Females,45-64,480,2010-04-30,17 -Females,45-64,452,2010-05-07,18 -Females,45-64,499,2010-05-14,19 -Females,45-64,479,2010-05-21,20 -Females,45-64,463,2010-05-28,21 -Females,45-64,430,2010-06-04,22 -Females,45-64,512,2010-06-11,23 -Females,45-64,466,2010-06-18,24 -Females,45-64,459,2010-06-25,25 -Females,45-64,441,2010-07-02,26 -Females,45-64,472,2010-07-09,27 -Females,45-64,440,2010-07-16,28 -Females,45-64,478,2010-07-23,29 -Females,45-64,439,2010-07-30,30 -Females,45-64,511,2010-08-06,31 -Females,45-64,451,2010-08-13,32 -Females,45-64,461,2010-08-20,33 -Females,45-64,476,2010-08-27,34 -Females,45-64,422,2010-09-03,35 -Females,45-64,460,2010-09-10,36 -Females,45-64,460,2010-09-17,37 -Females,45-64,446,2010-09-24,38 -Females,45-64,484,2010-10-01,39 -Females,45-64,483,2010-10-08,40 -Females,45-64,508,2010-10-15,41 -Females,45-64,499,2010-10-22,42 -Females,45-64,460,2010-10-29,43 -Females,45-64,484,2010-11-05,44 -Females,45-64,511,2010-11-12,45 -Females,45-64,484,2010-11-19,46 -Females,45-64,485,2010-11-26,47 -Females,45-64,502,2010-12-03,48 -Females,45-64,542,2010-12-10,49 -Females,45-64,565,2010-12-17,50 -Females,45-64,593,2010-12-24,51 -Females,45-64,510,2010-12-31,52 -Females,65-74,835,2010-01-08,1 -Females,65-74,778,2010-01-15,2 -Females,65-74,736,2010-01-22,3 -Females,65-74,690,2010-01-29,4 -Females,65-74,674,2010-02-05,5 -Females,65-74,633,2010-02-12,6 -Females,65-74,633,2010-02-19,7 -Females,65-74,652,2010-02-26,8 -Females,65-74,607,2010-03-05,9 -Females,65-74,640,2010-03-12,10 -Females,65-74,650,2010-03-19,11 -Females,65-74,643,2010-03-26,12 -Females,65-74,507,2010-04-02,13 -Females,65-74,654,2010-04-09,14 -Females,65-74,678,2010-04-16,15 -Females,65-74,627,2010-04-23,16 -Females,65-74,652,2010-04-30,17 -Females,65-74,561,2010-05-07,18 -Females,65-74,587,2010-05-14,19 -Females,65-74,637,2010-05-21,20 -Females,65-74,669,2010-05-28,21 -Females,65-74,558,2010-06-04,22 -Females,65-74,657,2010-06-11,23 -Females,65-74,637,2010-06-18,24 -Females,65-74,602,2010-06-25,25 -Females,65-74,600,2010-07-02,26 -Females,65-74,541,2010-07-09,27 -Females,65-74,600,2010-07-16,28 -Females,65-74,551,2010-07-23,29 -Females,65-74,581,2010-07-30,30 -Females,65-74,600,2010-08-06,31 -Females,65-74,585,2010-08-13,32 -Females,65-74,573,2010-08-20,33 -Females,65-74,590,2010-08-27,34 -Females,65-74,527,2010-09-03,35 -Females,65-74,633,2010-09-10,36 -Females,65-74,591,2010-09-17,37 -Females,65-74,627,2010-09-24,38 -Females,65-74,603,2010-10-01,39 -Females,65-74,616,2010-10-08,40 -Females,65-74,598,2010-10-15,41 -Females,65-74,614,2010-10-22,42 -Females,65-74,589,2010-10-29,43 -Females,65-74,653,2010-11-05,44 -Females,65-74,609,2010-11-12,45 -Females,65-74,640,2010-11-19,46 -Females,65-74,606,2010-11-26,47 -Females,65-74,614,2010-12-03,48 -Females,65-74,685,2010-12-10,49 -Females,65-74,658,2010-12-17,50 -Females,65-74,759,2010-12-24,51 -Females,65-74,640,2010-12-31,52 -Females,75-84,1948,2010-01-08,1 -Females,75-84,1958,2010-01-15,2 -Females,75-84,1746,2010-01-22,3 -Females,75-84,1672,2010-01-29,4 -Females,75-84,1488,2010-02-05,5 -Females,75-84,1391,2010-02-12,6 -Females,75-84,1494,2010-02-19,7 -Females,75-84,1555,2010-02-26,8 -Females,75-84,1474,2010-03-05,9 -Females,75-84,1471,2010-03-12,10 -Females,75-84,1427,2010-03-19,11 -Females,75-84,1382,2010-03-26,12 -Females,75-84,1149,2010-04-02,13 -Females,75-84,1420,2010-04-09,14 -Females,75-84,1447,2010-04-16,15 -Females,75-84,1327,2010-04-23,16 -Females,75-84,1334,2010-04-30,17 -Females,75-84,1247,2010-05-07,18 -Females,75-84,1462,2010-05-14,19 -Females,75-84,1314,2010-05-21,20 -Females,75-84,1381,2010-05-28,21 -Females,75-84,1207,2010-06-04,22 -Females,75-84,1303,2010-06-11,23 -Females,75-84,1203,2010-06-18,24 -Females,75-84,1219,2010-06-25,25 -Females,75-84,1348,2010-07-02,26 -Females,75-84,1258,2010-07-09,27 -Females,75-84,1229,2010-07-16,28 -Females,75-84,1195,2010-07-23,29 -Females,75-84,1176,2010-07-30,30 -Females,75-84,1213,2010-08-06,31 -Females,75-84,1220,2010-08-13,32 -Females,75-84,1232,2010-08-20,33 -Females,75-84,1212,2010-08-27,34 -Females,75-84,1139,2010-09-03,35 -Females,75-84,1311,2010-09-10,36 -Females,75-84,1200,2010-09-17,37 -Females,75-84,1348,2010-09-24,38 -Females,75-84,1245,2010-10-01,39 -Females,75-84,1384,2010-10-08,40 -Females,75-84,1291,2010-10-15,41 -Females,75-84,1343,2010-10-22,42 -Females,75-84,1407,2010-10-29,43 -Females,75-84,1392,2010-11-05,44 -Females,75-84,1340,2010-11-12,45 -Females,75-84,1371,2010-11-19,46 -Females,75-84,1449,2010-11-26,47 -Females,75-84,1351,2010-12-03,48 -Females,75-84,1574,2010-12-10,49 -Females,75-84,1551,2010-12-17,50 -Females,75-84,1722,2010-12-24,51 -Females,75-84,1466,2010-12-31,52 -Females,85+,3329,2010-01-08,1 -Females,85+,3183,2010-01-15,2 -Females,85+,3045,2010-01-22,3 -Females,85+,2847,2010-01-29,4 -Females,85+,2648,2010-02-05,5 -Females,85+,2518,2010-02-12,6 -Females,85+,2461,2010-02-19,7 -Females,85+,2499,2010-02-26,8 -Females,85+,2477,2010-03-05,9 -Females,85+,2356,2010-03-12,10 -Females,85+,2334,2010-03-19,11 -Females,85+,2349,2010-03-26,12 -Females,85+,1904,2010-04-02,13 -Females,85+,2277,2010-04-09,14 -Females,85+,2303,2010-04-16,15 -Females,85+,2229,2010-04-23,16 -Females,85+,2262,2010-04-30,17 -Females,85+,1863,2010-05-07,18 -Females,85+,2110,2010-05-14,19 -Females,85+,2182,2010-05-21,20 -Females,85+,2165,2010-05-28,21 -Females,85+,1914,2010-06-04,22 -Females,85+,2128,2010-06-11,23 -Females,85+,1802,2010-06-18,24 -Females,85+,1944,2010-06-25,25 -Females,85+,2157,2010-07-02,26 -Females,85+,1911,2010-07-09,27 -Females,85+,1921,2010-07-16,28 -Females,85+,1800,2010-07-23,29 -Females,85+,1957,2010-07-30,30 -Females,85+,1810,2010-08-06,31 -Females,85+,1927,2010-08-13,32 -Females,85+,2024,2010-08-20,33 -Females,85+,2003,2010-08-27,34 -Females,85+,1736,2010-09-03,35 -Females,85+,2067,2010-09-10,36 -Females,85+,2016,2010-09-17,37 -Females,85+,2128,2010-09-24,38 -Females,85+,2090,2010-10-01,39 -Females,85+,2143,2010-10-08,40 -Females,85+,2106,2010-10-15,41 -Females,85+,2218,2010-10-22,42 -Females,85+,2160,2010-10-29,43 -Females,85+,2321,2010-11-05,44 -Females,85+,2229,2010-11-12,45 -Females,85+,2259,2010-11-19,46 -Females,85+,2210,2010-11-26,47 -Females,85+,2185,2010-12-03,48 -Females,85+,2752,2010-12-10,49 -Females,85+,2718,2010-12-17,50 -Females,85+,2784,2010-12-24,51 -Females,85+,2439,2010-12-31,52 -Region,North East,648,2010-01-08,1 -Region,North East,612,2010-01-15,2 -Region,North East,550,2010-01-22,3 -Region,North East,555,2010-01-29,4 -Region,North East,556,2010-02-05,5 -Region,North East,553,2010-02-12,6 -Region,North East,521,2010-02-19,7 -Region,North East,471,2010-02-26,8 -Region,North East,535,2010-03-05,9 -Region,North East,512,2010-03-12,10 -Region,North East,529,2010-03-19,11 -Region,North East,498,2010-03-26,12 -Region,North East,394,2010-04-02,13 -Region,North East,517,2010-04-09,14 -Region,North East,516,2010-04-16,15 -Region,North East,486,2010-04-23,16 -Region,North East,516,2010-04-30,17 -Region,North East,444,2010-05-07,18 -Region,North East,516,2010-05-14,19 -Region,North East,502,2010-05-21,20 -Region,North East,474,2010-05-28,21 -Region,North East,457,2010-06-04,22 -Region,North East,539,2010-06-11,23 -Region,North East,450,2010-06-18,24 -Region,North East,464,2010-06-25,25 -Region,North East,446,2010-07-02,26 -Region,North East,507,2010-07-09,27 -Region,North East,444,2010-07-16,28 -Region,North East,442,2010-07-23,29 -Region,North East,453,2010-07-30,30 -Region,North East,479,2010-08-06,31 -Region,North East,417,2010-08-13,32 -Region,North East,447,2010-08-20,33 -Region,North East,471,2010-08-27,34 -Region,North East,407,2010-09-03,35 -Region,North East,446,2010-09-10,36 -Region,North East,442,2010-09-17,37 -Region,North East,468,2010-09-24,38 -Region,North East,448,2010-10-01,39 -Region,North East,501,2010-10-08,40 -Region,North East,485,2010-10-15,41 -Region,North East,506,2010-10-22,42 -Region,North East,519,2010-10-29,43 -Region,North East,491,2010-11-05,44 -Region,North East,514,2010-11-12,45 -Region,North East,498,2010-11-19,46 -Region,North East,463,2010-11-26,47 -Region,North East,458,2010-12-03,48 -Region,North East,549,2010-12-10,49 -Region,North East,558,2010-12-17,50 -Region,North East,616,2010-12-24,51 -Region,North East,527,2010-12-31,52 -Region,North West,1686,2010-01-08,1 -Region,North West,1772,2010-01-15,2 -Region,North West,1576,2010-01-22,3 -Region,North West,1495,2010-01-29,4 -Region,North West,1385,2010-02-05,5 -Region,North West,1402,2010-02-12,6 -Region,North West,1371,2010-02-19,7 -Region,North West,1363,2010-02-26,8 -Region,North West,1417,2010-03-05,9 -Region,North West,1390,2010-03-12,10 -Region,North West,1316,2010-03-19,11 -Region,North West,1292,2010-03-26,12 -Region,North West,1130,2010-04-02,13 -Region,North West,1357,2010-04-09,14 -Region,North West,1369,2010-04-16,15 -Region,North West,1328,2010-04-23,16 -Region,North West,1252,2010-04-30,17 -Region,North West,1150,2010-05-07,18 -Region,North West,1276,2010-05-14,19 -Region,North West,1248,2010-05-21,20 -Region,North West,1292,2010-05-28,21 -Region,North West,1145,2010-06-04,22 -Region,North West,1268,2010-06-11,23 -Region,North West,1118,2010-06-18,24 -Region,North West,1157,2010-06-25,25 -Region,North West,1236,2010-07-02,26 -Region,North West,1163,2010-07-09,27 -Region,North West,1153,2010-07-16,28 -Region,North West,1108,2010-07-23,29 -Region,North West,1155,2010-07-30,30 -Region,North West,1110,2010-08-06,31 -Region,North West,1138,2010-08-13,32 -Region,North West,1169,2010-08-20,33 -Region,North West,1187,2010-08-27,34 -Region,North West,1081,2010-09-03,35 -Region,North West,1313,2010-09-10,36 -Region,North West,1256,2010-09-17,37 -Region,North West,1137,2010-09-24,38 -Region,North West,1252,2010-10-01,39 -Region,North West,1265,2010-10-08,40 -Region,North West,1239,2010-10-15,41 -Region,North West,1206,2010-10-22,42 -Region,North West,1342,2010-10-29,43 -Region,North West,1370,2010-11-05,44 -Region,North West,1319,2010-11-12,45 -Region,North West,1306,2010-11-19,46 -Region,North West,1356,2010-11-26,47 -Region,North West,1343,2010-12-03,48 -Region,North West,1413,2010-12-10,49 -Region,North West,1509,2010-12-17,50 -Region,North West,1605,2010-12-24,51 -Region,North West,1408,2010-12-31,52 -Region,Yorkshire and The Humber,1317,2010-01-08,1 -Region,Yorkshire and The Humber,1163,2010-01-15,2 -Region,Yorkshire and The Humber,1133,2010-01-22,3 -Region,Yorkshire and The Humber,1031,2010-01-29,4 -Region,Yorkshire and The Humber,987,2010-02-05,5 -Region,Yorkshire and The Humber,941,2010-02-12,6 -Region,Yorkshire and The Humber,960,2010-02-19,7 -Region,Yorkshire and The Humber,1040,2010-02-26,8 -Region,Yorkshire and The Humber,952,2010-03-05,9 -Region,Yorkshire and The Humber,984,2010-03-12,10 -Region,Yorkshire and The Humber,965,2010-03-19,11 -Region,Yorkshire and The Humber,965,2010-03-26,12 -Region,Yorkshire and The Humber,768,2010-04-02,13 -Region,Yorkshire and The Humber,937,2010-04-09,14 -Region,Yorkshire and The Humber,995,2010-04-16,15 -Region,Yorkshire and The Humber,880,2010-04-23,16 -Region,Yorkshire and The Humber,964,2010-04-30,17 -Region,Yorkshire and The Humber,870,2010-05-07,18 -Region,Yorkshire and The Humber,944,2010-05-14,19 -Region,Yorkshire and The Humber,896,2010-05-21,20 -Region,Yorkshire and The Humber,983,2010-05-28,21 -Region,Yorkshire and The Humber,827,2010-06-04,22 -Region,Yorkshire and The Humber,902,2010-06-11,23 -Region,Yorkshire and The Humber,834,2010-06-18,24 -Region,Yorkshire and The Humber,863,2010-06-25,25 -Region,Yorkshire and The Humber,851,2010-07-02,26 -Region,Yorkshire and The Humber,814,2010-07-09,27 -Region,Yorkshire and The Humber,829,2010-07-16,28 -Region,Yorkshire and The Humber,857,2010-07-23,29 -Region,Yorkshire and The Humber,858,2010-07-30,30 -Region,Yorkshire and The Humber,849,2010-08-06,31 -Region,Yorkshire and The Humber,844,2010-08-13,32 -Region,Yorkshire and The Humber,850,2010-08-20,33 -Region,Yorkshire and The Humber,895,2010-08-27,34 -Region,Yorkshire and The Humber,788,2010-09-03,35 -Region,Yorkshire and The Humber,866,2010-09-10,36 -Region,Yorkshire and The Humber,830,2010-09-17,37 -Region,Yorkshire and The Humber,907,2010-09-24,38 -Region,Yorkshire and The Humber,885,2010-10-01,39 -Region,Yorkshire and The Humber,853,2010-10-08,40 -Region,Yorkshire and The Humber,907,2010-10-15,41 -Region,Yorkshire and The Humber,1002,2010-10-22,42 -Region,Yorkshire and The Humber,917,2010-10-29,43 -Region,Yorkshire and The Humber,923,2010-11-05,44 -Region,Yorkshire and The Humber,916,2010-11-12,45 -Region,Yorkshire and The Humber,940,2010-11-19,46 -Region,Yorkshire and The Humber,960,2010-11-26,47 -Region,Yorkshire and The Humber,888,2010-12-03,48 -Region,Yorkshire and The Humber,1220,2010-12-10,49 -Region,Yorkshire and The Humber,1097,2010-12-17,50 -Region,Yorkshire and The Humber,1098,2010-12-24,51 -Region,Yorkshire and The Humber,976,2010-12-31,52 -Region,East Midlands,1091,2010-01-08,1 -Region,East Midlands,1098,2010-01-15,2 -Region,East Midlands,963,2010-01-22,3 -Region,East Midlands,938,2010-01-29,4 -Region,East Midlands,874,2010-02-05,5 -Region,East Midlands,858,2010-02-12,6 -Region,East Midlands,802,2010-02-19,7 -Region,East Midlands,880,2010-02-26,8 -Region,East Midlands,778,2010-03-05,9 -Region,East Midlands,800,2010-03-12,10 -Region,East Midlands,820,2010-03-19,11 -Region,East Midlands,792,2010-03-26,12 -Region,East Midlands,682,2010-04-02,13 -Region,East Midlands,850,2010-04-09,14 -Region,East Midlands,794,2010-04-16,15 -Region,East Midlands,782,2010-04-23,16 -Region,East Midlands,759,2010-04-30,17 -Region,East Midlands,660,2010-05-07,18 -Region,East Midlands,812,2010-05-14,19 -Region,East Midlands,757,2010-05-21,20 -Region,East Midlands,782,2010-05-28,21 -Region,East Midlands,661,2010-06-04,22 -Region,East Midlands,795,2010-06-11,23 -Region,East Midlands,664,2010-06-18,24 -Region,East Midlands,715,2010-06-25,25 -Region,East Midlands,734,2010-07-02,26 -Region,East Midlands,694,2010-07-09,27 -Region,East Midlands,753,2010-07-16,28 -Region,East Midlands,685,2010-07-23,29 -Region,East Midlands,629,2010-07-30,30 -Region,East Midlands,647,2010-08-06,31 -Region,East Midlands,696,2010-08-13,32 -Region,East Midlands,721,2010-08-20,33 -Region,East Midlands,675,2010-08-27,34 -Region,East Midlands,626,2010-09-03,35 -Region,East Midlands,784,2010-09-10,36 -Region,East Midlands,736,2010-09-17,37 -Region,East Midlands,819,2010-09-24,38 -Region,East Midlands,698,2010-10-01,39 -Region,East Midlands,744,2010-10-08,40 -Region,East Midlands,737,2010-10-15,41 -Region,East Midlands,744,2010-10-22,42 -Region,East Midlands,766,2010-10-29,43 -Region,East Midlands,835,2010-11-05,44 -Region,East Midlands,790,2010-11-12,45 -Region,East Midlands,807,2010-11-19,46 -Region,East Midlands,851,2010-11-26,47 -Region,East Midlands,750,2010-12-03,48 -Region,East Midlands,896,2010-12-10,49 -Region,East Midlands,913,2010-12-17,50 -Region,East Midlands,971,2010-12-24,51 -Region,East Midlands,834,2010-12-31,52 -Region,West Midlands,1370,2010-01-08,1 -Region,West Midlands,1258,2010-01-15,2 -Region,West Midlands,1216,2010-01-22,3 -Region,West Midlands,1106,2010-01-29,4 -Region,West Midlands,1097,2010-02-05,5 -Region,West Midlands,1024,2010-02-12,6 -Region,West Midlands,1029,2010-02-19,7 -Region,West Midlands,1020,2010-02-26,8 -Region,West Midlands,1060,2010-03-05,9 -Region,West Midlands,941,2010-03-12,10 -Region,West Midlands,993,2010-03-19,11 -Region,West Midlands,970,2010-03-26,12 -Region,West Midlands,874,2010-04-02,13 -Region,West Midlands,1010,2010-04-09,14 -Region,West Midlands,998,2010-04-16,15 -Region,West Midlands,971,2010-04-23,16 -Region,West Midlands,994,2010-04-30,17 -Region,West Midlands,821,2010-05-07,18 -Region,West Midlands,935,2010-05-14,19 -Region,West Midlands,930,2010-05-21,20 -Region,West Midlands,962,2010-05-28,21 -Region,West Midlands,807,2010-06-04,22 -Region,West Midlands,931,2010-06-11,23 -Region,West Midlands,894,2010-06-18,24 -Region,West Midlands,894,2010-06-25,25 -Region,West Midlands,924,2010-07-02,26 -Region,West Midlands,855,2010-07-09,27 -Region,West Midlands,867,2010-07-16,28 -Region,West Midlands,837,2010-07-23,29 -Region,West Midlands,869,2010-07-30,30 -Region,West Midlands,894,2010-08-06,31 -Region,West Midlands,893,2010-08-13,32 -Region,West Midlands,905,2010-08-20,33 -Region,West Midlands,901,2010-08-27,34 -Region,West Midlands,784,2010-09-03,35 -Region,West Midlands,877,2010-09-10,36 -Region,West Midlands,856,2010-09-17,37 -Region,West Midlands,920,2010-09-24,38 -Region,West Midlands,892,2010-10-01,39 -Region,West Midlands,931,2010-10-08,40 -Region,West Midlands,988,2010-10-15,41 -Region,West Midlands,936,2010-10-22,42 -Region,West Midlands,892,2010-10-29,43 -Region,West Midlands,943,2010-11-05,44 -Region,West Midlands,956,2010-11-12,45 -Region,West Midlands,972,2010-11-19,46 -Region,West Midlands,919,2010-11-26,47 -Region,West Midlands,1016,2010-12-03,48 -Region,West Midlands,1114,2010-12-10,49 -Region,West Midlands,1121,2010-12-17,50 -Region,West Midlands,1159,2010-12-24,51 -Region,West Midlands,1036,2010-12-31,52 -Region,East,1412,2010-01-08,1 -Region,East,1263,2010-01-15,2 -Region,East,1174,2010-01-22,3 -Region,East,1143,2010-01-29,4 -Region,East,1156,2010-02-05,5 -Region,East,1032,2010-02-12,6 -Region,East,1099,2010-02-19,7 -Region,East,1149,2010-02-26,8 -Region,East,1064,2010-03-05,9 -Region,East,1074,2010-03-12,10 -Region,East,1005,2010-03-19,11 -Region,East,1039,2010-03-26,12 -Region,East,814,2010-04-02,13 -Region,East,1002,2010-04-09,14 -Region,East,1068,2010-04-16,15 -Region,East,1048,2010-04-23,16 -Region,East,1021,2010-04-30,17 -Region,East,899,2010-05-07,18 -Region,East,937,2010-05-14,19 -Region,East,964,2010-05-21,20 -Region,East,1033,2010-05-28,21 -Region,East,845,2010-06-04,22 -Region,East,962,2010-06-11,23 -Region,East,908,2010-06-18,24 -Region,East,897,2010-06-25,25 -Region,East,920,2010-07-02,26 -Region,East,886,2010-07-09,27 -Region,East,851,2010-07-16,28 -Region,East,901,2010-07-23,29 -Region,East,882,2010-07-30,30 -Region,East,883,2010-08-06,31 -Region,East,847,2010-08-13,32 -Region,East,840,2010-08-20,33 -Region,East,898,2010-08-27,34 -Region,East,784,2010-09-03,35 -Region,East,897,2010-09-10,36 -Region,East,891,2010-09-17,37 -Region,East,949,2010-09-24,38 -Region,East,898,2010-10-01,39 -Region,East,967,2010-10-08,40 -Region,East,993,2010-10-15,41 -Region,East,990,2010-10-22,42 -Region,East,1012,2010-10-29,43 -Region,East,1043,2010-11-05,44 -Region,East,1031,2010-11-12,45 -Region,East,942,2010-11-19,46 -Region,East,985,2010-11-26,47 -Region,East,994,2010-12-03,48 -Region,East,1140,2010-12-10,49 -Region,East,1114,2010-12-17,50 -Region,East,1233,2010-12-24,51 -Region,East,950,2010-12-31,52 -Region,London,1226,2010-01-08,1 -Region,London,1262,2010-01-15,2 -Region,London,1186,2010-01-22,3 -Region,London,1093,2010-01-29,4 -Region,London,1035,2010-02-05,5 -Region,London,1049,2010-02-12,6 -Region,London,1031,2010-02-19,7 -Region,London,983,2010-02-26,8 -Region,London,917,2010-03-05,9 -Region,London,960,2010-03-12,10 -Region,London,979,2010-03-19,11 -Region,London,920,2010-03-26,12 -Region,London,731,2010-04-02,13 -Region,London,981,2010-04-09,14 -Region,London,950,2010-04-16,15 -Region,London,918,2010-04-23,16 -Region,London,916,2010-04-30,17 -Region,London,797,2010-05-07,18 -Region,London,963,2010-05-14,19 -Region,London,916,2010-05-21,20 -Region,London,939,2010-05-28,21 -Region,London,848,2010-06-04,22 -Region,London,908,2010-06-11,23 -Region,London,812,2010-06-18,24 -Region,London,805,2010-06-25,25 -Region,London,887,2010-07-02,26 -Region,London,861,2010-07-09,27 -Region,London,900,2010-07-16,28 -Region,London,852,2010-07-23,29 -Region,London,777,2010-07-30,30 -Region,London,826,2010-08-06,31 -Region,London,783,2010-08-13,32 -Region,London,882,2010-08-20,33 -Region,London,817,2010-08-27,34 -Region,London,740,2010-09-03,35 -Region,London,838,2010-09-10,36 -Region,London,880,2010-09-17,37 -Region,London,858,2010-09-24,38 -Region,London,852,2010-10-01,39 -Region,London,955,2010-10-08,40 -Region,London,898,2010-10-15,41 -Region,London,894,2010-10-22,42 -Region,London,944,2010-10-29,43 -Region,London,961,2010-11-05,44 -Region,London,900,2010-11-12,45 -Region,London,889,2010-11-19,46 -Region,London,883,2010-11-26,47 -Region,London,808,2010-12-03,48 -Region,London,1107,2010-12-10,49 -Region,London,1015,2010-12-17,50 -Region,London,1149,2010-12-24,51 -Region,London,965,2010-12-31,52 -Region,South East,1904,2010-01-08,1 -Region,South East,1981,2010-01-15,2 -Region,South East,1877,2010-01-22,3 -Region,South East,1856,2010-01-29,4 -Region,South East,1576,2010-02-05,5 -Region,South East,1547,2010-02-12,6 -Region,South East,1570,2010-02-19,7 -Region,South East,1594,2010-02-26,8 -Region,South East,1580,2010-03-05,9 -Region,South East,1457,2010-03-12,10 -Region,South East,1466,2010-03-19,11 -Region,South East,1484,2010-03-26,12 -Region,South East,1174,2010-04-02,13 -Region,South East,1473,2010-04-09,14 -Region,South East,1476,2010-04-16,15 -Region,South East,1438,2010-04-23,16 -Region,South East,1443,2010-04-30,17 -Region,South East,1252,2010-05-07,18 -Region,South East,1463,2010-05-14,19 -Region,South East,1401,2010-05-21,20 -Region,South East,1415,2010-05-28,21 -Region,South East,1202,2010-06-04,22 -Region,South East,1413,2010-06-11,23 -Region,South East,1299,2010-06-18,24 -Region,South East,1283,2010-06-25,25 -Region,South East,1425,2010-07-02,26 -Region,South East,1315,2010-07-09,27 -Region,South East,1285,2010-07-16,28 -Region,South East,1154,2010-07-23,29 -Region,South East,1187,2010-07-30,30 -Region,South East,1303,2010-08-06,31 -Region,South East,1292,2010-08-13,32 -Region,South East,1280,2010-08-20,33 -Region,South East,1307,2010-08-27,34 -Region,South East,1151,2010-09-03,35 -Region,South East,1372,2010-09-10,36 -Region,South East,1348,2010-09-17,37 -Region,South East,1364,2010-09-24,38 -Region,South East,1294,2010-10-01,39 -Region,South East,1448,2010-10-08,40 -Region,South East,1415,2010-10-15,41 -Region,South East,1450,2010-10-22,42 -Region,South East,1363,2010-10-29,43 -Region,South East,1517,2010-11-05,44 -Region,South East,1430,2010-11-12,45 -Region,South East,1452,2010-11-19,46 -Region,South East,1440,2010-11-26,47 -Region,South East,1293,2010-12-03,48 -Region,South East,1866,2010-12-10,49 -Region,South East,1701,2010-12-17,50 -Region,South East,1717,2010-12-24,51 -Region,South East,1331,2010-12-31,52 -Region,South West,1395,2010-01-08,1 -Region,South West,1354,2010-01-15,2 -Region,South West,1294,2010-01-22,3 -Region,South West,1150,2010-01-29,4 -Region,South West,1147,2010-02-05,5 -Region,South West,1070,2010-02-12,6 -Region,South West,1069,2010-02-19,7 -Region,South West,1098,2010-02-26,8 -Region,South West,1041,2010-03-05,9 -Region,South West,1042,2010-03-12,10 -Region,South West,1015,2010-03-19,11 -Region,South West,1066,2010-03-26,12 -Region,South West,921,2010-04-02,13 -Region,South West,991,2010-04-09,14 -Region,South West,1056,2010-04-16,15 -Region,South West,1019,2010-04-23,16 -Region,South West,999,2010-04-30,17 -Region,South West,872,2010-05-07,18 -Region,South West,1055,2010-05-14,19 -Region,South West,965,2010-05-21,20 -Region,South West,978,2010-05-28,21 -Region,South West,831,2010-06-04,22 -Region,South West,927,2010-06-11,23 -Region,South West,988,2010-06-18,24 -Region,South West,848,2010-06-25,25 -Region,South West,939,2010-07-02,26 -Region,South West,950,2010-07-09,27 -Region,South West,862,2010-07-16,28 -Region,South West,875,2010-07-23,29 -Region,South West,873,2010-07-30,30 -Region,South West,906,2010-08-06,31 -Region,South West,874,2010-08-13,32 -Region,South West,939,2010-08-20,33 -Region,South West,938,2010-08-27,34 -Region,South West,817,2010-09-03,35 -Region,South West,992,2010-09-10,36 -Region,South West,933,2010-09-17,37 -Region,South West,930,2010-09-24,38 -Region,South West,934,2010-10-01,39 -Region,South West,937,2010-10-08,40 -Region,South West,976,2010-10-15,41 -Region,South West,942,2010-10-22,42 -Region,South West,968,2010-10-29,43 -Region,South West,992,2010-11-05,44 -Region,South West,963,2010-11-12,45 -Region,South West,1010,2010-11-19,46 -Region,South West,987,2010-11-26,47 -Region,South West,1003,2010-12-03,48 -Region,South West,1170,2010-12-10,49 -Region,South West,1143,2010-12-17,50 -Region,South West,1157,2010-12-24,51 -Region,South West,924,2010-12-31,52 -Region,Wales,879,2010-01-08,1 -Region,Wales,758,2010-01-15,2 -Region,Wales,774,2010-01-22,3 -Region,Wales,663,2010-01-29,4 -Region,Wales,688,2010-02-05,5 -Region,Wales,622,2010-02-12,6 -Region,Wales,636,2010-02-19,7 -Region,Wales,665,2010-02-26,8 -Region,Wales,623,2010-03-05,9 -Region,Wales,607,2010-03-12,10 -Region,Wales,617,2010-03-19,11 -Region,Wales,591,2010-03-26,12 -Region,Wales,501,2010-04-02,13 -Region,Wales,608,2010-04-09,14 -Region,Wales,639,2010-04-16,15 -Region,Wales,557,2010-04-23,16 -Region,Wales,616,2010-04-30,17 -Region,Wales,555,2010-05-07,18 -Region,Wales,565,2010-05-14,19 -Region,Wales,591,2010-05-21,20 -Region,Wales,563,2010-05-28,21 -Region,Wales,541,2010-06-04,22 -Region,Wales,591,2010-06-11,23 -Region,Wales,525,2010-06-18,24 -Region,Wales,510,2010-06-25,25 -Region,Wales,592,2010-07-02,26 -Region,Wales,555,2010-07-09,27 -Region,Wales,573,2010-07-16,28 -Region,Wales,528,2010-07-23,29 -Region,Wales,552,2010-07-30,30 -Region,Wales,538,2010-08-06,31 -Region,Wales,510,2010-08-13,32 -Region,Wales,526,2010-08-20,33 -Region,Wales,511,2010-08-27,34 -Region,Wales,514,2010-09-03,35 -Region,Wales,531,2010-09-10,36 -Region,Wales,508,2010-09-17,37 -Region,Wales,567,2010-09-24,38 -Region,Wales,579,2010-10-01,39 -Region,Wales,580,2010-10-08,40 -Region,Wales,562,2010-10-15,41 -Region,Wales,599,2010-10-22,42 -Region,Wales,531,2010-10-29,43 -Region,Wales,572,2010-11-05,44 -Region,Wales,564,2010-11-12,45 -Region,Wales,597,2010-11-19,46 -Region,Wales,605,2010-11-26,47 -Region,Wales,651,2010-12-03,48 -Region,Wales,695,2010-12-10,49 -Region,Wales,690,2010-12-17,50 -Region,Wales,751,2010-12-24,51 -Region,Wales,707,2010-12-31,52 -Total deaths,all ages,12644,2011-01-07,1 -Total deaths,all ages,13133,2011-01-14,2 -Total deaths,all ages,11438,2011-01-21,3 -Total deaths,all ages,10555,2011-01-28,4 -Total deaths,all ages,10235,2011-02-04,5 -Total deaths,all ages,10019,2011-02-11,6 -Total deaths,all ages,9757,2011-02-18,7 -Total deaths,all ages,9433,2011-02-25,8 -Total deaths,all ages,9453,2011-03-04,9 -Total deaths,all ages,9648,2011-03-11,10 -Total deaths,all ages,9842,2011-03-18,11 -Total deaths,all ages,9707,2011-03-25,12 -Total deaths,all ages,9312,2011-04-01,13 -Total deaths,all ages,9557,2011-04-08,14 -Total deaths,all ages,9327,2011-04-15,15 -Total deaths,all ages,8335,2011-04-22,16 -Total deaths,all ages,8064,2011-04-29,17 -Total deaths,all ages,9853,2011-05-06,18 -Total deaths,all ages,10140,2011-05-13,19 -Total deaths,all ages,8949,2011-05-20,20 -Total deaths,all ages,9163,2011-05-27,21 -Total deaths,all ages,7913,2011-06-03,22 -Total deaths,all ages,9254,2011-06-10,23 -Total deaths,all ages,8961,2011-06-17,24 -Total deaths,all ages,8715,2011-06-24,25 -Total deaths,all ages,8710,2011-07-01,26 -Total deaths,all ages,8705,2011-07-08,27 -Total deaths,all ages,8461,2011-07-15,28 -Total deaths,all ages,8500,2011-07-22,29 -Total deaths,all ages,8456,2011-07-29,30 -Total deaths,all ages,8787,2011-08-05,31 -Total deaths,all ages,8573,2011-08-12,32 -Total deaths,all ages,8426,2011-08-19,33 -Total deaths,all ages,8466,2011-08-26,34 -Total deaths,all ages,7717,2011-09-02,35 -Total deaths,all ages,8769,2011-09-09,36 -Total deaths,all ages,8612,2011-09-16,37 -Total deaths,all ages,8527,2011-09-23,38 -Total deaths,all ages,8919,2011-09-30,39 -Total deaths,all ages,8719,2011-10-07,40 -Total deaths,all ages,8705,2011-10-14,41 -Total deaths,all ages,8638,2011-10-21,42 -Total deaths,all ages,9139,2011-10-28,43 -Total deaths,all ages,9640,2011-11-04,44 -Total deaths,all ages,9042,2011-11-11,45 -Total deaths,all ages,9305,2011-11-18,46 -Total deaths,all ages,9166,2011-11-25,47 -Total deaths,all ages,9203,2011-12-02,48 -Total deaths,all ages,9828,2011-12-09,49 -Total deaths,all ages,10348,2011-12-16,50 -Total deaths,all ages,11151,2011-12-23,51 -Total deaths,all ages,8472,2011-12-30,52 -Total deaths,average of same week over 5 years,12166.2,2011-01-07,1 -Total deaths,average of same week over 5 years,12540,2011-01-14,2 -Total deaths,average of same week over 5 years,11711,2011-01-21,3 -Total deaths,average of same week over 5 years,11031.8,2011-01-28,4 -Total deaths,average of same week over 5 years,10674.8,2011-02-04,5 -Total deaths,average of same week over 5 years,10442.2,2011-02-11,6 -Total deaths,average of same week over 5 years,10586.6,2011-02-18,7 -Total deaths,average of same week over 5 years,10558.4,2011-02-25,8 -Total deaths,average of same week over 5 years,10483.4,2011-03-04,9 -Total deaths,average of same week over 5 years,10232.4,2011-03-11,10 -Total deaths,average of same week over 5 years,10084.2,2011-03-18,11 -Total deaths,average of same week over 5 years,9661.8,2011-03-25,12 -Total deaths,average of same week over 5 years,9714.4,2011-04-01,13 -Total deaths,average of same week over 5 years,9822.4,2011-04-08,14 -Total deaths,average of same week over 5 years,9639.8,2011-04-15,15 -Total deaths,average of same week over 5 years,10122.4,2011-04-22,16 -Total deaths,average of same week over 5 years,9918.8,2011-04-29,17 -Total deaths,average of same week over 5 years,9221.2,2011-05-06,18 -Total deaths,average of same week over 5 years,9016.8,2011-05-13,19 -Total deaths,average of same week over 5 years,9373.4,2011-05-20,20 -Total deaths,average of same week over 5 years,9309.4,2011-05-27,21 -Total deaths,average of same week over 5 years,8339.4,2011-06-03,22 -Total deaths,average of same week over 5 years,9322,2011-06-10,23 -Total deaths,average of same week over 5 years,8984.8,2011-06-17,24 -Total deaths,average of same week over 5 years,8812.8,2011-06-24,25 -Total deaths,average of same week over 5 years,8757.8,2011-07-01,26 -Total deaths,average of same week over 5 years,8883.8,2011-07-08,27 -Total deaths,average of same week over 5 years,8629.6,2011-07-15,28 -Total deaths,average of same week over 5 years,8643,2011-07-22,29 -Total deaths,average of same week over 5 years,8737.4,2011-07-29,30 -Total deaths,average of same week over 5 years,8619.2,2011-08-05,31 -Total deaths,average of same week over 5 years,8549.8,2011-08-12,32 -Total deaths,average of same week over 5 years,8588.2,2011-08-19,33 -Total deaths,average of same week over 5 years,8642.8,2011-08-26,34 -Total deaths,average of same week over 5 years,7984.6,2011-09-02,35 -Total deaths,average of same week over 5 years,8619.4,2011-09-09,36 -Total deaths,average of same week over 5 years,8671.2,2011-09-16,37 -Total deaths,average of same week over 5 years,8707,2011-09-23,38 -Total deaths,average of same week over 5 years,8829.4,2011-09-30,39 -Total deaths,average of same week over 5 years,8908.2,2011-10-07,40 -Total deaths,average of same week over 5 years,9120,2011-10-14,41 -Total deaths,average of same week over 5 years,9240.2,2011-10-21,42 -Total deaths,average of same week over 5 years,9327.4,2011-10-28,43 -Total deaths,average of same week over 5 years,9501,2011-11-04,44 -Total deaths,average of same week over 5 years,9580.2,2011-11-11,45 -Total deaths,average of same week over 5 years,9654.2,2011-11-18,46 -Total deaths,average of same week over 5 years,9787.6,2011-11-25,47 -Total deaths,average of same week over 5 years,9677.4,2011-12-02,48 -Total deaths,average of same week over 5 years,10328.2,2011-12-09,49 -Total deaths,average of same week over 5 years,10500.8,2011-12-16,50 -Total deaths,average of same week over 5 years,10994,2011-12-23,51 -Total deaths,average of same week over 5 years,8938.8,2011-12-30,52 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2001,2645,2011-01-07,1 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,2706,2011-01-07,1 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,2699,2011-01-14,2 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,2103,2011-01-21,3 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1754,2011-01-28,4 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1587,2011-02-04,5 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1506,2011-02-11,6 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1434,2011-02-18,7 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1370,2011-02-25,8 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1379,2011-03-04,9 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1412,2011-03-11,10 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1412,2011-03-18,11 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1466,2011-03-25,12 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1336,2011-04-01,13 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1378,2011-04-08,14 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1322,2011-04-15,15 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1218,2011-04-22,16 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1173,2011-04-29,17 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1374,2011-05-06,18 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1380,2011-05-13,19 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1154,2011-05-20,20 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1232,2011-05-27,21 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1020,2011-06-03,22 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1153,2011-06-10,23 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1153,2011-06-17,24 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1120,2011-06-24,25 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1073,2011-07-01,26 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1084,2011-07-08,27 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1065,2011-07-15,28 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,995,2011-07-22,29 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1007,2011-07-29,30 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1053,2011-08-05,31 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1050,2011-08-12,32 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,954,2011-08-19,33 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,970,2011-08-26,34 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,932,2011-09-02,35 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,988,2011-09-09,36 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1008,2011-09-16,37 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1014,2011-09-23,38 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1058,2011-09-30,39 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1140,2011-10-07,40 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1061,2011-10-14,41 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1098,2011-10-21,42 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1132,2011-10-28,43 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1291,2011-11-04,44 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1249,2011-11-11,45 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1218,2011-11-18,46 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1229,2011-11-25,47 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1250,2011-12-02,48 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1395,2011-12-09,49 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1471,2011-12-16,50 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1666,2011-12-23,51 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1407,2011-12-30,52 -Persons,Under 1 year,54,2011-01-07,1 -Persons,Under 1 year,59,2011-01-14,2 -Persons,Under 1 year,56,2011-01-21,3 -Persons,Under 1 year,69,2011-01-28,4 -Persons,Under 1 year,44,2011-02-04,5 -Persons,Under 1 year,69,2011-02-11,6 -Persons,Under 1 year,64,2011-02-18,7 -Persons,Under 1 year,57,2011-02-25,8 -Persons,Under 1 year,60,2011-03-04,9 -Persons,Under 1 year,66,2011-03-11,10 -Persons,Under 1 year,63,2011-03-18,11 -Persons,Under 1 year,75,2011-03-25,12 -Persons,Under 1 year,55,2011-04-01,13 -Persons,Under 1 year,70,2011-04-08,14 -Persons,Under 1 year,76,2011-04-15,15 -Persons,Under 1 year,59,2011-04-22,16 -Persons,Under 1 year,46,2011-04-29,17 -Persons,Under 1 year,66,2011-05-06,18 -Persons,Under 1 year,85,2011-05-13,19 -Persons,Under 1 year,70,2011-05-20,20 -Persons,Under 1 year,62,2011-05-27,21 -Persons,Under 1 year,53,2011-06-03,22 -Persons,Under 1 year,60,2011-06-10,23 -Persons,Under 1 year,69,2011-06-17,24 -Persons,Under 1 year,59,2011-06-24,25 -Persons,Under 1 year,63,2011-07-01,26 -Persons,Under 1 year,64,2011-07-08,27 -Persons,Under 1 year,40,2011-07-15,28 -Persons,Under 1 year,66,2011-07-22,29 -Persons,Under 1 year,62,2011-07-29,30 -Persons,Under 1 year,52,2011-08-05,31 -Persons,Under 1 year,61,2011-08-12,32 -Persons,Under 1 year,65,2011-08-19,33 -Persons,Under 1 year,77,2011-08-26,34 -Persons,Under 1 year,53,2011-09-02,35 -Persons,Under 1 year,52,2011-09-09,36 -Persons,Under 1 year,53,2011-09-16,37 -Persons,Under 1 year,53,2011-09-23,38 -Persons,Under 1 year,54,2011-09-30,39 -Persons,Under 1 year,65,2011-10-07,40 -Persons,Under 1 year,69,2011-10-14,41 -Persons,Under 1 year,68,2011-10-21,42 -Persons,Under 1 year,55,2011-10-28,43 -Persons,Under 1 year,61,2011-11-04,44 -Persons,Under 1 year,56,2011-11-11,45 -Persons,Under 1 year,64,2011-11-18,46 -Persons,Under 1 year,61,2011-11-25,47 -Persons,Under 1 year,56,2011-12-02,48 -Persons,Under 1 year,52,2011-12-09,49 -Persons,Under 1 year,74,2011-12-16,50 -Persons,Under 1 year,79,2011-12-23,51 -Persons,Under 1 year,48,2011-12-30,52 -Persons,01-14,30,2011-01-07,1 -Persons,01-14,32,2011-01-14,2 -Persons,01-14,18,2011-01-21,3 -Persons,01-14,29,2011-01-28,4 -Persons,01-14,19,2011-02-04,5 -Persons,01-14,18,2011-02-11,6 -Persons,01-14,16,2011-02-18,7 -Persons,01-14,17,2011-02-25,8 -Persons,01-14,27,2011-03-04,9 -Persons,01-14,21,2011-03-11,10 -Persons,01-14,29,2011-03-18,11 -Persons,01-14,24,2011-03-25,12 -Persons,01-14,35,2011-04-01,13 -Persons,01-14,25,2011-04-08,14 -Persons,01-14,27,2011-04-15,15 -Persons,01-14,19,2011-04-22,16 -Persons,01-14,20,2011-04-29,17 -Persons,01-14,19,2011-05-06,18 -Persons,01-14,19,2011-05-13,19 -Persons,01-14,20,2011-05-20,20 -Persons,01-14,21,2011-05-27,21 -Persons,01-14,17,2011-06-03,22 -Persons,01-14,23,2011-06-10,23 -Persons,01-14,18,2011-06-17,24 -Persons,01-14,19,2011-06-24,25 -Persons,01-14,10,2011-07-01,26 -Persons,01-14,21,2011-07-08,27 -Persons,01-14,13,2011-07-15,28 -Persons,01-14,21,2011-07-22,29 -Persons,01-14,25,2011-07-29,30 -Persons,01-14,19,2011-08-05,31 -Persons,01-14,12,2011-08-12,32 -Persons,01-14,10,2011-08-19,33 -Persons,01-14,12,2011-08-26,34 -Persons,01-14,17,2011-09-02,35 -Persons,01-14,17,2011-09-09,36 -Persons,01-14,27,2011-09-16,37 -Persons,01-14,20,2011-09-23,38 -Persons,01-14,22,2011-09-30,39 -Persons,01-14,16,2011-10-07,40 -Persons,01-14,18,2011-10-14,41 -Persons,01-14,16,2011-10-21,42 -Persons,01-14,17,2011-10-28,43 -Persons,01-14,20,2011-11-04,44 -Persons,01-14,30,2011-11-11,45 -Persons,01-14,15,2011-11-18,46 -Persons,01-14,16,2011-11-25,47 -Persons,01-14,22,2011-12-02,48 -Persons,01-14,21,2011-12-09,49 -Persons,01-14,12,2011-12-16,50 -Persons,01-14,25,2011-12-23,51 -Persons,01-14,22,2011-12-30,52 -Persons,15-44,306,2011-01-07,1 -Persons,15-44,378,2011-01-14,2 -Persons,15-44,388,2011-01-21,3 -Persons,15-44,331,2011-01-28,4 -Persons,15-44,327,2011-02-04,5 -Persons,15-44,302,2011-02-11,6 -Persons,15-44,340,2011-02-18,7 -Persons,15-44,287,2011-02-25,8 -Persons,15-44,286,2011-03-04,9 -Persons,15-44,299,2011-03-11,10 -Persons,15-44,304,2011-03-18,11 -Persons,15-44,312,2011-03-25,12 -Persons,15-44,264,2011-04-01,13 -Persons,15-44,289,2011-04-08,14 -Persons,15-44,312,2011-04-15,15 -Persons,15-44,239,2011-04-22,16 -Persons,15-44,257,2011-04-29,17 -Persons,15-44,315,2011-05-06,18 -Persons,15-44,352,2011-05-13,19 -Persons,15-44,291,2011-05-20,20 -Persons,15-44,302,2011-05-27,21 -Persons,15-44,255,2011-06-03,22 -Persons,15-44,325,2011-06-10,23 -Persons,15-44,296,2011-06-17,24 -Persons,15-44,290,2011-06-24,25 -Persons,15-44,323,2011-07-01,26 -Persons,15-44,301,2011-07-08,27 -Persons,15-44,258,2011-07-15,28 -Persons,15-44,305,2011-07-22,29 -Persons,15-44,260,2011-07-29,30 -Persons,15-44,297,2011-08-05,31 -Persons,15-44,272,2011-08-12,32 -Persons,15-44,291,2011-08-19,33 -Persons,15-44,287,2011-08-26,34 -Persons,15-44,254,2011-09-02,35 -Persons,15-44,249,2011-09-09,36 -Persons,15-44,279,2011-09-16,37 -Persons,15-44,309,2011-09-23,38 -Persons,15-44,302,2011-09-30,39 -Persons,15-44,268,2011-10-07,40 -Persons,15-44,288,2011-10-14,41 -Persons,15-44,264,2011-10-21,42 -Persons,15-44,306,2011-10-28,43 -Persons,15-44,285,2011-11-04,44 -Persons,15-44,288,2011-11-11,45 -Persons,15-44,312,2011-11-18,46 -Persons,15-44,274,2011-11-25,47 -Persons,15-44,287,2011-12-02,48 -Persons,15-44,308,2011-12-09,49 -Persons,15-44,314,2011-12-16,50 -Persons,15-44,327,2011-12-23,51 -Persons,15-44,176,2011-12-30,52 -Persons,45-64,1548,2011-01-07,1 -Persons,45-64,1701,2011-01-14,2 -Persons,45-64,1403,2011-01-21,3 -Persons,45-64,1363,2011-01-28,4 -Persons,45-64,1337,2011-02-04,5 -Persons,45-64,1279,2011-02-11,6 -Persons,45-64,1283,2011-02-18,7 -Persons,45-64,1213,2011-02-25,8 -Persons,45-64,1274,2011-03-04,9 -Persons,45-64,1213,2011-03-11,10 -Persons,45-64,1260,2011-03-18,11 -Persons,45-64,1179,2011-03-25,12 -Persons,45-64,1226,2011-04-01,13 -Persons,45-64,1245,2011-04-08,14 -Persons,45-64,1205,2011-04-15,15 -Persons,45-64,1057,2011-04-22,16 -Persons,45-64,997,2011-04-29,17 -Persons,45-64,1302,2011-05-06,18 -Persons,45-64,1358,2011-05-13,19 -Persons,45-64,1191,2011-05-20,20 -Persons,45-64,1233,2011-05-27,21 -Persons,45-64,1050,2011-06-03,22 -Persons,45-64,1197,2011-06-10,23 -Persons,45-64,1227,2011-06-17,24 -Persons,45-64,1126,2011-06-24,25 -Persons,45-64,1131,2011-07-01,26 -Persons,45-64,1155,2011-07-08,27 -Persons,45-64,1163,2011-07-15,28 -Persons,45-64,1168,2011-07-22,29 -Persons,45-64,1118,2011-07-29,30 -Persons,45-64,1182,2011-08-05,31 -Persons,45-64,1174,2011-08-12,32 -Persons,45-64,1119,2011-08-19,33 -Persons,45-64,1133,2011-08-26,34 -Persons,45-64,1018,2011-09-02,35 -Persons,45-64,1149,2011-09-09,36 -Persons,45-64,1159,2011-09-16,37 -Persons,45-64,1107,2011-09-23,38 -Persons,45-64,1172,2011-09-30,39 -Persons,45-64,1065,2011-10-07,40 -Persons,45-64,1202,2011-10-14,41 -Persons,45-64,1130,2011-10-21,42 -Persons,45-64,1195,2011-10-28,43 -Persons,45-64,1262,2011-11-04,44 -Persons,45-64,1149,2011-11-11,45 -Persons,45-64,1208,2011-11-18,46 -Persons,45-64,1158,2011-11-25,47 -Persons,45-64,1209,2011-12-02,48 -Persons,45-64,1268,2011-12-09,49 -Persons,45-64,1243,2011-12-16,50 -Persons,45-64,1268,2011-12-23,51 -Persons,45-64,915,2011-12-30,52 -Persons,65-74,2017,2011-01-07,1 -Persons,65-74,2014,2011-01-14,2 -Persons,65-74,1764,2011-01-21,3 -Persons,65-74,1651,2011-01-28,4 -Persons,65-74,1664,2011-02-04,5 -Persons,65-74,1631,2011-02-11,6 -Persons,65-74,1515,2011-02-18,7 -Persons,65-74,1487,2011-02-25,8 -Persons,65-74,1495,2011-03-04,9 -Persons,65-74,1624,2011-03-11,10 -Persons,65-74,1519,2011-03-18,11 -Persons,65-74,1545,2011-03-25,12 -Persons,65-74,1529,2011-04-01,13 -Persons,65-74,1579,2011-04-08,14 -Persons,65-74,1562,2011-04-15,15 -Persons,65-74,1328,2011-04-22,16 -Persons,65-74,1306,2011-04-29,17 -Persons,65-74,1598,2011-05-06,18 -Persons,65-74,1665,2011-05-13,19 -Persons,65-74,1507,2011-05-20,20 -Persons,65-74,1516,2011-05-27,21 -Persons,65-74,1290,2011-06-03,22 -Persons,65-74,1517,2011-06-10,23 -Persons,65-74,1468,2011-06-17,24 -Persons,65-74,1398,2011-06-24,25 -Persons,65-74,1497,2011-07-01,26 -Persons,65-74,1474,2011-07-08,27 -Persons,65-74,1367,2011-07-15,28 -Persons,65-74,1378,2011-07-22,29 -Persons,65-74,1452,2011-07-29,30 -Persons,65-74,1433,2011-08-05,31 -Persons,65-74,1430,2011-08-12,32 -Persons,65-74,1387,2011-08-19,33 -Persons,65-74,1366,2011-08-26,34 -Persons,65-74,1222,2011-09-02,35 -Persons,65-74,1462,2011-09-09,36 -Persons,65-74,1401,2011-09-16,37 -Persons,65-74,1371,2011-09-23,38 -Persons,65-74,1512,2011-09-30,39 -Persons,65-74,1422,2011-10-07,40 -Persons,65-74,1425,2011-10-14,41 -Persons,65-74,1460,2011-10-21,42 -Persons,65-74,1411,2011-10-28,43 -Persons,65-74,1537,2011-11-04,44 -Persons,65-74,1527,2011-11-11,45 -Persons,65-74,1496,2011-11-18,46 -Persons,65-74,1490,2011-11-25,47 -Persons,65-74,1533,2011-12-02,48 -Persons,65-74,1530,2011-12-09,49 -Persons,65-74,1673,2011-12-16,50 -Persons,65-74,1822,2011-12-23,51 -Persons,65-74,1309,2011-12-30,52 -Persons,75-84,3742,2011-01-07,1 -Persons,75-84,3824,2011-01-14,2 -Persons,75-84,3333,2011-01-21,3 -Persons,75-84,3072,2011-01-28,4 -Persons,75-84,2947,2011-02-04,5 -Persons,75-84,2926,2011-02-11,6 -Persons,75-84,2957,2011-02-18,7 -Persons,75-84,2813,2011-02-25,8 -Persons,75-84,2814,2011-03-04,9 -Persons,75-84,2858,2011-03-11,10 -Persons,75-84,2995,2011-03-18,11 -Persons,75-84,2935,2011-03-25,12 -Persons,75-84,2774,2011-04-01,13 -Persons,75-84,2828,2011-04-08,14 -Persons,75-84,2743,2011-04-15,15 -Persons,75-84,2500,2011-04-22,16 -Persons,75-84,2427,2011-04-29,17 -Persons,75-84,2953,2011-05-06,18 -Persons,75-84,2964,2011-05-13,19 -Persons,75-84,2722,2011-05-20,20 -Persons,75-84,2671,2011-05-27,21 -Persons,75-84,2350,2011-06-03,22 -Persons,75-84,2729,2011-06-10,23 -Persons,75-84,2626,2011-06-17,24 -Persons,75-84,2682,2011-06-24,25 -Persons,75-84,2423,2011-07-01,26 -Persons,75-84,2570,2011-07-08,27 -Persons,75-84,2571,2011-07-15,28 -Persons,75-84,2539,2011-07-22,29 -Persons,75-84,2466,2011-07-29,30 -Persons,75-84,2650,2011-08-05,31 -Persons,75-84,2617,2011-08-12,32 -Persons,75-84,2473,2011-08-19,33 -Persons,75-84,2544,2011-08-26,34 -Persons,75-84,2369,2011-09-02,35 -Persons,75-84,2659,2011-09-09,36 -Persons,75-84,2536,2011-09-16,37 -Persons,75-84,2509,2011-09-23,38 -Persons,75-84,2563,2011-09-30,39 -Persons,75-84,2634,2011-10-07,40 -Persons,75-84,2510,2011-10-14,41 -Persons,75-84,2565,2011-10-21,42 -Persons,75-84,2637,2011-10-28,43 -Persons,75-84,2798,2011-11-04,44 -Persons,75-84,2721,2011-11-11,45 -Persons,75-84,2732,2011-11-18,46 -Persons,75-84,2696,2011-11-25,47 -Persons,75-84,2642,2011-12-02,48 -Persons,75-84,2850,2011-12-09,49 -Persons,75-84,3128,2011-12-16,50 -Persons,75-84,3229,2011-12-23,51 -Persons,75-84,2591,2011-12-30,52 -Persons,85+,4945,2011-01-07,1 -Persons,85+,5119,2011-01-14,2 -Persons,85+,4476,2011-01-21,3 -Persons,85+,4039,2011-01-28,4 -Persons,85+,3897,2011-02-04,5 -Persons,85+,3793,2011-02-11,6 -Persons,85+,3581,2011-02-18,7 -Persons,85+,3559,2011-02-25,8 -Persons,85+,3497,2011-03-04,9 -Persons,85+,3567,2011-03-11,10 -Persons,85+,3671,2011-03-18,11 -Persons,85+,3626,2011-03-25,12 -Persons,85+,3428,2011-04-01,13 -Persons,85+,3518,2011-04-08,14 -Persons,85+,3401,2011-04-15,15 -Persons,85+,3130,2011-04-22,16 -Persons,85+,3009,2011-04-29,17 -Persons,85+,3600,2011-05-06,18 -Persons,85+,3697,2011-05-13,19 -Persons,85+,3146,2011-05-20,20 -Persons,85+,3357,2011-05-27,21 -Persons,85+,2896,2011-06-03,22 -Persons,85+,3400,2011-06-10,23 -Persons,85+,3256,2011-06-17,24 -Persons,85+,3131,2011-06-24,25 -Persons,85+,3262,2011-07-01,26 -Persons,85+,3119,2011-07-08,27 -Persons,85+,3049,2011-07-15,28 -Persons,85+,3023,2011-07-22,29 -Persons,85+,3072,2011-07-29,30 -Persons,85+,3153,2011-08-05,31 -Persons,85+,3007,2011-08-12,32 -Persons,85+,3079,2011-08-19,33 -Persons,85+,3045,2011-08-26,34 -Persons,85+,2783,2011-09-02,35 -Persons,85+,3179,2011-09-09,36 -Persons,85+,3157,2011-09-16,37 -Persons,85+,3157,2011-09-23,38 -Persons,85+,3294,2011-09-30,39 -Persons,85+,3249,2011-10-07,40 -Persons,85+,3192,2011-10-14,41 -Persons,85+,3121,2011-10-21,42 -Persons,85+,3512,2011-10-28,43 -Persons,85+,3677,2011-11-04,44 -Persons,85+,3271,2011-11-11,45 -Persons,85+,3475,2011-11-18,46 -Persons,85+,3466,2011-11-25,47 -Persons,85+,3454,2011-12-02,48 -Persons,85+,3799,2011-12-09,49 -Persons,85+,3903,2011-12-16,50 -Persons,85+,4394,2011-12-23,51 -Persons,85+,3411,2011-12-30,52 -Males,Under 1 year,24,2011-01-07,1 -Males,Under 1 year,35,2011-01-14,2 -Males,Under 1 year,34,2011-01-21,3 -Males,Under 1 year,43,2011-01-28,4 -Males,Under 1 year,31,2011-02-04,5 -Males,Under 1 year,39,2011-02-11,6 -Males,Under 1 year,41,2011-02-18,7 -Males,Under 1 year,33,2011-02-25,8 -Males,Under 1 year,37,2011-03-04,9 -Males,Under 1 year,44,2011-03-11,10 -Males,Under 1 year,40,2011-03-18,11 -Males,Under 1 year,45,2011-03-25,12 -Males,Under 1 year,31,2011-04-01,13 -Males,Under 1 year,35,2011-04-08,14 -Males,Under 1 year,42,2011-04-15,15 -Males,Under 1 year,30,2011-04-22,16 -Males,Under 1 year,24,2011-04-29,17 -Males,Under 1 year,41,2011-05-06,18 -Males,Under 1 year,45,2011-05-13,19 -Males,Under 1 year,39,2011-05-20,20 -Males,Under 1 year,36,2011-05-27,21 -Males,Under 1 year,29,2011-06-03,22 -Males,Under 1 year,41,2011-06-10,23 -Males,Under 1 year,39,2011-06-17,24 -Males,Under 1 year,38,2011-06-24,25 -Males,Under 1 year,41,2011-07-01,26 -Males,Under 1 year,39,2011-07-08,27 -Males,Under 1 year,23,2011-07-15,28 -Males,Under 1 year,39,2011-07-22,29 -Males,Under 1 year,44,2011-07-29,30 -Males,Under 1 year,31,2011-08-05,31 -Males,Under 1 year,38,2011-08-12,32 -Males,Under 1 year,33,2011-08-19,33 -Males,Under 1 year,49,2011-08-26,34 -Males,Under 1 year,29,2011-09-02,35 -Males,Under 1 year,28,2011-09-09,36 -Males,Under 1 year,32,2011-09-16,37 -Males,Under 1 year,32,2011-09-23,38 -Males,Under 1 year,30,2011-09-30,39 -Males,Under 1 year,38,2011-10-07,40 -Males,Under 1 year,30,2011-10-14,41 -Males,Under 1 year,44,2011-10-21,42 -Males,Under 1 year,32,2011-10-28,43 -Males,Under 1 year,34,2011-11-04,44 -Males,Under 1 year,30,2011-11-11,45 -Males,Under 1 year,35,2011-11-18,46 -Males,Under 1 year,39,2011-11-25,47 -Males,Under 1 year,24,2011-12-02,48 -Males,Under 1 year,33,2011-12-09,49 -Males,Under 1 year,49,2011-12-16,50 -Males,Under 1 year,45,2011-12-23,51 -Males,Under 1 year,29,2011-12-30,52 -Males,01-14,18,2011-01-07,1 -Males,01-14,16,2011-01-14,2 -Males,01-14,8,2011-01-21,3 -Males,01-14,14,2011-01-28,4 -Males,01-14,7,2011-02-04,5 -Males,01-14,12,2011-02-11,6 -Males,01-14,12,2011-02-18,7 -Males,01-14,8,2011-02-25,8 -Males,01-14,15,2011-03-04,9 -Males,01-14,10,2011-03-11,10 -Males,01-14,11,2011-03-18,11 -Males,01-14,13,2011-03-25,12 -Males,01-14,18,2011-04-01,13 -Males,01-14,16,2011-04-08,14 -Males,01-14,13,2011-04-15,15 -Males,01-14,10,2011-04-22,16 -Males,01-14,11,2011-04-29,17 -Males,01-14,11,2011-05-06,18 -Males,01-14,9,2011-05-13,19 -Males,01-14,11,2011-05-20,20 -Males,01-14,14,2011-05-27,21 -Males,01-14,6,2011-06-03,22 -Males,01-14,13,2011-06-10,23 -Males,01-14,8,2011-06-17,24 -Males,01-14,12,2011-06-24,25 -Males,01-14,6,2011-07-01,26 -Males,01-14,9,2011-07-08,27 -Males,01-14,10,2011-07-15,28 -Males,01-14,13,2011-07-22,29 -Males,01-14,14,2011-07-29,30 -Males,01-14,13,2011-08-05,31 -Males,01-14,8,2011-08-12,32 -Males,01-14,4,2011-08-19,33 -Males,01-14,8,2011-08-26,34 -Males,01-14,10,2011-09-02,35 -Males,01-14,8,2011-09-09,36 -Males,01-14,19,2011-09-16,37 -Males,01-14,15,2011-09-23,38 -Males,01-14,12,2011-09-30,39 -Males,01-14,13,2011-10-07,40 -Males,01-14,10,2011-10-14,41 -Males,01-14,9,2011-10-21,42 -Males,01-14,12,2011-10-28,43 -Males,01-14,15,2011-11-04,44 -Males,01-14,18,2011-11-11,45 -Males,01-14,10,2011-11-18,46 -Males,01-14,10,2011-11-25,47 -Males,01-14,14,2011-12-02,48 -Males,01-14,13,2011-12-09,49 -Males,01-14,8,2011-12-16,50 -Males,01-14,13,2011-12-23,51 -Males,01-14,14,2011-12-30,52 -Males,15-44,190,2011-01-07,1 -Males,15-44,242,2011-01-14,2 -Males,15-44,246,2011-01-21,3 -Males,15-44,208,2011-01-28,4 -Males,15-44,206,2011-02-04,5 -Males,15-44,203,2011-02-11,6 -Males,15-44,224,2011-02-18,7 -Males,15-44,186,2011-02-25,8 -Males,15-44,168,2011-03-04,9 -Males,15-44,196,2011-03-11,10 -Males,15-44,198,2011-03-18,11 -Males,15-44,218,2011-03-25,12 -Males,15-44,167,2011-04-01,13 -Males,15-44,197,2011-04-08,14 -Males,15-44,207,2011-04-15,15 -Males,15-44,154,2011-04-22,16 -Males,15-44,165,2011-04-29,17 -Males,15-44,205,2011-05-06,18 -Males,15-44,241,2011-05-13,19 -Males,15-44,193,2011-05-20,20 -Males,15-44,197,2011-05-27,21 -Males,15-44,145,2011-06-03,22 -Males,15-44,216,2011-06-10,23 -Males,15-44,183,2011-06-17,24 -Males,15-44,180,2011-06-24,25 -Males,15-44,208,2011-07-01,26 -Males,15-44,193,2011-07-08,27 -Males,15-44,159,2011-07-15,28 -Males,15-44,199,2011-07-22,29 -Males,15-44,166,2011-07-29,30 -Males,15-44,196,2011-08-05,31 -Males,15-44,170,2011-08-12,32 -Males,15-44,194,2011-08-19,33 -Males,15-44,179,2011-08-26,34 -Males,15-44,154,2011-09-02,35 -Males,15-44,160,2011-09-09,36 -Males,15-44,180,2011-09-16,37 -Males,15-44,182,2011-09-23,38 -Males,15-44,185,2011-09-30,39 -Males,15-44,166,2011-10-07,40 -Males,15-44,193,2011-10-14,41 -Males,15-44,178,2011-10-21,42 -Males,15-44,200,2011-10-28,43 -Males,15-44,192,2011-11-04,44 -Males,15-44,187,2011-11-11,45 -Males,15-44,190,2011-11-18,46 -Males,15-44,174,2011-11-25,47 -Males,15-44,183,2011-12-02,48 -Males,15-44,199,2011-12-09,49 -Males,15-44,189,2011-12-16,50 -Males,15-44,218,2011-12-23,51 -Males,15-44,107,2011-12-30,52 -Males,45-64,929,2011-01-07,1 -Males,45-64,984,2011-01-14,2 -Males,45-64,839,2011-01-21,3 -Males,45-64,826,2011-01-28,4 -Males,45-64,767,2011-02-04,5 -Males,45-64,756,2011-02-11,6 -Males,45-64,775,2011-02-18,7 -Males,45-64,728,2011-02-25,8 -Males,45-64,761,2011-03-04,9 -Males,45-64,736,2011-03-11,10 -Males,45-64,734,2011-03-18,11 -Males,45-64,707,2011-03-25,12 -Males,45-64,752,2011-04-01,13 -Males,45-64,715,2011-04-08,14 -Males,45-64,731,2011-04-15,15 -Males,45-64,634,2011-04-22,16 -Males,45-64,590,2011-04-29,17 -Males,45-64,787,2011-05-06,18 -Males,45-64,824,2011-05-13,19 -Males,45-64,722,2011-05-20,20 -Males,45-64,735,2011-05-27,21 -Males,45-64,624,2011-06-03,22 -Males,45-64,725,2011-06-10,23 -Males,45-64,713,2011-06-17,24 -Males,45-64,665,2011-06-24,25 -Males,45-64,673,2011-07-01,26 -Males,45-64,688,2011-07-08,27 -Males,45-64,694,2011-07-15,28 -Males,45-64,668,2011-07-22,29 -Males,45-64,648,2011-07-29,30 -Males,45-64,701,2011-08-05,31 -Males,45-64,719,2011-08-12,32 -Males,45-64,668,2011-08-19,33 -Males,45-64,688,2011-08-26,34 -Males,45-64,608,2011-09-02,35 -Males,45-64,680,2011-09-09,36 -Males,45-64,707,2011-09-16,37 -Males,45-64,645,2011-09-23,38 -Males,45-64,712,2011-09-30,39 -Males,45-64,615,2011-10-07,40 -Males,45-64,696,2011-10-14,41 -Males,45-64,686,2011-10-21,42 -Males,45-64,728,2011-10-28,43 -Males,45-64,722,2011-11-04,44 -Males,45-64,698,2011-11-11,45 -Males,45-64,699,2011-11-18,46 -Males,45-64,696,2011-11-25,47 -Males,45-64,728,2011-12-02,48 -Males,45-64,776,2011-12-09,49 -Males,45-64,747,2011-12-16,50 -Males,45-64,798,2011-12-23,51 -Males,45-64,530,2011-12-30,52 -Males,65-74,1152,2011-01-07,1 -Males,65-74,1170,2011-01-14,2 -Males,65-74,1036,2011-01-21,3 -Males,65-74,976,2011-01-28,4 -Males,65-74,975,2011-02-04,5 -Males,65-74,939,2011-02-11,6 -Males,65-74,898,2011-02-18,7 -Males,65-74,847,2011-02-25,8 -Males,65-74,881,2011-03-04,9 -Males,65-74,977,2011-03-11,10 -Males,65-74,925,2011-03-18,11 -Males,65-74,892,2011-03-25,12 -Males,65-74,855,2011-04-01,13 -Males,65-74,931,2011-04-08,14 -Males,65-74,936,2011-04-15,15 -Males,65-74,808,2011-04-22,16 -Males,65-74,749,2011-04-29,17 -Males,65-74,906,2011-05-06,18 -Males,65-74,961,2011-05-13,19 -Males,65-74,882,2011-05-20,20 -Males,65-74,874,2011-05-27,21 -Males,65-74,742,2011-06-03,22 -Males,65-74,933,2011-06-10,23 -Males,65-74,886,2011-06-17,24 -Males,65-74,851,2011-06-24,25 -Males,65-74,899,2011-07-01,26 -Males,65-74,874,2011-07-08,27 -Males,65-74,789,2011-07-15,28 -Males,65-74,808,2011-07-22,29 -Males,65-74,846,2011-07-29,30 -Males,65-74,838,2011-08-05,31 -Males,65-74,818,2011-08-12,32 -Males,65-74,811,2011-08-19,33 -Males,65-74,825,2011-08-26,34 -Males,65-74,724,2011-09-02,35 -Males,65-74,859,2011-09-09,36 -Males,65-74,812,2011-09-16,37 -Males,65-74,818,2011-09-23,38 -Males,65-74,877,2011-09-30,39 -Males,65-74,822,2011-10-07,40 -Males,65-74,855,2011-10-14,41 -Males,65-74,853,2011-10-21,42 -Males,65-74,840,2011-10-28,43 -Males,65-74,898,2011-11-04,44 -Males,65-74,887,2011-11-11,45 -Males,65-74,871,2011-11-18,46 -Males,65-74,896,2011-11-25,47 -Males,65-74,884,2011-12-02,48 -Males,65-74,909,2011-12-09,49 -Males,65-74,992,2011-12-16,50 -Males,65-74,1074,2011-12-23,51 -Males,65-74,763,2011-12-30,52 -Males,75-84,1870,2011-01-07,1 -Males,75-84,1901,2011-01-14,2 -Males,75-84,1660,2011-01-21,3 -Males,75-84,1593,2011-01-28,4 -Males,75-84,1521,2011-02-04,5 -Males,75-84,1507,2011-02-11,6 -Males,75-84,1523,2011-02-18,7 -Males,75-84,1424,2011-02-25,8 -Males,75-84,1450,2011-03-04,9 -Males,75-84,1477,2011-03-11,10 -Males,75-84,1524,2011-03-18,11 -Males,75-84,1477,2011-03-25,12 -Males,75-84,1415,2011-04-01,13 -Males,75-84,1484,2011-04-08,14 -Males,75-84,1426,2011-04-15,15 -Males,75-84,1305,2011-04-22,16 -Males,75-84,1233,2011-04-29,17 -Males,75-84,1580,2011-05-06,18 -Males,75-84,1528,2011-05-13,19 -Males,75-84,1466,2011-05-20,20 -Males,75-84,1387,2011-05-27,21 -Males,75-84,1227,2011-06-03,22 -Males,75-84,1422,2011-06-10,23 -Males,75-84,1412,2011-06-17,24 -Males,75-84,1372,2011-06-24,25 -Males,75-84,1278,2011-07-01,26 -Males,75-84,1320,2011-07-08,27 -Males,75-84,1322,2011-07-15,28 -Males,75-84,1309,2011-07-22,29 -Males,75-84,1282,2011-07-29,30 -Males,75-84,1356,2011-08-05,31 -Males,75-84,1378,2011-08-12,32 -Males,75-84,1296,2011-08-19,33 -Males,75-84,1373,2011-08-26,34 -Males,75-84,1237,2011-09-02,35 -Males,75-84,1391,2011-09-09,36 -Males,75-84,1310,2011-09-16,37 -Males,75-84,1338,2011-09-23,38 -Males,75-84,1353,2011-09-30,39 -Males,75-84,1333,2011-10-07,40 -Males,75-84,1298,2011-10-14,41 -Males,75-84,1380,2011-10-21,42 -Males,75-84,1342,2011-10-28,43 -Males,75-84,1461,2011-11-04,44 -Males,75-84,1420,2011-11-11,45 -Males,75-84,1426,2011-11-18,46 -Males,75-84,1352,2011-11-25,47 -Males,75-84,1308,2011-12-02,48 -Males,75-84,1488,2011-12-09,49 -Males,75-84,1610,2011-12-16,50 -Males,75-84,1664,2011-12-23,51 -Males,75-84,1342,2011-12-30,52 -Males,85+,1715,2011-01-07,1 -Males,85+,1760,2011-01-14,2 -Males,85+,1601,2011-01-21,3 -Males,85+,1374,2011-01-28,4 -Males,85+,1368,2011-02-04,5 -Males,85+,1411,2011-02-11,6 -Males,85+,1297,2011-02-18,7 -Males,85+,1321,2011-02-25,8 -Males,85+,1265,2011-03-04,9 -Males,85+,1228,2011-03-11,10 -Males,85+,1352,2011-03-18,11 -Males,85+,1323,2011-03-25,12 -Males,85+,1197,2011-04-01,13 -Males,85+,1271,2011-04-08,14 -Males,85+,1207,2011-04-15,15 -Males,85+,1117,2011-04-22,16 -Males,85+,1091,2011-04-29,17 -Males,85+,1298,2011-05-06,18 -Males,85+,1309,2011-05-13,19 -Males,85+,1126,2011-05-20,20 -Males,85+,1191,2011-05-27,21 -Males,85+,1058,2011-06-03,22 -Males,85+,1251,2011-06-10,23 -Males,85+,1197,2011-06-17,24 -Males,85+,1123,2011-06-24,25 -Males,85+,1176,2011-07-01,26 -Males,85+,1132,2011-07-08,27 -Males,85+,1079,2011-07-15,28 -Males,85+,1100,2011-07-22,29 -Males,85+,1130,2011-07-29,30 -Males,85+,1138,2011-08-05,31 -Males,85+,1074,2011-08-12,32 -Males,85+,1118,2011-08-19,33 -Males,85+,1128,2011-08-26,34 -Males,85+,1010,2011-09-02,35 -Males,85+,1177,2011-09-09,36 -Males,85+,1184,2011-09-16,37 -Males,85+,1157,2011-09-23,38 -Males,85+,1200,2011-09-30,39 -Males,85+,1144,2011-10-07,40 -Males,85+,1143,2011-10-14,41 -Males,85+,1129,2011-10-21,42 -Males,85+,1281,2011-10-28,43 -Males,85+,1288,2011-11-04,44 -Males,85+,1184,2011-11-11,45 -Males,85+,1180,2011-11-18,46 -Males,85+,1243,2011-11-25,47 -Males,85+,1232,2011-12-02,48 -Males,85+,1366,2011-12-09,49 -Males,85+,1413,2011-12-16,50 -Males,85+,1589,2011-12-23,51 -Males,85+,1221,2011-12-30,52 -Females,Under 1 year,30,2011-01-07,1 -Females,Under 1 year,24,2011-01-14,2 -Females,Under 1 year,22,2011-01-21,3 -Females,Under 1 year,26,2011-01-28,4 -Females,Under 1 year,13,2011-02-04,5 -Females,Under 1 year,30,2011-02-11,6 -Females,Under 1 year,23,2011-02-18,7 -Females,Under 1 year,24,2011-02-25,8 -Females,Under 1 year,23,2011-03-04,9 -Females,Under 1 year,22,2011-03-11,10 -Females,Under 1 year,23,2011-03-18,11 -Females,Under 1 year,30,2011-03-25,12 -Females,Under 1 year,24,2011-04-01,13 -Females,Under 1 year,35,2011-04-08,14 -Females,Under 1 year,34,2011-04-15,15 -Females,Under 1 year,29,2011-04-22,16 -Females,Under 1 year,22,2011-04-29,17 -Females,Under 1 year,25,2011-05-06,18 -Females,Under 1 year,40,2011-05-13,19 -Females,Under 1 year,31,2011-05-20,20 -Females,Under 1 year,26,2011-05-27,21 -Females,Under 1 year,24,2011-06-03,22 -Females,Under 1 year,19,2011-06-10,23 -Females,Under 1 year,30,2011-06-17,24 -Females,Under 1 year,21,2011-06-24,25 -Females,Under 1 year,22,2011-07-01,26 -Females,Under 1 year,25,2011-07-08,27 -Females,Under 1 year,17,2011-07-15,28 -Females,Under 1 year,27,2011-07-22,29 -Females,Under 1 year,18,2011-07-29,30 -Females,Under 1 year,21,2011-08-05,31 -Females,Under 1 year,23,2011-08-12,32 -Females,Under 1 year,32,2011-08-19,33 -Females,Under 1 year,28,2011-08-26,34 -Females,Under 1 year,24,2011-09-02,35 -Females,Under 1 year,24,2011-09-09,36 -Females,Under 1 year,21,2011-09-16,37 -Females,Under 1 year,21,2011-09-23,38 -Females,Under 1 year,24,2011-09-30,39 -Females,Under 1 year,27,2011-10-07,40 -Females,Under 1 year,39,2011-10-14,41 -Females,Under 1 year,24,2011-10-21,42 -Females,Under 1 year,23,2011-10-28,43 -Females,Under 1 year,27,2011-11-04,44 -Females,Under 1 year,26,2011-11-11,45 -Females,Under 1 year,29,2011-11-18,46 -Females,Under 1 year,22,2011-11-25,47 -Females,Under 1 year,32,2011-12-02,48 -Females,Under 1 year,19,2011-12-09,49 -Females,Under 1 year,25,2011-12-16,50 -Females,Under 1 year,34,2011-12-23,51 -Females,Under 1 year,19,2011-12-30,52 -Females,01-14,12,2011-01-07,1 -Females,01-14,16,2011-01-14,2 -Females,01-14,10,2011-01-21,3 -Females,01-14,15,2011-01-28,4 -Females,01-14,12,2011-02-04,5 -Females,01-14,6,2011-02-11,6 -Females,01-14,4,2011-02-18,7 -Females,01-14,9,2011-02-25,8 -Females,01-14,12,2011-03-04,9 -Females,01-14,11,2011-03-11,10 -Females,01-14,18,2011-03-18,11 -Females,01-14,11,2011-03-25,12 -Females,01-14,17,2011-04-01,13 -Females,01-14,9,2011-04-08,14 -Females,01-14,14,2011-04-15,15 -Females,01-14,9,2011-04-22,16 -Females,01-14,9,2011-04-29,17 -Females,01-14,8,2011-05-06,18 -Females,01-14,10,2011-05-13,19 -Females,01-14,9,2011-05-20,20 -Females,01-14,7,2011-05-27,21 -Females,01-14,11,2011-06-03,22 -Females,01-14,10,2011-06-10,23 -Females,01-14,10,2011-06-17,24 -Females,01-14,7,2011-06-24,25 -Females,01-14,4,2011-07-01,26 -Females,01-14,12,2011-07-08,27 -Females,01-14,3,2011-07-15,28 -Females,01-14,8,2011-07-22,29 -Females,01-14,11,2011-07-29,30 -Females,01-14,6,2011-08-05,31 -Females,01-14,4,2011-08-12,32 -Females,01-14,6,2011-08-19,33 -Females,01-14,4,2011-08-26,34 -Females,01-14,7,2011-09-02,35 -Females,01-14,9,2011-09-09,36 -Females,01-14,8,2011-09-16,37 -Females,01-14,5,2011-09-23,38 -Females,01-14,10,2011-09-30,39 -Females,01-14,3,2011-10-07,40 -Females,01-14,8,2011-10-14,41 -Females,01-14,7,2011-10-21,42 -Females,01-14,5,2011-10-28,43 -Females,01-14,5,2011-11-04,44 -Females,01-14,12,2011-11-11,45 -Females,01-14,5,2011-11-18,46 -Females,01-14,6,2011-11-25,47 -Females,01-14,8,2011-12-02,48 -Females,01-14,8,2011-12-09,49 -Females,01-14,4,2011-12-16,50 -Females,01-14,12,2011-12-23,51 -Females,01-14,8,2011-12-30,52 -Females,15-44,116,2011-01-07,1 -Females,15-44,136,2011-01-14,2 -Females,15-44,142,2011-01-21,3 -Females,15-44,123,2011-01-28,4 -Females,15-44,121,2011-02-04,5 -Females,15-44,99,2011-02-11,6 -Females,15-44,116,2011-02-18,7 -Females,15-44,101,2011-02-25,8 -Females,15-44,118,2011-03-04,9 -Females,15-44,103,2011-03-11,10 -Females,15-44,106,2011-03-18,11 -Females,15-44,94,2011-03-25,12 -Females,15-44,97,2011-04-01,13 -Females,15-44,92,2011-04-08,14 -Females,15-44,105,2011-04-15,15 -Females,15-44,85,2011-04-22,16 -Females,15-44,92,2011-04-29,17 -Females,15-44,110,2011-05-06,18 -Females,15-44,111,2011-05-13,19 -Females,15-44,98,2011-05-20,20 -Females,15-44,105,2011-05-27,21 -Females,15-44,110,2011-06-03,22 -Females,15-44,109,2011-06-10,23 -Females,15-44,113,2011-06-17,24 -Females,15-44,110,2011-06-24,25 -Females,15-44,115,2011-07-01,26 -Females,15-44,108,2011-07-08,27 -Females,15-44,99,2011-07-15,28 -Females,15-44,106,2011-07-22,29 -Females,15-44,94,2011-07-29,30 -Females,15-44,101,2011-08-05,31 -Females,15-44,102,2011-08-12,32 -Females,15-44,97,2011-08-19,33 -Females,15-44,108,2011-08-26,34 -Females,15-44,100,2011-09-02,35 -Females,15-44,89,2011-09-09,36 -Females,15-44,99,2011-09-16,37 -Females,15-44,127,2011-09-23,38 -Females,15-44,117,2011-09-30,39 -Females,15-44,102,2011-10-07,40 -Females,15-44,95,2011-10-14,41 -Females,15-44,86,2011-10-21,42 -Females,15-44,106,2011-10-28,43 -Females,15-44,93,2011-11-04,44 -Females,15-44,101,2011-11-11,45 -Females,15-44,122,2011-11-18,46 -Females,15-44,100,2011-11-25,47 -Females,15-44,104,2011-12-02,48 -Females,15-44,109,2011-12-09,49 -Females,15-44,125,2011-12-16,50 -Females,15-44,109,2011-12-23,51 -Females,15-44,69,2011-12-30,52 -Females,45-64,619,2011-01-07,1 -Females,45-64,717,2011-01-14,2 -Females,45-64,564,2011-01-21,3 -Females,45-64,537,2011-01-28,4 -Females,45-64,570,2011-02-04,5 -Females,45-64,523,2011-02-11,6 -Females,45-64,508,2011-02-18,7 -Females,45-64,485,2011-02-25,8 -Females,45-64,513,2011-03-04,9 -Females,45-64,477,2011-03-11,10 -Females,45-64,526,2011-03-18,11 -Females,45-64,472,2011-03-25,12 -Females,45-64,474,2011-04-01,13 -Females,45-64,530,2011-04-08,14 -Females,45-64,474,2011-04-15,15 -Females,45-64,423,2011-04-22,16 -Females,45-64,407,2011-04-29,17 -Females,45-64,515,2011-05-06,18 -Females,45-64,534,2011-05-13,19 -Females,45-64,469,2011-05-20,20 -Females,45-64,498,2011-05-27,21 -Females,45-64,426,2011-06-03,22 -Females,45-64,472,2011-06-10,23 -Females,45-64,514,2011-06-17,24 -Females,45-64,461,2011-06-24,25 -Females,45-64,458,2011-07-01,26 -Females,45-64,467,2011-07-08,27 -Females,45-64,469,2011-07-15,28 -Females,45-64,500,2011-07-22,29 -Females,45-64,470,2011-07-29,30 -Females,45-64,481,2011-08-05,31 -Females,45-64,455,2011-08-12,32 -Females,45-64,451,2011-08-19,33 -Females,45-64,445,2011-08-26,34 -Females,45-64,410,2011-09-02,35 -Females,45-64,469,2011-09-09,36 -Females,45-64,452,2011-09-16,37 -Females,45-64,462,2011-09-23,38 -Females,45-64,460,2011-09-30,39 -Females,45-64,450,2011-10-07,40 -Females,45-64,506,2011-10-14,41 -Females,45-64,444,2011-10-21,42 -Females,45-64,467,2011-10-28,43 -Females,45-64,540,2011-11-04,44 -Females,45-64,451,2011-11-11,45 -Females,45-64,509,2011-11-18,46 -Females,45-64,462,2011-11-25,47 -Females,45-64,481,2011-12-02,48 -Females,45-64,492,2011-12-09,49 -Females,45-64,496,2011-12-16,50 -Females,45-64,470,2011-12-23,51 -Females,45-64,385,2011-12-30,52 -Females,65-74,865,2011-01-07,1 -Females,65-74,844,2011-01-14,2 -Females,65-74,728,2011-01-21,3 -Females,65-74,675,2011-01-28,4 -Females,65-74,689,2011-02-04,5 -Females,65-74,692,2011-02-11,6 -Females,65-74,617,2011-02-18,7 -Females,65-74,640,2011-02-25,8 -Females,65-74,614,2011-03-04,9 -Females,65-74,647,2011-03-11,10 -Females,65-74,594,2011-03-18,11 -Females,65-74,653,2011-03-25,12 -Females,65-74,674,2011-04-01,13 -Females,65-74,648,2011-04-08,14 -Females,65-74,626,2011-04-15,15 -Females,65-74,520,2011-04-22,16 -Females,65-74,557,2011-04-29,17 -Females,65-74,692,2011-05-06,18 -Females,65-74,704,2011-05-13,19 -Females,65-74,625,2011-05-20,20 -Females,65-74,642,2011-05-27,21 -Females,65-74,548,2011-06-03,22 -Females,65-74,584,2011-06-10,23 -Females,65-74,582,2011-06-17,24 -Females,65-74,547,2011-06-24,25 -Females,65-74,598,2011-07-01,26 -Females,65-74,600,2011-07-08,27 -Females,65-74,578,2011-07-15,28 -Females,65-74,570,2011-07-22,29 -Females,65-74,606,2011-07-29,30 -Females,65-74,595,2011-08-05,31 -Females,65-74,612,2011-08-12,32 -Females,65-74,576,2011-08-19,33 -Females,65-74,541,2011-08-26,34 -Females,65-74,498,2011-09-02,35 -Females,65-74,603,2011-09-09,36 -Females,65-74,589,2011-09-16,37 -Females,65-74,553,2011-09-23,38 -Females,65-74,635,2011-09-30,39 -Females,65-74,600,2011-10-07,40 -Females,65-74,570,2011-10-14,41 -Females,65-74,607,2011-10-21,42 -Females,65-74,571,2011-10-28,43 -Females,65-74,639,2011-11-04,44 -Females,65-74,640,2011-11-11,45 -Females,65-74,625,2011-11-18,46 -Females,65-74,594,2011-11-25,47 -Females,65-74,649,2011-12-02,48 -Females,65-74,621,2011-12-09,49 -Females,65-74,681,2011-12-16,50 -Females,65-74,748,2011-12-23,51 -Females,65-74,546,2011-12-30,52 -Females,75-84,1872,2011-01-07,1 -Females,75-84,1923,2011-01-14,2 -Females,75-84,1673,2011-01-21,3 -Females,75-84,1479,2011-01-28,4 -Females,75-84,1426,2011-02-04,5 -Females,75-84,1419,2011-02-11,6 -Females,75-84,1434,2011-02-18,7 -Females,75-84,1389,2011-02-25,8 -Females,75-84,1364,2011-03-04,9 -Females,75-84,1381,2011-03-11,10 -Females,75-84,1471,2011-03-18,11 -Females,75-84,1458,2011-03-25,12 -Females,75-84,1359,2011-04-01,13 -Females,75-84,1344,2011-04-08,14 -Females,75-84,1317,2011-04-15,15 -Females,75-84,1195,2011-04-22,16 -Females,75-84,1194,2011-04-29,17 -Females,75-84,1373,2011-05-06,18 -Females,75-84,1436,2011-05-13,19 -Females,75-84,1256,2011-05-20,20 -Females,75-84,1284,2011-05-27,21 -Females,75-84,1123,2011-06-03,22 -Females,75-84,1307,2011-06-10,23 -Females,75-84,1214,2011-06-17,24 -Females,75-84,1310,2011-06-24,25 -Females,75-84,1145,2011-07-01,26 -Females,75-84,1250,2011-07-08,27 -Females,75-84,1249,2011-07-15,28 -Females,75-84,1230,2011-07-22,29 -Females,75-84,1184,2011-07-29,30 -Females,75-84,1294,2011-08-05,31 -Females,75-84,1239,2011-08-12,32 -Females,75-84,1177,2011-08-19,33 -Females,75-84,1171,2011-08-26,34 -Females,75-84,1132,2011-09-02,35 -Females,75-84,1268,2011-09-09,36 -Females,75-84,1226,2011-09-16,37 -Females,75-84,1171,2011-09-23,38 -Females,75-84,1210,2011-09-30,39 -Females,75-84,1301,2011-10-07,40 -Females,75-84,1212,2011-10-14,41 -Females,75-84,1185,2011-10-21,42 -Females,75-84,1295,2011-10-28,43 -Females,75-84,1337,2011-11-04,44 -Females,75-84,1301,2011-11-11,45 -Females,75-84,1306,2011-11-18,46 -Females,75-84,1344,2011-11-25,47 -Females,75-84,1334,2011-12-02,48 -Females,75-84,1362,2011-12-09,49 -Females,75-84,1518,2011-12-16,50 -Females,75-84,1565,2011-12-23,51 -Females,75-84,1249,2011-12-30,52 -Females,85+,3230,2011-01-07,1 -Females,85+,3359,2011-01-14,2 -Females,85+,2875,2011-01-21,3 -Females,85+,2665,2011-01-28,4 -Females,85+,2529,2011-02-04,5 -Females,85+,2382,2011-02-11,6 -Females,85+,2284,2011-02-18,7 -Females,85+,2238,2011-02-25,8 -Females,85+,2232,2011-03-04,9 -Females,85+,2339,2011-03-11,10 -Females,85+,2319,2011-03-18,11 -Females,85+,2303,2011-03-25,12 -Females,85+,2231,2011-04-01,13 -Females,85+,2247,2011-04-08,14 -Females,85+,2194,2011-04-15,15 -Females,85+,2013,2011-04-22,16 -Females,85+,1918,2011-04-29,17 -Females,85+,2302,2011-05-06,18 -Females,85+,2388,2011-05-13,19 -Females,85+,2020,2011-05-20,20 -Females,85+,2166,2011-05-27,21 -Females,85+,1838,2011-06-03,22 -Females,85+,2149,2011-06-10,23 -Females,85+,2059,2011-06-17,24 -Females,85+,2008,2011-06-24,25 -Females,85+,2086,2011-07-01,26 -Females,85+,1987,2011-07-08,27 -Females,85+,1970,2011-07-15,28 -Females,85+,1923,2011-07-22,29 -Females,85+,1942,2011-07-29,30 -Females,85+,2015,2011-08-05,31 -Females,85+,1933,2011-08-12,32 -Females,85+,1961,2011-08-19,33 -Females,85+,1917,2011-08-26,34 -Females,85+,1773,2011-09-02,35 -Females,85+,2002,2011-09-09,36 -Females,85+,1973,2011-09-16,37 -Females,85+,2000,2011-09-23,38 -Females,85+,2094,2011-09-30,39 -Females,85+,2105,2011-10-07,40 -Females,85+,2049,2011-10-14,41 -Females,85+,1992,2011-10-21,42 -Females,85+,2231,2011-10-28,43 -Females,85+,2389,2011-11-04,44 -Females,85+,2087,2011-11-11,45 -Females,85+,2295,2011-11-18,46 -Females,85+,2223,2011-11-25,47 -Females,85+,2222,2011-12-02,48 -Females,85+,2433,2011-12-09,49 -Females,85+,2490,2011-12-16,50 -Females,85+,2805,2011-12-23,51 -Females,85+,2190,2011-12-30,52 -Region,North East,616,2011-01-07,1 -Region,North East,654,2011-01-14,2 -Region,North East,584,2011-01-21,3 -Region,North East,537,2011-01-28,4 -Region,North East,556,2011-02-04,5 -Region,North East,526,2011-02-11,6 -Region,North East,551,2011-02-18,7 -Region,North East,575,2011-02-25,8 -Region,North East,498,2011-03-04,9 -Region,North East,526,2011-03-11,10 -Region,North East,533,2011-03-18,11 -Region,North East,496,2011-03-25,12 -Region,North East,496,2011-04-01,13 -Region,North East,478,2011-04-08,14 -Region,North East,493,2011-04-15,15 -Region,North East,411,2011-04-22,16 -Region,North East,429,2011-04-29,17 -Region,North East,543,2011-05-06,18 -Region,North East,504,2011-05-13,19 -Region,North East,496,2011-05-20,20 -Region,North East,511,2011-05-27,21 -Region,North East,441,2011-06-03,22 -Region,North East,457,2011-06-10,23 -Region,North East,472,2011-06-17,24 -Region,North East,435,2011-06-24,25 -Region,North East,479,2011-07-01,26 -Region,North East,458,2011-07-08,27 -Region,North East,432,2011-07-15,28 -Region,North East,488,2011-07-22,29 -Region,North East,469,2011-07-29,30 -Region,North East,480,2011-08-05,31 -Region,North East,483,2011-08-12,32 -Region,North East,453,2011-08-19,33 -Region,North East,417,2011-08-26,34 -Region,North East,395,2011-09-02,35 -Region,North East,481,2011-09-09,36 -Region,North East,430,2011-09-16,37 -Region,North East,445,2011-09-23,38 -Region,North East,487,2011-09-30,39 -Region,North East,437,2011-10-07,40 -Region,North East,480,2011-10-14,41 -Region,North East,437,2011-10-21,42 -Region,North East,516,2011-10-28,43 -Region,North East,507,2011-11-04,44 -Region,North East,518,2011-11-11,45 -Region,North East,495,2011-11-18,46 -Region,North East,462,2011-11-25,47 -Region,North East,496,2011-12-02,48 -Region,North East,529,2011-12-09,49 -Region,North East,543,2011-12-16,50 -Region,North East,620,2011-12-23,51 -Region,North East,443,2011-12-30,52 -Region,North West,1662,2011-01-07,1 -Region,North West,1797,2011-01-14,2 -Region,North West,1555,2011-01-21,3 -Region,North West,1429,2011-01-28,4 -Region,North West,1366,2011-02-04,5 -Region,North West,1359,2011-02-11,6 -Region,North West,1343,2011-02-18,7 -Region,North West,1366,2011-02-25,8 -Region,North West,1329,2011-03-04,9 -Region,North West,1295,2011-03-11,10 -Region,North West,1279,2011-03-18,11 -Region,North West,1291,2011-03-25,12 -Region,North West,1322,2011-04-01,13 -Region,North West,1310,2011-04-08,14 -Region,North West,1305,2011-04-15,15 -Region,North West,1171,2011-04-22,16 -Region,North West,1104,2011-04-29,17 -Region,North West,1324,2011-05-06,18 -Region,North West,1328,2011-05-13,19 -Region,North West,1276,2011-05-20,20 -Region,North West,1302,2011-05-27,21 -Region,North West,1044,2011-06-03,22 -Region,North West,1250,2011-06-10,23 -Region,North West,1306,2011-06-17,24 -Region,North West,1142,2011-06-24,25 -Region,North West,1215,2011-07-01,26 -Region,North West,1215,2011-07-08,27 -Region,North West,1159,2011-07-15,28 -Region,North West,1139,2011-07-22,29 -Region,North West,1190,2011-07-29,30 -Region,North West,1235,2011-08-05,31 -Region,North West,1212,2011-08-12,32 -Region,North West,1146,2011-08-19,33 -Region,North West,1150,2011-08-26,34 -Region,North West,1092,2011-09-02,35 -Region,North West,1161,2011-09-09,36 -Region,North West,1121,2011-09-16,37 -Region,North West,1119,2011-09-23,38 -Region,North West,1229,2011-09-30,39 -Region,North West,1216,2011-10-07,40 -Region,North West,1169,2011-10-14,41 -Region,North West,1150,2011-10-21,42 -Region,North West,1267,2011-10-28,43 -Region,North West,1301,2011-11-04,44 -Region,North West,1244,2011-11-11,45 -Region,North West,1310,2011-11-18,46 -Region,North West,1238,2011-11-25,47 -Region,North West,1229,2011-12-02,48 -Region,North West,1360,2011-12-09,49 -Region,North West,1449,2011-12-16,50 -Region,North West,1518,2011-12-23,51 -Region,North West,1250,2011-12-30,52 -Region,Yorkshire and The Humber,1351,2011-01-07,1 -Region,Yorkshire and The Humber,1268,2011-01-14,2 -Region,Yorkshire and The Humber,1095,2011-01-21,3 -Region,Yorkshire and The Humber,1091,2011-01-28,4 -Region,Yorkshire and The Humber,972,2011-02-04,5 -Region,Yorkshire and The Humber,997,2011-02-11,6 -Region,Yorkshire and The Humber,992,2011-02-18,7 -Region,Yorkshire and The Humber,941,2011-02-25,8 -Region,Yorkshire and The Humber,864,2011-03-04,9 -Region,Yorkshire and The Humber,970,2011-03-11,10 -Region,Yorkshire and The Humber,969,2011-03-18,11 -Region,Yorkshire and The Humber,1023,2011-03-25,12 -Region,Yorkshire and The Humber,937,2011-04-01,13 -Region,Yorkshire and The Humber,946,2011-04-08,14 -Region,Yorkshire and The Humber,950,2011-04-15,15 -Region,Yorkshire and The Humber,841,2011-04-22,16 -Region,Yorkshire and The Humber,841,2011-04-29,17 -Region,Yorkshire and The Humber,1009,2011-05-06,18 -Region,Yorkshire and The Humber,985,2011-05-13,19 -Region,Yorkshire and The Humber,879,2011-05-20,20 -Region,Yorkshire and The Humber,890,2011-05-27,21 -Region,Yorkshire and The Humber,826,2011-06-03,22 -Region,Yorkshire and The Humber,899,2011-06-10,23 -Region,Yorkshire and The Humber,889,2011-06-17,24 -Region,Yorkshire and The Humber,853,2011-06-24,25 -Region,Yorkshire and The Humber,872,2011-07-01,26 -Region,Yorkshire and The Humber,850,2011-07-08,27 -Region,Yorkshire and The Humber,851,2011-07-15,28 -Region,Yorkshire and The Humber,847,2011-07-22,29 -Region,Yorkshire and The Humber,851,2011-07-29,30 -Region,Yorkshire and The Humber,861,2011-08-05,31 -Region,Yorkshire and The Humber,819,2011-08-12,32 -Region,Yorkshire and The Humber,819,2011-08-19,33 -Region,Yorkshire and The Humber,873,2011-08-26,34 -Region,Yorkshire and The Humber,765,2011-09-02,35 -Region,Yorkshire and The Humber,890,2011-09-09,36 -Region,Yorkshire and The Humber,902,2011-09-16,37 -Region,Yorkshire and The Humber,877,2011-09-23,38 -Region,Yorkshire and The Humber,912,2011-09-30,39 -Region,Yorkshire and The Humber,895,2011-10-07,40 -Region,Yorkshire and The Humber,860,2011-10-14,41 -Region,Yorkshire and The Humber,881,2011-10-21,42 -Region,Yorkshire and The Humber,935,2011-10-28,43 -Region,Yorkshire and The Humber,1039,2011-11-04,44 -Region,Yorkshire and The Humber,855,2011-11-11,45 -Region,Yorkshire and The Humber,910,2011-11-18,46 -Region,Yorkshire and The Humber,907,2011-11-25,47 -Region,Yorkshire and The Humber,949,2011-12-02,48 -Region,Yorkshire and The Humber,1013,2011-12-09,49 -Region,Yorkshire and The Humber,1029,2011-12-16,50 -Region,Yorkshire and The Humber,1080,2011-12-23,51 -Region,Yorkshire and The Humber,891,2011-12-30,52 -Region,East Midlands,1135,2011-01-07,1 -Region,East Midlands,1158,2011-01-14,2 -Region,East Midlands,989,2011-01-21,3 -Region,East Midlands,931,2011-01-28,4 -Region,East Midlands,877,2011-02-04,5 -Region,East Midlands,827,2011-02-11,6 -Region,East Midlands,843,2011-02-18,7 -Region,East Midlands,756,2011-02-25,8 -Region,East Midlands,789,2011-03-04,9 -Region,East Midlands,815,2011-03-11,10 -Region,East Midlands,809,2011-03-18,11 -Region,East Midlands,790,2011-03-25,12 -Region,East Midlands,762,2011-04-01,13 -Region,East Midlands,801,2011-04-08,14 -Region,East Midlands,772,2011-04-15,15 -Region,East Midlands,714,2011-04-22,16 -Region,East Midlands,726,2011-04-29,17 -Region,East Midlands,805,2011-05-06,18 -Region,East Midlands,848,2011-05-13,19 -Region,East Midlands,678,2011-05-20,20 -Region,East Midlands,721,2011-05-27,21 -Region,East Midlands,682,2011-06-03,22 -Region,East Midlands,739,2011-06-10,23 -Region,East Midlands,708,2011-06-17,24 -Region,East Midlands,738,2011-06-24,25 -Region,East Midlands,707,2011-07-01,26 -Region,East Midlands,731,2011-07-08,27 -Region,East Midlands,684,2011-07-15,28 -Region,East Midlands,674,2011-07-22,29 -Region,East Midlands,684,2011-07-29,30 -Region,East Midlands,746,2011-08-05,31 -Region,East Midlands,687,2011-08-12,32 -Region,East Midlands,643,2011-08-19,33 -Region,East Midlands,735,2011-08-26,34 -Region,East Midlands,606,2011-09-02,35 -Region,East Midlands,739,2011-09-09,36 -Region,East Midlands,703,2011-09-16,37 -Region,East Midlands,716,2011-09-23,38 -Region,East Midlands,727,2011-09-30,39 -Region,East Midlands,722,2011-10-07,40 -Region,East Midlands,745,2011-10-14,41 -Region,East Midlands,685,2011-10-21,42 -Region,East Midlands,775,2011-10-28,43 -Region,East Midlands,838,2011-11-04,44 -Region,East Midlands,769,2011-11-11,45 -Region,East Midlands,768,2011-11-18,46 -Region,East Midlands,787,2011-11-25,47 -Region,East Midlands,745,2011-12-02,48 -Region,East Midlands,827,2011-12-09,49 -Region,East Midlands,849,2011-12-16,50 -Region,East Midlands,949,2011-12-23,51 -Region,East Midlands,709,2011-12-30,52 -Region,West Midlands,1264,2011-01-07,1 -Region,West Midlands,1390,2011-01-14,2 -Region,West Midlands,1193,2011-01-21,3 -Region,West Midlands,986,2011-01-28,4 -Region,West Midlands,1066,2011-02-04,5 -Region,West Midlands,1062,2011-02-11,6 -Region,West Midlands,974,2011-02-18,7 -Region,West Midlands,961,2011-02-25,8 -Region,West Midlands,957,2011-03-04,9 -Region,West Midlands,964,2011-03-11,10 -Region,West Midlands,1060,2011-03-18,11 -Region,West Midlands,943,2011-03-25,12 -Region,West Midlands,972,2011-04-01,13 -Region,West Midlands,958,2011-04-08,14 -Region,West Midlands,915,2011-04-15,15 -Region,West Midlands,839,2011-04-22,16 -Region,West Midlands,764,2011-04-29,17 -Region,West Midlands,1028,2011-05-06,18 -Region,West Midlands,968,2011-05-13,19 -Region,West Midlands,921,2011-05-20,20 -Region,West Midlands,946,2011-05-27,21 -Region,West Midlands,807,2011-06-03,22 -Region,West Midlands,895,2011-06-10,23 -Region,West Midlands,899,2011-06-17,24 -Region,West Midlands,952,2011-06-24,25 -Region,West Midlands,867,2011-07-01,26 -Region,West Midlands,936,2011-07-08,27 -Region,West Midlands,886,2011-07-15,28 -Region,West Midlands,884,2011-07-22,29 -Region,West Midlands,851,2011-07-29,30 -Region,West Midlands,822,2011-08-05,31 -Region,West Midlands,913,2011-08-12,32 -Region,West Midlands,856,2011-08-19,33 -Region,West Midlands,821,2011-08-26,34 -Region,West Midlands,813,2011-09-02,35 -Region,West Midlands,908,2011-09-09,36 -Region,West Midlands,897,2011-09-16,37 -Region,West Midlands,819,2011-09-23,38 -Region,West Midlands,873,2011-09-30,39 -Region,West Midlands,839,2011-10-07,40 -Region,West Midlands,862,2011-10-14,41 -Region,West Midlands,921,2011-10-21,42 -Region,West Midlands,928,2011-10-28,43 -Region,West Midlands,945,2011-11-04,44 -Region,West Midlands,932,2011-11-11,45 -Region,West Midlands,970,2011-11-18,46 -Region,West Midlands,907,2011-11-25,47 -Region,West Midlands,991,2011-12-02,48 -Region,West Midlands,940,2011-12-09,49 -Region,West Midlands,1068,2011-12-16,50 -Region,West Midlands,1120,2011-12-23,51 -Region,West Midlands,846,2011-12-30,52 -Region,East,1323,2011-01-07,1 -Region,East,1282,2011-01-14,2 -Region,East,1146,2011-01-21,3 -Region,East,1085,2011-01-28,4 -Region,East,1120,2011-02-04,5 -Region,East,1032,2011-02-11,6 -Region,East,986,2011-02-18,7 -Region,East,947,2011-02-25,8 -Region,East,991,2011-03-04,9 -Region,East,971,2011-03-11,10 -Region,East,1075,2011-03-18,11 -Region,East,1034,2011-03-25,12 -Region,East,967,2011-04-01,13 -Region,East,1073,2011-04-08,14 -Region,East,963,2011-04-15,15 -Region,East,863,2011-04-22,16 -Region,East,828,2011-04-29,17 -Region,East,997,2011-05-06,18 -Region,East,1108,2011-05-13,19 -Region,East,929,2011-05-20,20 -Region,East,959,2011-05-27,21 -Region,East,804,2011-06-03,22 -Region,East,1015,2011-06-10,23 -Region,East,941,2011-06-17,24 -Region,East,888,2011-06-24,25 -Region,East,937,2011-07-01,26 -Region,East,883,2011-07-08,27 -Region,East,924,2011-07-15,28 -Region,East,871,2011-07-22,29 -Region,East,894,2011-07-29,30 -Region,East,907,2011-08-05,31 -Region,East,888,2011-08-12,32 -Region,East,920,2011-08-19,33 -Region,East,849,2011-08-26,34 -Region,East,776,2011-09-02,35 -Region,East,896,2011-09-09,36 -Region,East,927,2011-09-16,37 -Region,East,899,2011-09-23,38 -Region,East,959,2011-09-30,39 -Region,East,923,2011-10-07,40 -Region,East,914,2011-10-14,41 -Region,East,857,2011-10-21,42 -Region,East,961,2011-10-28,43 -Region,East,1017,2011-11-04,44 -Region,East,927,2011-11-11,45 -Region,East,984,2011-11-18,46 -Region,East,938,2011-11-25,47 -Region,East,990,2011-12-02,48 -Region,East,1015,2011-12-09,49 -Region,East,1080,2011-12-16,50 -Region,East,1213,2011-12-23,51 -Region,East,881,2011-12-30,52 -Region,London,1188,2011-01-07,1 -Region,London,1267,2011-01-14,2 -Region,London,1067,2011-01-21,3 -Region,London,1020,2011-01-28,4 -Region,London,943,2011-02-04,5 -Region,London,1010,2011-02-11,6 -Region,London,927,2011-02-18,7 -Region,London,873,2011-02-25,8 -Region,London,900,2011-03-04,9 -Region,London,946,2011-03-11,10 -Region,London,953,2011-03-18,11 -Region,London,893,2011-03-25,12 -Region,London,863,2011-04-01,13 -Region,London,931,2011-04-08,14 -Region,London,923,2011-04-15,15 -Region,London,801,2011-04-22,16 -Region,London,784,2011-04-29,17 -Region,London,923,2011-05-06,18 -Region,London,907,2011-05-13,19 -Region,London,815,2011-05-20,20 -Region,London,884,2011-05-27,21 -Region,London,776,2011-06-03,22 -Region,London,868,2011-06-10,23 -Region,London,852,2011-06-17,24 -Region,London,825,2011-06-24,25 -Region,London,880,2011-07-01,26 -Region,London,843,2011-07-08,27 -Region,London,855,2011-07-15,28 -Region,London,814,2011-07-22,29 -Region,London,801,2011-07-29,30 -Region,London,858,2011-08-05,31 -Region,London,860,2011-08-12,32 -Region,London,873,2011-08-19,33 -Region,London,869,2011-08-26,34 -Region,London,735,2011-09-02,35 -Region,London,852,2011-09-09,36 -Region,London,860,2011-09-16,37 -Region,London,852,2011-09-23,38 -Region,London,888,2011-09-30,39 -Region,London,862,2011-10-07,40 -Region,London,882,2011-10-14,41 -Region,London,795,2011-10-21,42 -Region,London,847,2011-10-28,43 -Region,London,936,2011-11-04,44 -Region,London,868,2011-11-11,45 -Region,London,859,2011-11-18,46 -Region,London,878,2011-11-25,47 -Region,London,845,2011-12-02,48 -Region,London,995,2011-12-09,49 -Region,London,1022,2011-12-16,50 -Region,London,1061,2011-12-23,51 -Region,London,844,2011-12-30,52 -Region,South East,1911,2011-01-07,1 -Region,South East,2089,2011-01-14,2 -Region,South East,1826,2011-01-21,3 -Region,South East,1704,2011-01-28,4 -Region,South East,1559,2011-02-04,5 -Region,South East,1461,2011-02-11,6 -Region,South East,1503,2011-02-18,7 -Region,South East,1443,2011-02-25,8 -Region,South East,1515,2011-03-04,9 -Region,South East,1461,2011-03-11,10 -Region,South East,1523,2011-03-18,11 -Region,South East,1519,2011-03-25,12 -Region,South East,1425,2011-04-01,13 -Region,South East,1481,2011-04-08,14 -Region,South East,1402,2011-04-15,15 -Region,South East,1268,2011-04-22,16 -Region,South East,1161,2011-04-29,17 -Region,South East,1479,2011-05-06,18 -Region,South East,1716,2011-05-13,19 -Region,South East,1414,2011-05-20,20 -Region,South East,1393,2011-05-27,21 -Region,South East,1161,2011-06-03,22 -Region,South East,1468,2011-06-10,23 -Region,South East,1378,2011-06-17,24 -Region,South East,1342,2011-06-24,25 -Region,South East,1304,2011-07-01,26 -Region,South East,1282,2011-07-08,27 -Region,South East,1243,2011-07-15,28 -Region,South East,1293,2011-07-22,29 -Region,South East,1235,2011-07-29,30 -Region,South East,1368,2011-08-05,31 -Region,South East,1276,2011-08-12,32 -Region,South East,1267,2011-08-19,33 -Region,South East,1247,2011-08-26,34 -Region,South East,1220,2011-09-02,35 -Region,South East,1283,2011-09-09,36 -Region,South East,1363,2011-09-16,37 -Region,South East,1329,2011-09-23,38 -Region,South East,1377,2011-09-30,39 -Region,South East,1314,2011-10-07,40 -Region,South East,1359,2011-10-14,41 -Region,South East,1394,2011-10-21,42 -Region,South East,1369,2011-10-28,43 -Region,South East,1391,2011-11-04,44 -Region,South East,1381,2011-11-11,45 -Region,South East,1452,2011-11-18,46 -Region,South East,1405,2011-11-25,47 -Region,South East,1432,2011-12-02,48 -Region,South East,1532,2011-12-09,49 -Region,South East,1547,2011-12-16,50 -Region,South East,1696,2011-12-23,51 -Region,South East,1162,2011-12-30,52 -Region,South West,1318,2011-01-07,1 -Region,South West,1428,2011-01-14,2 -Region,South West,1320,2011-01-21,3 -Region,South West,1093,2011-01-28,4 -Region,South West,1070,2011-02-04,5 -Region,South West,1042,2011-02-11,6 -Region,South West,1011,2011-02-18,7 -Region,South West,972,2011-02-25,8 -Region,South West,999,2011-03-04,9 -Region,South West,1051,2011-03-11,10 -Region,South West,1018,2011-03-18,11 -Region,South West,1062,2011-03-25,12 -Region,South West,974,2011-04-01,13 -Region,South West,991,2011-04-08,14 -Region,South West,1010,2011-04-15,15 -Region,South West,859,2011-04-22,16 -Region,South West,845,2011-04-29,17 -Region,South West,1069,2011-05-06,18 -Region,South West,1128,2011-05-13,19 -Region,South West,936,2011-05-20,20 -Region,South West,942,2011-05-27,21 -Region,South West,807,2011-06-03,22 -Region,South West,1031,2011-06-10,23 -Region,South West,982,2011-06-17,24 -Region,South West,969,2011-06-24,25 -Region,South West,899,2011-07-01,26 -Region,South West,901,2011-07-08,27 -Region,South West,857,2011-07-15,28 -Region,South West,932,2011-07-22,29 -Region,South West,932,2011-07-29,30 -Region,South West,931,2011-08-05,31 -Region,South West,900,2011-08-12,32 -Region,South West,930,2011-08-19,33 -Region,South West,915,2011-08-26,34 -Region,South West,825,2011-09-02,35 -Region,South West,950,2011-09-09,36 -Region,South West,877,2011-09-16,37 -Region,South West,942,2011-09-23,38 -Region,South West,902,2011-09-30,39 -Region,South West,923,2011-10-07,40 -Region,South West,909,2011-10-14,41 -Region,South West,935,2011-10-21,42 -Region,South West,916,2011-10-28,43 -Region,South West,1027,2011-11-04,44 -Region,South West,962,2011-11-11,45 -Region,South West,987,2011-11-18,46 -Region,South West,1013,2011-11-25,47 -Region,South West,925,2011-12-02,48 -Region,South West,991,2011-12-09,49 -Region,South West,1116,2011-12-16,50 -Region,South West,1179,2011-12-23,51 -Region,South West,870,2011-12-30,52 -Region,Wales,846,2011-01-07,1 -Region,Wales,772,2011-01-14,2 -Region,Wales,638,2011-01-21,3 -Region,Wales,656,2011-01-28,4 -Region,Wales,687,2011-02-04,5 -Region,Wales,679,2011-02-11,6 -Region,Wales,609,2011-02-18,7 -Region,Wales,580,2011-02-25,8 -Region,Wales,590,2011-03-04,9 -Region,Wales,630,2011-03-11,10 -Region,Wales,593,2011-03-18,11 -Region,Wales,633,2011-03-25,12 -Region,Wales,574,2011-04-01,13 -Region,Wales,566,2011-04-08,14 -Region,Wales,573,2011-04-15,15 -Region,Wales,535,2011-04-22,16 -Region,Wales,565,2011-04-29,17 -Region,Wales,654,2011-05-06,18 -Region,Wales,616,2011-05-13,19 -Region,Wales,577,2011-05-20,20 -Region,Wales,583,2011-05-27,21 -Region,Wales,544,2011-06-03,22 -Region,Wales,601,2011-06-10,23 -Region,Wales,512,2011-06-17,24 -Region,Wales,544,2011-06-24,25 -Region,Wales,526,2011-07-01,26 -Region,Wales,579,2011-07-08,27 -Region,Wales,538,2011-07-15,28 -Region,Wales,529,2011-07-22,29 -Region,Wales,526,2011-07-29,30 -Region,Wales,547,2011-08-05,31 -Region,Wales,515,2011-08-12,32 -Region,Wales,491,2011-08-19,33 -Region,Wales,563,2011-08-26,34 -Region,Wales,471,2011-09-02,35 -Region,Wales,580,2011-09-09,36 -Region,Wales,505,2011-09-16,37 -Region,Wales,506,2011-09-23,38 -Region,Wales,544,2011-09-30,39 -Region,Wales,567,2011-10-07,40 -Region,Wales,511,2011-10-14,41 -Region,Wales,557,2011-10-21,42 -Region,Wales,604,2011-10-28,43 -Region,Wales,617,2011-11-04,44 -Region,Wales,571,2011-11-11,45 -Region,Wales,554,2011-11-18,46 -Region,Wales,599,2011-11-25,47 -Region,Wales,591,2011-12-02,48 -Region,Wales,602,2011-12-09,49 -Region,Wales,623,2011-12-16,50 -Region,Wales,680,2011-12-23,51 -Region,Wales,554,2011-12-30,52 -Total deaths,all ages,10514,2012-01-06,1 -Total deaths,all ages,11343,2012-01-13,2 -Total deaths,all ages,10393,2012-01-20,3 -Total deaths,all ages,10320,2012-01-27,4 -Total deaths,all ages,10117,2012-02-03,5 -Total deaths,all ages,10287,2012-02-10,6 -Total deaths,all ages,10532,2012-02-17,7 -Total deaths,all ages,11086,2012-02-24,8 -Total deaths,all ages,10945,2012-03-02,9 -Total deaths,all ages,10507,2012-03-09,10 -Total deaths,all ages,10041,2012-03-16,11 -Total deaths,all ages,9864,2012-03-23,12 -Total deaths,all ages,9634,2012-03-30,13 -Total deaths,all ages,8520,2012-04-06,14 -Total deaths,all ages,9992,2012-04-13,15 -Total deaths,all ages,10816,2012-04-20,16 -Total deaths,all ages,10238,2012-04-27,17 -Total deaths,all ages,9957,2012-05-04,18 -Total deaths,all ages,8868,2012-05-11,19 -Total deaths,all ages,9913,2012-05-18,20 -Total deaths,all ages,9602,2012-05-25,21 -Total deaths,all ages,9602,2012-06-01,22 -Total deaths,all ages,6781,2012-06-08,23 -Total deaths,all ages,10170,2012-06-15,24 -Total deaths,all ages,9054,2012-06-22,25 -Total deaths,all ages,8856,2012-06-29,26 -Total deaths,all ages,8909,2012-07-06,27 -Total deaths,all ages,8754,2012-07-13,28 -Total deaths,all ages,8684,2012-07-20,29 -Total deaths,all ages,8877,2012-07-27,30 -Total deaths,all ages,8942,2012-08-03,31 -Total deaths,all ages,8810,2012-08-10,32 -Total deaths,all ages,8776,2012-08-17,33 -Total deaths,all ages,8977,2012-08-24,34 -Total deaths,all ages,7617,2012-08-31,35 -Total deaths,all ages,8848,2012-09-07,36 -Total deaths,all ages,8641,2012-09-14,37 -Total deaths,all ages,8839,2012-09-21,38 -Total deaths,all ages,8865,2012-09-28,39 -Total deaths,all ages,9070,2012-10-05,40 -Total deaths,all ages,9441,2012-10-12,41 -Total deaths,all ages,9284,2012-10-19,42 -Total deaths,all ages,9550,2012-10-26,43 -Total deaths,all ages,9335,2012-11-02,44 -Total deaths,all ages,9683,2012-11-09,45 -Total deaths,all ages,9900,2012-11-16,46 -Total deaths,all ages,9679,2012-11-23,47 -Total deaths,all ages,9394,2012-11-30,48 -Total deaths,all ages,9844,2012-12-07,49 -Total deaths,all ages,10388,2012-12-14,50 -Total deaths,all ages,11461,2012-12-21,51 -Total deaths,all ages,8096,2012-12-28,52 -Total deaths,average of same week over 5 years,12455,2012-01-06,1 -Total deaths,average of same week over 5 years,12851.4,2012-01-13,2 -Total deaths,average of same week over 5 years,11812.8,2012-01-20,3 -Total deaths,average of same week over 5 years,11053.6,2012-01-27,4 -Total deaths,average of same week over 5 years,10614.6,2012-02-03,5 -Total deaths,average of same week over 5 years,10316.6,2012-02-10,6 -Total deaths,average of same week over 5 years,10402.2,2012-02-17,7 -Total deaths,average of same week over 5 years,10326.8,2012-02-24,8 -Total deaths,average of same week over 5 years,10157.8,2012-03-02,9 -Total deaths,average of same week over 5 years,9962.4,2012-03-09,10 -Total deaths,average of same week over 5 years,9908.6,2012-03-16,11 -Total deaths,average of same week over 5 years,9459.2,2012-03-23,12 -Total deaths,average of same week over 5 years,9392.4,2012-03-30,13 -Total deaths,average of same week over 5 years,9643,2012-04-06,14 -Total deaths,average of same week over 5 years,9693.6,2012-04-13,15 -Total deaths,average of same week over 5 years,9643.6,2012-04-20,16 -Total deaths,average of same week over 5 years,9454,2012-04-27,17 -Total deaths,average of same week over 5 years,9375,2012-05-04,18 -Total deaths,average of same week over 5 years,9085,2012-05-11,19 -Total deaths,average of same week over 5 years,9271.8,2012-05-18,20 -Total deaths,average of same week over 5 years,9275,2012-05-25,21 -Total deaths,average of same week over 5 years,8223.2,2012-06-01,22 -Total deaths,average of same week over 5 years,9240.2,2012-06-08,23 -Total deaths,average of same week over 5 years,8878.4,2012-06-15,24 -Total deaths,average of same week over 5 years,8750.4,2012-06-22,25 -Total deaths,average of same week over 5 years,8718.2,2012-06-29,26 -Total deaths,average of same week over 5 years,8764,2012-07-06,27 -Total deaths,average of same week over 5 years,8577,2012-07-13,28 -Total deaths,average of same week over 5 years,8489.2,2012-07-20,29 -Total deaths,average of same week over 5 years,8549.4,2012-07-27,30 -Total deaths,average of same week over 5 years,8594,2012-08-03,31 -Total deaths,average of same week over 5 years,8546.8,2012-08-10,32 -Total deaths,average of same week over 5 years,8552.2,2012-08-17,33 -Total deaths,average of same week over 5 years,8577,2012-08-24,34 -Total deaths,average of same week over 5 years,7901,2012-08-31,35 -Total deaths,average of same week over 5 years,8593.2,2012-09-07,36 -Total deaths,average of same week over 5 years,8669.8,2012-09-14,37 -Total deaths,average of same week over 5 years,8687.8,2012-09-21,38 -Total deaths,average of same week over 5 years,8864.4,2012-09-28,39 -Total deaths,average of same week over 5 years,8954.6,2012-10-05,40 -Total deaths,average of same week over 5 years,9030.4,2012-10-12,41 -Total deaths,average of same week over 5 years,9146.2,2012-10-19,42 -Total deaths,average of same week over 5 years,9311,2012-10-26,43 -Total deaths,average of same week over 5 years,9540.2,2012-11-02,44 -Total deaths,average of same week over 5 years,9478.6,2012-11-09,45 -Total deaths,average of same week over 5 years,9551.4,2012-11-16,46 -Total deaths,average of same week over 5 years,9640.2,2012-11-23,47 -Total deaths,average of same week over 5 years,9579.6,2012-11-30,48 -Total deaths,average of same week over 5 years,10335.8,2012-12-07,49 -Total deaths,average of same week over 5 years,10587.4,2012-12-14,50 -Total deaths,average of same week over 5 years,11179,2012-12-21,51 -Total deaths,average of same week over 5 years,8938.8,2012-12-28,52 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1789,2012-01-06,1 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1934,2012-01-13,2 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1629,2012-01-20,3 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1584,2012-01-27,4 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1622,2012-02-03,5 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1612,2012-02-10,6 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1682,2012-02-17,7 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1826,2012-02-24,8 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1892,2012-03-02,9 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1647,2012-03-09,10 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1610,2012-03-16,11 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1536,2012-03-23,12 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1415,2012-03-30,13 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1234,2012-04-06,14 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1498,2012-04-13,15 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1633,2012-04-20,16 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1491,2012-04-27,17 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1488,2012-05-04,18 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1304,2012-05-11,19 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1441,2012-05-18,20 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1256,2012-05-25,21 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1330,2012-06-01,22 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,889,2012-06-08,23 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1401,2012-06-15,24 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1168,2012-06-22,25 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1109,2012-06-29,26 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1107,2012-07-06,27 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1098,2012-07-13,28 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1025,2012-07-20,29 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1125,2012-07-27,30 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1143,2012-08-03,31 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1068,2012-08-10,32 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1048,2012-08-17,33 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1083,2012-08-24,34 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,880,2012-08-31,35 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,982,2012-09-07,36 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1031,2012-09-14,37 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1065,2012-09-21,38 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1082,2012-09-28,39 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1151,2012-10-05,40 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1161,2012-10-12,41 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1192,2012-10-19,42 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1288,2012-10-26,43 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1233,2012-11-02,44 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1306,2012-11-09,45 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1354,2012-11-16,46 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1320,2012-11-23,47 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1305,2012-11-30,48 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1368,2012-12-07,49 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1540,2012-12-14,50 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1783,2012-12-21,51 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1407,2012-12-28,52 -Persons,Under 1 year,48,2012-01-06,1 -Persons,Under 1 year,61,2012-01-13,2 -Persons,Under 1 year,48,2012-01-20,3 -Persons,Under 1 year,45,2012-01-27,4 -Persons,Under 1 year,52,2012-02-03,5 -Persons,Under 1 year,50,2012-02-10,6 -Persons,Under 1 year,53,2012-02-17,7 -Persons,Under 1 year,75,2012-02-24,8 -Persons,Under 1 year,55,2012-03-02,9 -Persons,Under 1 year,57,2012-03-09,10 -Persons,Under 1 year,58,2012-03-16,11 -Persons,Under 1 year,67,2012-03-23,12 -Persons,Under 1 year,61,2012-03-30,13 -Persons,Under 1 year,50,2012-04-06,14 -Persons,Under 1 year,65,2012-04-13,15 -Persons,Under 1 year,72,2012-04-20,16 -Persons,Under 1 year,60,2012-04-27,17 -Persons,Under 1 year,60,2012-05-04,18 -Persons,Under 1 year,54,2012-05-11,19 -Persons,Under 1 year,67,2012-05-18,20 -Persons,Under 1 year,58,2012-05-25,21 -Persons,Under 1 year,60,2012-06-01,22 -Persons,Under 1 year,42,2012-06-08,23 -Persons,Under 1 year,80,2012-06-15,24 -Persons,Under 1 year,53,2012-06-22,25 -Persons,Under 1 year,56,2012-06-29,26 -Persons,Under 1 year,64,2012-07-06,27 -Persons,Under 1 year,57,2012-07-13,28 -Persons,Under 1 year,47,2012-07-20,29 -Persons,Under 1 year,69,2012-07-27,30 -Persons,Under 1 year,56,2012-08-03,31 -Persons,Under 1 year,70,2012-08-10,32 -Persons,Under 1 year,54,2012-08-17,33 -Persons,Under 1 year,62,2012-08-24,34 -Persons,Under 1 year,62,2012-08-31,35 -Persons,Under 1 year,62,2012-09-07,36 -Persons,Under 1 year,63,2012-09-14,37 -Persons,Under 1 year,56,2012-09-21,38 -Persons,Under 1 year,59,2012-09-28,39 -Persons,Under 1 year,66,2012-10-05,40 -Persons,Under 1 year,52,2012-10-12,41 -Persons,Under 1 year,57,2012-10-19,42 -Persons,Under 1 year,49,2012-10-26,43 -Persons,Under 1 year,63,2012-11-02,44 -Persons,Under 1 year,66,2012-11-09,45 -Persons,Under 1 year,69,2012-11-16,46 -Persons,Under 1 year,70,2012-11-23,47 -Persons,Under 1 year,58,2012-11-30,48 -Persons,Under 1 year,71,2012-12-07,49 -Persons,Under 1 year,60,2012-12-14,50 -Persons,Under 1 year,56,2012-12-21,51 -Persons,Under 1 year,40,2012-12-28,52 -Persons,01-14,19,2012-01-06,1 -Persons,01-14,17,2012-01-13,2 -Persons,01-14,17,2012-01-20,3 -Persons,01-14,28,2012-01-27,4 -Persons,01-14,26,2012-02-03,5 -Persons,01-14,18,2012-02-10,6 -Persons,01-14,16,2012-02-17,7 -Persons,01-14,14,2012-02-24,8 -Persons,01-14,22,2012-03-02,9 -Persons,01-14,16,2012-03-09,10 -Persons,01-14,18,2012-03-16,11 -Persons,01-14,34,2012-03-23,12 -Persons,01-14,21,2012-03-30,13 -Persons,01-14,23,2012-04-06,14 -Persons,01-14,26,2012-04-13,15 -Persons,01-14,18,2012-04-20,16 -Persons,01-14,21,2012-04-27,17 -Persons,01-14,25,2012-05-04,18 -Persons,01-14,16,2012-05-11,19 -Persons,01-14,23,2012-05-18,20 -Persons,01-14,26,2012-05-25,21 -Persons,01-14,23,2012-06-01,22 -Persons,01-14,9,2012-06-08,23 -Persons,01-14,16,2012-06-15,24 -Persons,01-14,17,2012-06-22,25 -Persons,01-14,16,2012-06-29,26 -Persons,01-14,17,2012-07-06,27 -Persons,01-14,16,2012-07-13,28 -Persons,01-14,26,2012-07-20,29 -Persons,01-14,15,2012-07-27,30 -Persons,01-14,13,2012-08-03,31 -Persons,01-14,38,2012-08-10,32 -Persons,01-14,14,2012-08-17,33 -Persons,01-14,19,2012-08-24,34 -Persons,01-14,13,2012-08-31,35 -Persons,01-14,20,2012-09-07,36 -Persons,01-14,19,2012-09-14,37 -Persons,01-14,15,2012-09-21,38 -Persons,01-14,16,2012-09-28,39 -Persons,01-14,16,2012-10-05,40 -Persons,01-14,11,2012-10-12,41 -Persons,01-14,24,2012-10-19,42 -Persons,01-14,31,2012-10-26,43 -Persons,01-14,21,2012-11-02,44 -Persons,01-14,25,2012-11-09,45 -Persons,01-14,19,2012-11-16,46 -Persons,01-14,18,2012-11-23,47 -Persons,01-14,19,2012-11-30,48 -Persons,01-14,32,2012-12-07,49 -Persons,01-14,23,2012-12-14,50 -Persons,01-14,23,2012-12-21,51 -Persons,01-14,15,2012-12-28,52 -Persons,15-44,181,2012-01-06,1 -Persons,15-44,282,2012-01-13,2 -Persons,15-44,279,2012-01-20,3 -Persons,15-44,285,2012-01-27,4 -Persons,15-44,280,2012-02-03,5 -Persons,15-44,312,2012-02-10,6 -Persons,15-44,290,2012-02-17,7 -Persons,15-44,320,2012-02-24,8 -Persons,15-44,278,2012-03-02,9 -Persons,15-44,318,2012-03-09,10 -Persons,15-44,270,2012-03-16,11 -Persons,15-44,296,2012-03-23,12 -Persons,15-44,290,2012-03-30,13 -Persons,15-44,301,2012-04-06,14 -Persons,15-44,278,2012-04-13,15 -Persons,15-44,306,2012-04-20,16 -Persons,15-44,288,2012-04-27,17 -Persons,15-44,301,2012-05-04,18 -Persons,15-44,241,2012-05-11,19 -Persons,15-44,306,2012-05-18,20 -Persons,15-44,273,2012-05-25,21 -Persons,15-44,303,2012-06-01,22 -Persons,15-44,185,2012-06-08,23 -Persons,15-44,300,2012-06-15,24 -Persons,15-44,289,2012-06-22,25 -Persons,15-44,256,2012-06-29,26 -Persons,15-44,266,2012-07-06,27 -Persons,15-44,260,2012-07-13,28 -Persons,15-44,292,2012-07-20,29 -Persons,15-44,283,2012-07-27,30 -Persons,15-44,271,2012-08-03,31 -Persons,15-44,249,2012-08-10,32 -Persons,15-44,268,2012-08-17,33 -Persons,15-44,283,2012-08-24,34 -Persons,15-44,243,2012-08-31,35 -Persons,15-44,243,2012-09-07,36 -Persons,15-44,259,2012-09-14,37 -Persons,15-44,319,2012-09-21,38 -Persons,15-44,246,2012-09-28,39 -Persons,15-44,234,2012-10-05,40 -Persons,15-44,270,2012-10-12,41 -Persons,15-44,245,2012-10-19,42 -Persons,15-44,280,2012-10-26,43 -Persons,15-44,284,2012-11-02,44 -Persons,15-44,304,2012-11-09,45 -Persons,15-44,288,2012-11-16,46 -Persons,15-44,307,2012-11-23,47 -Persons,15-44,268,2012-11-30,48 -Persons,15-44,283,2012-12-07,49 -Persons,15-44,334,2012-12-14,50 -Persons,15-44,306,2012-12-21,51 -Persons,15-44,200,2012-12-28,52 -Persons,45-64,1255,2012-01-06,1 -Persons,45-64,1370,2012-01-13,2 -Persons,45-64,1204,2012-01-20,3 -Persons,45-64,1240,2012-01-27,4 -Persons,45-64,1245,2012-02-03,5 -Persons,45-64,1237,2012-02-10,6 -Persons,45-64,1164,2012-02-17,7 -Persons,45-64,1220,2012-02-24,8 -Persons,45-64,1310,2012-03-02,9 -Persons,45-64,1185,2012-03-09,10 -Persons,45-64,1238,2012-03-16,11 -Persons,45-64,1256,2012-03-23,12 -Persons,45-64,1170,2012-03-30,13 -Persons,45-64,1072,2012-04-06,14 -Persons,45-64,1155,2012-04-13,15 -Persons,45-64,1313,2012-04-20,16 -Persons,45-64,1227,2012-04-27,17 -Persons,45-64,1171,2012-05-04,18 -Persons,45-64,1063,2012-05-11,19 -Persons,45-64,1212,2012-05-18,20 -Persons,45-64,1177,2012-05-25,21 -Persons,45-64,1190,2012-06-01,22 -Persons,45-64,846,2012-06-08,23 -Persons,45-64,1217,2012-06-15,24 -Persons,45-64,1147,2012-06-22,25 -Persons,45-64,1130,2012-06-29,26 -Persons,45-64,1098,2012-07-06,27 -Persons,45-64,1123,2012-07-13,28 -Persons,45-64,1124,2012-07-20,29 -Persons,45-64,1157,2012-07-27,30 -Persons,45-64,1153,2012-08-03,31 -Persons,45-64,1124,2012-08-10,32 -Persons,45-64,1108,2012-08-17,33 -Persons,45-64,1144,2012-08-24,34 -Persons,45-64,952,2012-08-31,35 -Persons,45-64,1164,2012-09-07,36 -Persons,45-64,1106,2012-09-14,37 -Persons,45-64,1173,2012-09-21,38 -Persons,45-64,1094,2012-09-28,39 -Persons,45-64,1122,2012-10-05,40 -Persons,45-64,1162,2012-10-12,41 -Persons,45-64,1120,2012-10-19,42 -Persons,45-64,1149,2012-10-26,43 -Persons,45-64,1158,2012-11-02,44 -Persons,45-64,1172,2012-11-09,45 -Persons,45-64,1197,2012-11-16,46 -Persons,45-64,1203,2012-11-23,47 -Persons,45-64,1136,2012-11-30,48 -Persons,45-64,1219,2012-12-07,49 -Persons,45-64,1213,2012-12-14,50 -Persons,45-64,1315,2012-12-21,51 -Persons,45-64,817,2012-12-28,52 -Persons,65-74,1570,2012-01-06,1 -Persons,65-74,1795,2012-01-13,2 -Persons,65-74,1601,2012-01-20,3 -Persons,65-74,1626,2012-01-27,4 -Persons,65-74,1531,2012-02-03,5 -Persons,65-74,1650,2012-02-10,6 -Persons,65-74,1639,2012-02-17,7 -Persons,65-74,1667,2012-02-24,8 -Persons,65-74,1614,2012-03-02,9 -Persons,65-74,1585,2012-03-09,10 -Persons,65-74,1485,2012-03-16,11 -Persons,65-74,1526,2012-03-23,12 -Persons,65-74,1541,2012-03-30,13 -Persons,65-74,1314,2012-04-06,14 -Persons,65-74,1639,2012-04-13,15 -Persons,65-74,1732,2012-04-20,16 -Persons,65-74,1607,2012-04-27,17 -Persons,65-74,1615,2012-05-04,18 -Persons,65-74,1370,2012-05-11,19 -Persons,65-74,1643,2012-05-18,20 -Persons,65-74,1622,2012-05-25,21 -Persons,65-74,1542,2012-06-01,22 -Persons,65-74,1130,2012-06-08,23 -Persons,65-74,1794,2012-06-15,24 -Persons,65-74,1527,2012-06-22,25 -Persons,65-74,1464,2012-06-29,26 -Persons,65-74,1521,2012-07-06,27 -Persons,65-74,1493,2012-07-13,28 -Persons,65-74,1495,2012-07-20,29 -Persons,65-74,1500,2012-07-27,30 -Persons,65-74,1527,2012-08-03,31 -Persons,65-74,1447,2012-08-10,32 -Persons,65-74,1446,2012-08-17,33 -Persons,65-74,1515,2012-08-24,34 -Persons,65-74,1293,2012-08-31,35 -Persons,65-74,1418,2012-09-07,36 -Persons,65-74,1476,2012-09-14,37 -Persons,65-74,1474,2012-09-21,38 -Persons,65-74,1495,2012-09-28,39 -Persons,65-74,1508,2012-10-05,40 -Persons,65-74,1489,2012-10-12,41 -Persons,65-74,1535,2012-10-19,42 -Persons,65-74,1490,2012-10-26,43 -Persons,65-74,1579,2012-11-02,44 -Persons,65-74,1556,2012-11-09,45 -Persons,65-74,1576,2012-11-16,46 -Persons,65-74,1522,2012-11-23,47 -Persons,65-74,1551,2012-11-30,48 -Persons,65-74,1575,2012-12-07,49 -Persons,65-74,1628,2012-12-14,50 -Persons,65-74,1823,2012-12-21,51 -Persons,65-74,1240,2012-12-28,52 -Persons,75-84,3140,2012-01-06,1 -Persons,75-84,3372,2012-01-13,2 -Persons,75-84,3047,2012-01-20,3 -Persons,75-84,3008,2012-01-27,4 -Persons,75-84,2939,2012-02-03,5 -Persons,75-84,2942,2012-02-10,6 -Persons,75-84,3118,2012-02-17,7 -Persons,75-84,3234,2012-02-24,8 -Persons,75-84,3286,2012-03-02,9 -Persons,75-84,3074,2012-03-09,10 -Persons,75-84,2990,2012-03-16,11 -Persons,75-84,2877,2012-03-23,12 -Persons,75-84,2769,2012-03-30,13 -Persons,75-84,2478,2012-04-06,14 -Persons,75-84,2959,2012-04-13,15 -Persons,75-84,3231,2012-04-20,16 -Persons,75-84,2986,2012-04-27,17 -Persons,75-84,2936,2012-05-04,18 -Persons,75-84,2652,2012-05-11,19 -Persons,75-84,2891,2012-05-18,20 -Persons,75-84,2839,2012-05-25,21 -Persons,75-84,2873,2012-06-01,22 -Persons,75-84,2021,2012-06-08,23 -Persons,75-84,3063,2012-06-15,24 -Persons,75-84,2658,2012-06-22,25 -Persons,75-84,2594,2012-06-29,26 -Persons,75-84,2633,2012-07-06,27 -Persons,75-84,2571,2012-07-13,28 -Persons,75-84,2538,2012-07-20,29 -Persons,75-84,2557,2012-07-27,30 -Persons,75-84,2590,2012-08-03,31 -Persons,75-84,2564,2012-08-10,32 -Persons,75-84,2611,2012-08-17,33 -Persons,75-84,2618,2012-08-24,34 -Persons,75-84,2288,2012-08-31,35 -Persons,75-84,2596,2012-09-07,36 -Persons,75-84,2486,2012-09-14,37 -Persons,75-84,2548,2012-09-21,38 -Persons,75-84,2624,2012-09-28,39 -Persons,75-84,2639,2012-10-05,40 -Persons,75-84,2821,2012-10-12,41 -Persons,75-84,2750,2012-10-19,42 -Persons,75-84,2842,2012-10-26,43 -Persons,75-84,2666,2012-11-02,44 -Persons,75-84,2813,2012-11-09,45 -Persons,75-84,2863,2012-11-16,46 -Persons,75-84,2765,2012-11-23,47 -Persons,75-84,2826,2012-11-30,48 -Persons,75-84,2888,2012-12-07,49 -Persons,75-84,3060,2012-12-14,50 -Persons,75-84,3343,2012-12-21,51 -Persons,75-84,2397,2012-12-28,52 -Persons,85+,4280,2012-01-06,1 -Persons,85+,4393,2012-01-13,2 -Persons,85+,4197,2012-01-20,3 -Persons,85+,4088,2012-01-27,4 -Persons,85+,4044,2012-02-03,5 -Persons,85+,4077,2012-02-10,6 -Persons,85+,4252,2012-02-17,7 -Persons,85+,4551,2012-02-24,8 -Persons,85+,4374,2012-03-02,9 -Persons,85+,4270,2012-03-09,10 -Persons,85+,3982,2012-03-16,11 -Persons,85+,3806,2012-03-23,12 -Persons,85+,3779,2012-03-30,13 -Persons,85+,3281,2012-04-06,14 -Persons,85+,3870,2012-04-13,15 -Persons,85+,4135,2012-04-20,16 -Persons,85+,4048,2012-04-27,17 -Persons,85+,3847,2012-05-04,18 -Persons,85+,3461,2012-05-11,19 -Persons,85+,3761,2012-05-18,20 -Persons,85+,3607,2012-05-25,21 -Persons,85+,3606,2012-06-01,22 -Persons,85+,2548,2012-06-08,23 -Persons,85+,3700,2012-06-15,24 -Persons,85+,3363,2012-06-22,25 -Persons,85+,3339,2012-06-29,26 -Persons,85+,3306,2012-07-06,27 -Persons,85+,3233,2012-07-13,28 -Persons,85+,3162,2012-07-20,29 -Persons,85+,3295,2012-07-27,30 -Persons,85+,3331,2012-08-03,31 -Persons,85+,3316,2012-08-10,32 -Persons,85+,3274,2012-08-17,33 -Persons,85+,3336,2012-08-24,34 -Persons,85+,2766,2012-08-31,35 -Persons,85+,3345,2012-09-07,36 -Persons,85+,3231,2012-09-14,37 -Persons,85+,3253,2012-09-21,38 -Persons,85+,3330,2012-09-28,39 -Persons,85+,3483,2012-10-05,40 -Persons,85+,3636,2012-10-12,41 -Persons,85+,3553,2012-10-19,42 -Persons,85+,3709,2012-10-26,43 -Persons,85+,3563,2012-11-02,44 -Persons,85+,3746,2012-11-09,45 -Persons,85+,3888,2012-11-16,46 -Persons,85+,3783,2012-11-23,47 -Persons,85+,3532,2012-11-30,48 -Persons,85+,3774,2012-12-07,49 -Persons,85+,4068,2012-12-14,50 -Persons,85+,4585,2012-12-21,51 -Persons,85+,3387,2012-12-28,52 -Males,Under 1 year,22,2012-01-06,1 -Males,Under 1 year,29,2012-01-13,2 -Males,Under 1 year,31,2012-01-20,3 -Males,Under 1 year,29,2012-01-27,4 -Males,Under 1 year,34,2012-02-03,5 -Males,Under 1 year,28,2012-02-10,6 -Males,Under 1 year,30,2012-02-17,7 -Males,Under 1 year,47,2012-02-24,8 -Males,Under 1 year,33,2012-03-02,9 -Males,Under 1 year,34,2012-03-09,10 -Males,Under 1 year,35,2012-03-16,11 -Males,Under 1 year,40,2012-03-23,12 -Males,Under 1 year,39,2012-03-30,13 -Males,Under 1 year,32,2012-04-06,14 -Males,Under 1 year,35,2012-04-13,15 -Males,Under 1 year,46,2012-04-20,16 -Males,Under 1 year,34,2012-04-27,17 -Males,Under 1 year,32,2012-05-04,18 -Males,Under 1 year,36,2012-05-11,19 -Males,Under 1 year,40,2012-05-18,20 -Males,Under 1 year,37,2012-05-25,21 -Males,Under 1 year,34,2012-06-01,22 -Males,Under 1 year,20,2012-06-08,23 -Males,Under 1 year,42,2012-06-15,24 -Males,Under 1 year,21,2012-06-22,25 -Males,Under 1 year,33,2012-06-29,26 -Males,Under 1 year,41,2012-07-06,27 -Males,Under 1 year,31,2012-07-13,28 -Males,Under 1 year,29,2012-07-20,29 -Males,Under 1 year,40,2012-07-27,30 -Males,Under 1 year,31,2012-08-03,31 -Males,Under 1 year,43,2012-08-10,32 -Males,Under 1 year,21,2012-08-17,33 -Males,Under 1 year,28,2012-08-24,34 -Males,Under 1 year,36,2012-08-31,35 -Males,Under 1 year,36,2012-09-07,36 -Males,Under 1 year,31,2012-09-14,37 -Males,Under 1 year,27,2012-09-21,38 -Males,Under 1 year,37,2012-09-28,39 -Males,Under 1 year,37,2012-10-05,40 -Males,Under 1 year,27,2012-10-12,41 -Males,Under 1 year,39,2012-10-19,42 -Males,Under 1 year,27,2012-10-26,43 -Males,Under 1 year,35,2012-11-02,44 -Males,Under 1 year,38,2012-11-09,45 -Males,Under 1 year,37,2012-11-16,46 -Males,Under 1 year,42,2012-11-23,47 -Males,Under 1 year,30,2012-11-30,48 -Males,Under 1 year,38,2012-12-07,49 -Males,Under 1 year,39,2012-12-14,50 -Males,Under 1 year,33,2012-12-21,51 -Males,Under 1 year,24,2012-12-28,52 -Males,01-14,11,2012-01-06,1 -Males,01-14,9,2012-01-13,2 -Males,01-14,11,2012-01-20,3 -Males,01-14,14,2012-01-27,4 -Males,01-14,11,2012-02-03,5 -Males,01-14,12,2012-02-10,6 -Males,01-14,11,2012-02-17,7 -Males,01-14,12,2012-02-24,8 -Males,01-14,15,2012-03-02,9 -Males,01-14,8,2012-03-09,10 -Males,01-14,13,2012-03-16,11 -Males,01-14,17,2012-03-23,12 -Males,01-14,13,2012-03-30,13 -Males,01-14,12,2012-04-06,14 -Males,01-14,15,2012-04-13,15 -Males,01-14,12,2012-04-20,16 -Males,01-14,12,2012-04-27,17 -Males,01-14,14,2012-05-04,18 -Males,01-14,5,2012-05-11,19 -Males,01-14,13,2012-05-18,20 -Males,01-14,16,2012-05-25,21 -Males,01-14,13,2012-06-01,22 -Males,01-14,6,2012-06-08,23 -Males,01-14,6,2012-06-15,24 -Males,01-14,5,2012-06-22,25 -Males,01-14,9,2012-06-29,26 -Males,01-14,12,2012-07-06,27 -Males,01-14,6,2012-07-13,28 -Males,01-14,15,2012-07-20,29 -Males,01-14,7,2012-07-27,30 -Males,01-14,8,2012-08-03,31 -Males,01-14,19,2012-08-10,32 -Males,01-14,9,2012-08-17,33 -Males,01-14,8,2012-08-24,34 -Males,01-14,8,2012-08-31,35 -Males,01-14,17,2012-09-07,36 -Males,01-14,13,2012-09-14,37 -Males,01-14,7,2012-09-21,38 -Males,01-14,13,2012-09-28,39 -Males,01-14,13,2012-10-05,40 -Males,01-14,4,2012-10-12,41 -Males,01-14,16,2012-10-19,42 -Males,01-14,15,2012-10-26,43 -Males,01-14,13,2012-11-02,44 -Males,01-14,15,2012-11-09,45 -Males,01-14,10,2012-11-16,46 -Males,01-14,6,2012-11-23,47 -Males,01-14,8,2012-11-30,48 -Males,01-14,18,2012-12-07,49 -Males,01-14,11,2012-12-14,50 -Males,01-14,14,2012-12-21,51 -Males,01-14,7,2012-12-28,52 -Males,15-44,95,2012-01-06,1 -Males,15-44,170,2012-01-13,2 -Males,15-44,180,2012-01-20,3 -Males,15-44,184,2012-01-27,4 -Males,15-44,167,2012-02-03,5 -Males,15-44,210,2012-02-10,6 -Males,15-44,186,2012-02-17,7 -Males,15-44,224,2012-02-24,8 -Males,15-44,183,2012-03-02,9 -Males,15-44,225,2012-03-09,10 -Males,15-44,165,2012-03-16,11 -Males,15-44,193,2012-03-23,12 -Males,15-44,197,2012-03-30,13 -Males,15-44,192,2012-04-06,14 -Males,15-44,178,2012-04-13,15 -Males,15-44,175,2012-04-20,16 -Males,15-44,177,2012-04-27,17 -Males,15-44,200,2012-05-04,18 -Males,15-44,137,2012-05-11,19 -Males,15-44,205,2012-05-18,20 -Males,15-44,175,2012-05-25,21 -Males,15-44,209,2012-06-01,22 -Males,15-44,98,2012-06-08,23 -Males,15-44,197,2012-06-15,24 -Males,15-44,190,2012-06-22,25 -Males,15-44,168,2012-06-29,26 -Males,15-44,192,2012-07-06,27 -Males,15-44,180,2012-07-13,28 -Males,15-44,182,2012-07-20,29 -Males,15-44,194,2012-07-27,30 -Males,15-44,178,2012-08-03,31 -Males,15-44,158,2012-08-10,32 -Males,15-44,167,2012-08-17,33 -Males,15-44,160,2012-08-24,34 -Males,15-44,155,2012-08-31,35 -Males,15-44,155,2012-09-07,36 -Males,15-44,181,2012-09-14,37 -Males,15-44,209,2012-09-21,38 -Males,15-44,147,2012-09-28,39 -Males,15-44,153,2012-10-05,40 -Males,15-44,176,2012-10-12,41 -Males,15-44,159,2012-10-19,42 -Males,15-44,182,2012-10-26,43 -Males,15-44,181,2012-11-02,44 -Males,15-44,193,2012-11-09,45 -Males,15-44,188,2012-11-16,46 -Males,15-44,206,2012-11-23,47 -Males,15-44,172,2012-11-30,48 -Males,15-44,185,2012-12-07,49 -Males,15-44,221,2012-12-14,50 -Males,15-44,219,2012-12-21,51 -Males,15-44,112,2012-12-28,52 -Males,45-64,723,2012-01-06,1 -Males,45-64,784,2012-01-13,2 -Males,45-64,727,2012-01-20,3 -Males,45-64,733,2012-01-27,4 -Males,45-64,739,2012-02-03,5 -Males,45-64,737,2012-02-10,6 -Males,45-64,683,2012-02-17,7 -Males,45-64,701,2012-02-24,8 -Males,45-64,767,2012-03-02,9 -Males,45-64,685,2012-03-09,10 -Males,45-64,741,2012-03-16,11 -Males,45-64,738,2012-03-23,12 -Males,45-64,711,2012-03-30,13 -Males,45-64,642,2012-04-06,14 -Males,45-64,659,2012-04-13,15 -Males,45-64,783,2012-04-20,16 -Males,45-64,713,2012-04-27,17 -Males,45-64,686,2012-05-04,18 -Males,45-64,635,2012-05-11,19 -Males,45-64,713,2012-05-18,20 -Males,45-64,701,2012-05-25,21 -Males,45-64,718,2012-06-01,22 -Males,45-64,485,2012-06-08,23 -Males,45-64,712,2012-06-15,24 -Males,45-64,674,2012-06-22,25 -Males,45-64,677,2012-06-29,26 -Males,45-64,645,2012-07-06,27 -Males,45-64,657,2012-07-13,28 -Males,45-64,676,2012-07-20,29 -Males,45-64,673,2012-07-27,30 -Males,45-64,675,2012-08-03,31 -Males,45-64,677,2012-08-10,32 -Males,45-64,654,2012-08-17,33 -Males,45-64,690,2012-08-24,34 -Males,45-64,576,2012-08-31,35 -Males,45-64,671,2012-09-07,36 -Males,45-64,688,2012-09-14,37 -Males,45-64,713,2012-09-21,38 -Males,45-64,642,2012-09-28,39 -Males,45-64,670,2012-10-05,40 -Males,45-64,692,2012-10-12,41 -Males,45-64,644,2012-10-19,42 -Males,45-64,689,2012-10-26,43 -Males,45-64,661,2012-11-02,44 -Males,45-64,696,2012-11-09,45 -Males,45-64,725,2012-11-16,46 -Males,45-64,722,2012-11-23,47 -Males,45-64,693,2012-11-30,48 -Males,45-64,753,2012-12-07,49 -Males,45-64,692,2012-12-14,50 -Males,45-64,732,2012-12-21,51 -Males,45-64,477,2012-12-28,52 -Males,65-74,907,2012-01-06,1 -Males,65-74,1024,2012-01-13,2 -Males,65-74,922,2012-01-20,3 -Males,65-74,977,2012-01-27,4 -Males,65-74,883,2012-02-03,5 -Males,65-74,960,2012-02-10,6 -Males,65-74,950,2012-02-17,7 -Males,65-74,967,2012-02-24,8 -Males,65-74,951,2012-03-02,9 -Males,65-74,907,2012-03-09,10 -Males,65-74,867,2012-03-16,11 -Males,65-74,893,2012-03-23,12 -Males,65-74,885,2012-03-30,13 -Males,65-74,788,2012-04-06,14 -Males,65-74,978,2012-04-13,15 -Males,65-74,981,2012-04-20,16 -Males,65-74,961,2012-04-27,17 -Males,65-74,952,2012-05-04,18 -Males,65-74,802,2012-05-11,19 -Males,65-74,967,2012-05-18,20 -Males,65-74,937,2012-05-25,21 -Males,65-74,862,2012-06-01,22 -Males,65-74,649,2012-06-08,23 -Males,65-74,1034,2012-06-15,24 -Males,65-74,862,2012-06-22,25 -Males,65-74,847,2012-06-29,26 -Males,65-74,898,2012-07-06,27 -Males,65-74,880,2012-07-13,28 -Males,65-74,854,2012-07-20,29 -Males,65-74,896,2012-07-27,30 -Males,65-74,893,2012-08-03,31 -Males,65-74,850,2012-08-10,32 -Males,65-74,844,2012-08-17,33 -Males,65-74,928,2012-08-24,34 -Males,65-74,767,2012-08-31,35 -Males,65-74,830,2012-09-07,36 -Males,65-74,893,2012-09-14,37 -Males,65-74,840,2012-09-21,38 -Males,65-74,920,2012-09-28,39 -Males,65-74,896,2012-10-05,40 -Males,65-74,858,2012-10-12,41 -Males,65-74,910,2012-10-19,42 -Males,65-74,868,2012-10-26,43 -Males,65-74,919,2012-11-02,44 -Males,65-74,887,2012-11-09,45 -Males,65-74,910,2012-11-16,46 -Males,65-74,894,2012-11-23,47 -Males,65-74,905,2012-11-30,48 -Males,65-74,921,2012-12-07,49 -Males,65-74,947,2012-12-14,50 -Males,65-74,1043,2012-12-21,51 -Males,65-74,738,2012-12-28,52 -Males,75-84,1608,2012-01-06,1 -Males,75-84,1749,2012-01-13,2 -Males,75-84,1570,2012-01-20,3 -Males,75-84,1575,2012-01-27,4 -Males,75-84,1513,2012-02-03,5 -Males,75-84,1540,2012-02-10,6 -Males,75-84,1601,2012-02-17,7 -Males,75-84,1622,2012-02-24,8 -Males,75-84,1686,2012-03-02,9 -Males,75-84,1600,2012-03-09,10 -Males,75-84,1551,2012-03-16,11 -Males,75-84,1476,2012-03-23,12 -Males,75-84,1421,2012-03-30,13 -Males,75-84,1295,2012-04-06,14 -Males,75-84,1509,2012-04-13,15 -Males,75-84,1663,2012-04-20,16 -Males,75-84,1583,2012-04-27,17 -Males,75-84,1502,2012-05-04,18 -Males,75-84,1374,2012-05-11,19 -Males,75-84,1496,2012-05-18,20 -Males,75-84,1474,2012-05-25,21 -Males,75-84,1538,2012-06-01,22 -Males,75-84,1030,2012-06-08,23 -Males,75-84,1602,2012-06-15,24 -Males,75-84,1370,2012-06-22,25 -Males,75-84,1363,2012-06-29,26 -Males,75-84,1362,2012-07-06,27 -Males,75-84,1338,2012-07-13,28 -Males,75-84,1255,2012-07-20,29 -Males,75-84,1326,2012-07-27,30 -Males,75-84,1331,2012-08-03,31 -Males,75-84,1339,2012-08-10,32 -Males,75-84,1354,2012-08-17,33 -Males,75-84,1329,2012-08-24,34 -Males,75-84,1211,2012-08-31,35 -Males,75-84,1328,2012-09-07,36 -Males,75-84,1301,2012-09-14,37 -Males,75-84,1338,2012-09-21,38 -Males,75-84,1393,2012-09-28,39 -Males,75-84,1411,2012-10-05,40 -Males,75-84,1429,2012-10-12,41 -Males,75-84,1441,2012-10-19,42 -Males,75-84,1462,2012-10-26,43 -Males,75-84,1335,2012-11-02,44 -Males,75-84,1483,2012-11-09,45 -Males,75-84,1480,2012-11-16,46 -Males,75-84,1458,2012-11-23,47 -Males,75-84,1507,2012-11-30,48 -Males,75-84,1519,2012-12-07,49 -Males,75-84,1589,2012-12-14,50 -Males,75-84,1731,2012-12-21,51 -Males,75-84,1226,2012-12-28,52 -Males,85+,1513,2012-01-06,1 -Males,85+,1516,2012-01-13,2 -Males,85+,1478,2012-01-20,3 -Males,85+,1440,2012-01-27,4 -Males,85+,1481,2012-02-03,5 -Males,85+,1477,2012-02-10,6 -Males,85+,1570,2012-02-17,7 -Males,85+,1696,2012-02-24,8 -Males,85+,1524,2012-03-02,9 -Males,85+,1489,2012-03-09,10 -Males,85+,1444,2012-03-16,11 -Males,85+,1378,2012-03-23,12 -Males,85+,1382,2012-03-30,13 -Males,85+,1152,2012-04-06,14 -Males,85+,1375,2012-04-13,15 -Males,85+,1505,2012-04-20,16 -Males,85+,1416,2012-04-27,17 -Males,85+,1347,2012-05-04,18 -Males,85+,1250,2012-05-11,19 -Males,85+,1394,2012-05-18,20 -Males,85+,1259,2012-05-25,21 -Males,85+,1250,2012-06-01,22 -Males,85+,915,2012-06-08,23 -Males,85+,1354,2012-06-15,24 -Males,85+,1229,2012-06-22,25 -Males,85+,1238,2012-06-29,26 -Males,85+,1188,2012-07-06,27 -Males,85+,1217,2012-07-13,28 -Males,85+,1192,2012-07-20,29 -Males,85+,1177,2012-07-27,30 -Males,85+,1147,2012-08-03,31 -Males,85+,1213,2012-08-10,32 -Males,85+,1190,2012-08-17,33 -Males,85+,1200,2012-08-24,34 -Males,85+,1029,2012-08-31,35 -Males,85+,1198,2012-09-07,36 -Males,85+,1228,2012-09-14,37 -Males,85+,1166,2012-09-21,38 -Males,85+,1217,2012-09-28,39 -Males,85+,1296,2012-10-05,40 -Males,85+,1310,2012-10-12,41 -Males,85+,1283,2012-10-19,42 -Males,85+,1373,2012-10-26,43 -Males,85+,1266,2012-11-02,44 -Males,85+,1364,2012-11-09,45 -Males,85+,1444,2012-11-16,46 -Males,85+,1412,2012-11-23,47 -Males,85+,1285,2012-11-30,48 -Males,85+,1370,2012-12-07,49 -Males,85+,1539,2012-12-14,50 -Males,85+,1655,2012-12-21,51 -Males,85+,1204,2012-12-28,52 -Females,Under 1 year,26,2012-01-06,1 -Females,Under 1 year,32,2012-01-13,2 -Females,Under 1 year,17,2012-01-20,3 -Females,Under 1 year,16,2012-01-27,4 -Females,Under 1 year,18,2012-02-03,5 -Females,Under 1 year,22,2012-02-10,6 -Females,Under 1 year,23,2012-02-17,7 -Females,Under 1 year,28,2012-02-24,8 -Females,Under 1 year,22,2012-03-02,9 -Females,Under 1 year,23,2012-03-09,10 -Females,Under 1 year,23,2012-03-16,11 -Females,Under 1 year,27,2012-03-23,12 -Females,Under 1 year,22,2012-03-30,13 -Females,Under 1 year,18,2012-04-06,14 -Females,Under 1 year,30,2012-04-13,15 -Females,Under 1 year,26,2012-04-20,16 -Females,Under 1 year,26,2012-04-27,17 -Females,Under 1 year,28,2012-05-04,18 -Females,Under 1 year,18,2012-05-11,19 -Females,Under 1 year,27,2012-05-18,20 -Females,Under 1 year,21,2012-05-25,21 -Females,Under 1 year,26,2012-06-01,22 -Females,Under 1 year,22,2012-06-08,23 -Females,Under 1 year,38,2012-06-15,24 -Females,Under 1 year,32,2012-06-22,25 -Females,Under 1 year,23,2012-06-29,26 -Females,Under 1 year,23,2012-07-06,27 -Females,Under 1 year,26,2012-07-13,28 -Females,Under 1 year,18,2012-07-20,29 -Females,Under 1 year,29,2012-07-27,30 -Females,Under 1 year,25,2012-08-03,31 -Females,Under 1 year,27,2012-08-10,32 -Females,Under 1 year,33,2012-08-17,33 -Females,Under 1 year,34,2012-08-24,34 -Females,Under 1 year,26,2012-08-31,35 -Females,Under 1 year,26,2012-09-07,36 -Females,Under 1 year,32,2012-09-14,37 -Females,Under 1 year,29,2012-09-21,38 -Females,Under 1 year,22,2012-09-28,39 -Females,Under 1 year,29,2012-10-05,40 -Females,Under 1 year,25,2012-10-12,41 -Females,Under 1 year,18,2012-10-19,42 -Females,Under 1 year,22,2012-10-26,43 -Females,Under 1 year,28,2012-11-02,44 -Females,Under 1 year,28,2012-11-09,45 -Females,Under 1 year,32,2012-11-16,46 -Females,Under 1 year,28,2012-11-23,47 -Females,Under 1 year,28,2012-11-30,48 -Females,Under 1 year,33,2012-12-07,49 -Females,Under 1 year,21,2012-12-14,50 -Females,Under 1 year,23,2012-12-21,51 -Females,Under 1 year,16,2012-12-28,52 -Females,01-14,8,2012-01-06,1 -Females,01-14,8,2012-01-13,2 -Females,01-14,6,2012-01-20,3 -Females,01-14,14,2012-01-27,4 -Females,01-14,15,2012-02-03,5 -Females,01-14,6,2012-02-10,6 -Females,01-14,5,2012-02-17,7 -Females,01-14,2,2012-02-24,8 -Females,01-14,7,2012-03-02,9 -Females,01-14,8,2012-03-09,10 -Females,01-14,5,2012-03-16,11 -Females,01-14,17,2012-03-23,12 -Females,01-14,8,2012-03-30,13 -Females,01-14,11,2012-04-06,14 -Females,01-14,11,2012-04-13,15 -Females,01-14,6,2012-04-20,16 -Females,01-14,9,2012-04-27,17 -Females,01-14,11,2012-05-04,18 -Females,01-14,11,2012-05-11,19 -Females,01-14,10,2012-05-18,20 -Females,01-14,10,2012-05-25,21 -Females,01-14,10,2012-06-01,22 -Females,01-14,3,2012-06-08,23 -Females,01-14,10,2012-06-15,24 -Females,01-14,12,2012-06-22,25 -Females,01-14,7,2012-06-29,26 -Females,01-14,5,2012-07-06,27 -Females,01-14,10,2012-07-13,28 -Females,01-14,11,2012-07-20,29 -Females,01-14,8,2012-07-27,30 -Females,01-14,5,2012-08-03,31 -Females,01-14,19,2012-08-10,32 -Females,01-14,5,2012-08-17,33 -Females,01-14,11,2012-08-24,34 -Females,01-14,5,2012-08-31,35 -Females,01-14,3,2012-09-07,36 -Females,01-14,6,2012-09-14,37 -Females,01-14,8,2012-09-21,38 -Females,01-14,3,2012-09-28,39 -Females,01-14,3,2012-10-05,40 -Females,01-14,7,2012-10-12,41 -Females,01-14,8,2012-10-19,42 -Females,01-14,16,2012-10-26,43 -Females,01-14,8,2012-11-02,44 -Females,01-14,10,2012-11-09,45 -Females,01-14,9,2012-11-16,46 -Females,01-14,12,2012-11-23,47 -Females,01-14,11,2012-11-30,48 -Females,01-14,14,2012-12-07,49 -Females,01-14,12,2012-12-14,50 -Females,01-14,9,2012-12-21,51 -Females,01-14,8,2012-12-28,52 -Females,15-44,86,2012-01-06,1 -Females,15-44,112,2012-01-13,2 -Females,15-44,99,2012-01-20,3 -Females,15-44,101,2012-01-27,4 -Females,15-44,113,2012-02-03,5 -Females,15-44,102,2012-02-10,6 -Females,15-44,104,2012-02-17,7 -Females,15-44,96,2012-02-24,8 -Females,15-44,95,2012-03-02,9 -Females,15-44,93,2012-03-09,10 -Females,15-44,105,2012-03-16,11 -Females,15-44,103,2012-03-23,12 -Females,15-44,93,2012-03-30,13 -Females,15-44,109,2012-04-06,14 -Females,15-44,100,2012-04-13,15 -Females,15-44,131,2012-04-20,16 -Females,15-44,111,2012-04-27,17 -Females,15-44,101,2012-05-04,18 -Females,15-44,104,2012-05-11,19 -Females,15-44,101,2012-05-18,20 -Females,15-44,98,2012-05-25,21 -Females,15-44,94,2012-06-01,22 -Females,15-44,87,2012-06-08,23 -Females,15-44,103,2012-06-15,24 -Females,15-44,99,2012-06-22,25 -Females,15-44,88,2012-06-29,26 -Females,15-44,74,2012-07-06,27 -Females,15-44,80,2012-07-13,28 -Females,15-44,110,2012-07-20,29 -Females,15-44,89,2012-07-27,30 -Females,15-44,93,2012-08-03,31 -Females,15-44,91,2012-08-10,32 -Females,15-44,101,2012-08-17,33 -Females,15-44,123,2012-08-24,34 -Females,15-44,88,2012-08-31,35 -Females,15-44,88,2012-09-07,36 -Females,15-44,78,2012-09-14,37 -Females,15-44,110,2012-09-21,38 -Females,15-44,99,2012-09-28,39 -Females,15-44,81,2012-10-05,40 -Females,15-44,94,2012-10-12,41 -Females,15-44,86,2012-10-19,42 -Females,15-44,98,2012-10-26,43 -Females,15-44,103,2012-11-02,44 -Females,15-44,111,2012-11-09,45 -Females,15-44,100,2012-11-16,46 -Females,15-44,101,2012-11-23,47 -Females,15-44,96,2012-11-30,48 -Females,15-44,98,2012-12-07,49 -Females,15-44,113,2012-12-14,50 -Females,15-44,87,2012-12-21,51 -Females,15-44,88,2012-12-28,52 -Females,45-64,532,2012-01-06,1 -Females,45-64,586,2012-01-13,2 -Females,45-64,477,2012-01-20,3 -Females,45-64,507,2012-01-27,4 -Females,45-64,506,2012-02-03,5 -Females,45-64,500,2012-02-10,6 -Females,45-64,481,2012-02-17,7 -Females,45-64,519,2012-02-24,8 -Females,45-64,543,2012-03-02,9 -Females,45-64,500,2012-03-09,10 -Females,45-64,497,2012-03-16,11 -Females,45-64,518,2012-03-23,12 -Females,45-64,459,2012-03-30,13 -Females,45-64,430,2012-04-06,14 -Females,45-64,496,2012-04-13,15 -Females,45-64,530,2012-04-20,16 -Females,45-64,514,2012-04-27,17 -Females,45-64,485,2012-05-04,18 -Females,45-64,428,2012-05-11,19 -Females,45-64,499,2012-05-18,20 -Females,45-64,476,2012-05-25,21 -Females,45-64,472,2012-06-01,22 -Females,45-64,361,2012-06-08,23 -Females,45-64,505,2012-06-15,24 -Females,45-64,473,2012-06-22,25 -Females,45-64,453,2012-06-29,26 -Females,45-64,453,2012-07-06,27 -Females,45-64,466,2012-07-13,28 -Females,45-64,448,2012-07-20,29 -Females,45-64,484,2012-07-27,30 -Females,45-64,478,2012-08-03,31 -Females,45-64,447,2012-08-10,32 -Females,45-64,454,2012-08-17,33 -Females,45-64,454,2012-08-24,34 -Females,45-64,376,2012-08-31,35 -Females,45-64,493,2012-09-07,36 -Females,45-64,418,2012-09-14,37 -Females,45-64,460,2012-09-21,38 -Females,45-64,452,2012-09-28,39 -Females,45-64,452,2012-10-05,40 -Females,45-64,470,2012-10-12,41 -Females,45-64,476,2012-10-19,42 -Females,45-64,460,2012-10-26,43 -Females,45-64,497,2012-11-02,44 -Females,45-64,476,2012-11-09,45 -Females,45-64,472,2012-11-16,46 -Females,45-64,481,2012-11-23,47 -Females,45-64,443,2012-11-30,48 -Females,45-64,466,2012-12-07,49 -Females,45-64,521,2012-12-14,50 -Females,45-64,583,2012-12-21,51 -Females,45-64,340,2012-12-28,52 -Females,65-74,663,2012-01-06,1 -Females,65-74,771,2012-01-13,2 -Females,65-74,679,2012-01-20,3 -Females,65-74,649,2012-01-27,4 -Females,65-74,648,2012-02-03,5 -Females,65-74,690,2012-02-10,6 -Females,65-74,689,2012-02-17,7 -Females,65-74,700,2012-02-24,8 -Females,65-74,663,2012-03-02,9 -Females,65-74,678,2012-03-09,10 -Females,65-74,618,2012-03-16,11 -Females,65-74,633,2012-03-23,12 -Females,65-74,656,2012-03-30,13 -Females,65-74,526,2012-04-06,14 -Females,65-74,661,2012-04-13,15 -Females,65-74,751,2012-04-20,16 -Females,65-74,646,2012-04-27,17 -Females,65-74,663,2012-05-04,18 -Females,65-74,568,2012-05-11,19 -Females,65-74,676,2012-05-18,20 -Females,65-74,685,2012-05-25,21 -Females,65-74,680,2012-06-01,22 -Females,65-74,481,2012-06-08,23 -Females,65-74,760,2012-06-15,24 -Females,65-74,665,2012-06-22,25 -Females,65-74,617,2012-06-29,26 -Females,65-74,623,2012-07-06,27 -Females,65-74,613,2012-07-13,28 -Females,65-74,641,2012-07-20,29 -Females,65-74,604,2012-07-27,30 -Females,65-74,634,2012-08-03,31 -Females,65-74,597,2012-08-10,32 -Females,65-74,602,2012-08-17,33 -Females,65-74,587,2012-08-24,34 -Females,65-74,526,2012-08-31,35 -Females,65-74,588,2012-09-07,36 -Females,65-74,583,2012-09-14,37 -Females,65-74,634,2012-09-21,38 -Females,65-74,575,2012-09-28,39 -Females,65-74,612,2012-10-05,40 -Females,65-74,631,2012-10-12,41 -Females,65-74,625,2012-10-19,42 -Females,65-74,622,2012-10-26,43 -Females,65-74,660,2012-11-02,44 -Females,65-74,669,2012-11-09,45 -Females,65-74,666,2012-11-16,46 -Females,65-74,628,2012-11-23,47 -Females,65-74,646,2012-11-30,48 -Females,65-74,654,2012-12-07,49 -Females,65-74,681,2012-12-14,50 -Females,65-74,780,2012-12-21,51 -Females,65-74,502,2012-12-28,52 -Females,75-84,1532,2012-01-06,1 -Females,75-84,1623,2012-01-13,2 -Females,75-84,1477,2012-01-20,3 -Females,75-84,1433,2012-01-27,4 -Females,75-84,1426,2012-02-03,5 -Females,75-84,1402,2012-02-10,6 -Females,75-84,1517,2012-02-17,7 -Females,75-84,1612,2012-02-24,8 -Females,75-84,1600,2012-03-02,9 -Females,75-84,1474,2012-03-09,10 -Females,75-84,1439,2012-03-16,11 -Females,75-84,1401,2012-03-23,12 -Females,75-84,1348,2012-03-30,13 -Females,75-84,1183,2012-04-06,14 -Females,75-84,1450,2012-04-13,15 -Females,75-84,1568,2012-04-20,16 -Females,75-84,1403,2012-04-27,17 -Females,75-84,1434,2012-05-04,18 -Females,75-84,1278,2012-05-11,19 -Females,75-84,1395,2012-05-18,20 -Females,75-84,1365,2012-05-25,21 -Females,75-84,1335,2012-06-01,22 -Females,75-84,991,2012-06-08,23 -Females,75-84,1461,2012-06-15,24 -Females,75-84,1288,2012-06-22,25 -Females,75-84,1231,2012-06-29,26 -Females,75-84,1271,2012-07-06,27 -Females,75-84,1233,2012-07-13,28 -Females,75-84,1283,2012-07-20,29 -Females,75-84,1231,2012-07-27,30 -Females,75-84,1259,2012-08-03,31 -Females,75-84,1225,2012-08-10,32 -Females,75-84,1257,2012-08-17,33 -Females,75-84,1289,2012-08-24,34 -Females,75-84,1077,2012-08-31,35 -Females,75-84,1268,2012-09-07,36 -Females,75-84,1185,2012-09-14,37 -Females,75-84,1210,2012-09-21,38 -Females,75-84,1231,2012-09-28,39 -Females,75-84,1228,2012-10-05,40 -Females,75-84,1392,2012-10-12,41 -Females,75-84,1309,2012-10-19,42 -Females,75-84,1380,2012-10-26,43 -Females,75-84,1331,2012-11-02,44 -Females,75-84,1330,2012-11-09,45 -Females,75-84,1383,2012-11-16,46 -Females,75-84,1307,2012-11-23,47 -Females,75-84,1319,2012-11-30,48 -Females,75-84,1369,2012-12-07,49 -Females,75-84,1471,2012-12-14,50 -Females,75-84,1612,2012-12-21,51 -Females,75-84,1171,2012-12-28,52 -Females,85+,2767,2012-01-06,1 -Females,85+,2877,2012-01-13,2 -Females,85+,2719,2012-01-20,3 -Females,85+,2648,2012-01-27,4 -Females,85+,2563,2012-02-03,5 -Females,85+,2600,2012-02-10,6 -Females,85+,2682,2012-02-17,7 -Females,85+,2855,2012-02-24,8 -Females,85+,2850,2012-03-02,9 -Females,85+,2781,2012-03-09,10 -Females,85+,2538,2012-03-16,11 -Females,85+,2428,2012-03-23,12 -Females,85+,2397,2012-03-30,13 -Females,85+,2129,2012-04-06,14 -Females,85+,2495,2012-04-13,15 -Females,85+,2630,2012-04-20,16 -Females,85+,2632,2012-04-27,17 -Females,85+,2500,2012-05-04,18 -Females,85+,2211,2012-05-11,19 -Females,85+,2367,2012-05-18,20 -Females,85+,2348,2012-05-25,21 -Females,85+,2356,2012-06-01,22 -Females,85+,1633,2012-06-08,23 -Females,85+,2346,2012-06-15,24 -Females,85+,2134,2012-06-22,25 -Females,85+,2101,2012-06-29,26 -Females,85+,2118,2012-07-06,27 -Females,85+,2016,2012-07-13,28 -Females,85+,1970,2012-07-20,29 -Females,85+,2118,2012-07-27,30 -Females,85+,2184,2012-08-03,31 -Females,85+,2103,2012-08-10,32 -Females,85+,2084,2012-08-17,33 -Females,85+,2136,2012-08-24,34 -Females,85+,1737,2012-08-31,35 -Females,85+,2147,2012-09-07,36 -Females,85+,2003,2012-09-14,37 -Females,85+,2087,2012-09-21,38 -Females,85+,2113,2012-09-28,39 -Females,85+,2187,2012-10-05,40 -Females,85+,2326,2012-10-12,41 -Females,85+,2270,2012-10-19,42 -Females,85+,2336,2012-10-26,43 -Females,85+,2297,2012-11-02,44 -Females,85+,2382,2012-11-09,45 -Females,85+,2444,2012-11-16,46 -Females,85+,2371,2012-11-23,47 -Females,85+,2247,2012-11-30,48 -Females,85+,2404,2012-12-07,49 -Females,85+,2529,2012-12-14,50 -Females,85+,2930,2012-12-21,51 -Females,85+,2183,2012-12-28,52 -Region,North East,520,2012-01-06,1 -Region,North East,611,2012-01-13,2 -Region,North East,546,2012-01-20,3 -Region,North East,556,2012-01-27,4 -Region,North East,507,2012-02-03,5 -Region,North East,493,2012-02-10,6 -Region,North East,533,2012-02-17,7 -Region,North East,563,2012-02-24,8 -Region,North East,504,2012-03-02,9 -Region,North East,533,2012-03-09,10 -Region,North East,478,2012-03-16,11 -Region,North East,507,2012-03-23,12 -Region,North East,487,2012-03-30,13 -Region,North East,450,2012-04-06,14 -Region,North East,512,2012-04-13,15 -Region,North East,584,2012-04-20,16 -Region,North East,556,2012-04-27,17 -Region,North East,538,2012-05-04,18 -Region,North East,441,2012-05-11,19 -Region,North East,505,2012-05-18,20 -Region,North East,505,2012-05-25,21 -Region,North East,514,2012-06-01,22 -Region,North East,362,2012-06-08,23 -Region,North East,539,2012-06-15,24 -Region,North East,482,2012-06-22,25 -Region,North East,508,2012-06-29,26 -Region,North East,478,2012-07-06,27 -Region,North East,441,2012-07-13,28 -Region,North East,459,2012-07-20,29 -Region,North East,496,2012-07-27,30 -Region,North East,480,2012-08-03,31 -Region,North East,469,2012-08-10,32 -Region,North East,452,2012-08-17,33 -Region,North East,460,2012-08-24,34 -Region,North East,397,2012-08-31,35 -Region,North East,450,2012-09-07,36 -Region,North East,475,2012-09-14,37 -Region,North East,518,2012-09-21,38 -Region,North East,468,2012-09-28,39 -Region,North East,471,2012-10-05,40 -Region,North East,467,2012-10-12,41 -Region,North East,510,2012-10-19,42 -Region,North East,503,2012-10-26,43 -Region,North East,459,2012-11-02,44 -Region,North East,459,2012-11-09,45 -Region,North East,507,2012-11-16,46 -Region,North East,550,2012-11-23,47 -Region,North East,539,2012-11-30,48 -Region,North East,492,2012-12-07,49 -Region,North East,543,2012-12-14,50 -Region,North East,584,2012-12-21,51 -Region,North East,421,2012-12-28,52 -Region,North West,1442,2012-01-06,1 -Region,North West,1452,2012-01-13,2 -Region,North West,1429,2012-01-20,3 -Region,North West,1377,2012-01-27,4 -Region,North West,1382,2012-02-03,5 -Region,North West,1354,2012-02-10,6 -Region,North West,1430,2012-02-17,7 -Region,North West,1465,2012-02-24,8 -Region,North West,1417,2012-03-02,9 -Region,North West,1419,2012-03-09,10 -Region,North West,1300,2012-03-16,11 -Region,North West,1315,2012-03-23,12 -Region,North West,1363,2012-03-30,13 -Region,North West,1181,2012-04-06,14 -Region,North West,1445,2012-04-13,15 -Region,North West,1496,2012-04-20,16 -Region,North West,1306,2012-04-27,17 -Region,North West,1392,2012-05-04,18 -Region,North West,1255,2012-05-11,19 -Region,North West,1347,2012-05-18,20 -Region,North West,1383,2012-05-25,21 -Region,North West,1310,2012-06-01,22 -Region,North West,984,2012-06-08,23 -Region,North West,1360,2012-06-15,24 -Region,North West,1255,2012-06-22,25 -Region,North West,1203,2012-06-29,26 -Region,North West,1184,2012-07-06,27 -Region,North West,1218,2012-07-13,28 -Region,North West,1217,2012-07-20,29 -Region,North West,1204,2012-07-27,30 -Region,North West,1212,2012-08-03,31 -Region,North West,1215,2012-08-10,32 -Region,North West,1138,2012-08-17,33 -Region,North West,1211,2012-08-24,34 -Region,North West,1075,2012-08-31,35 -Region,North West,1233,2012-09-07,36 -Region,North West,1178,2012-09-14,37 -Region,North West,1268,2012-09-21,38 -Region,North West,1223,2012-09-28,39 -Region,North West,1299,2012-10-05,40 -Region,North West,1298,2012-10-12,41 -Region,North West,1277,2012-10-19,42 -Region,North West,1355,2012-10-26,43 -Region,North West,1348,2012-11-02,44 -Region,North West,1348,2012-11-09,45 -Region,North West,1370,2012-11-16,46 -Region,North West,1276,2012-11-23,47 -Region,North West,1236,2012-11-30,48 -Region,North West,1321,2012-12-07,49 -Region,North West,1330,2012-12-14,50 -Region,North West,1433,2012-12-21,51 -Region,North West,1174,2012-12-28,52 -Region,Yorkshire and The Humber,1069,2012-01-06,1 -Region,Yorkshire and The Humber,1150,2012-01-13,2 -Region,Yorkshire and The Humber,1093,2012-01-20,3 -Region,Yorkshire and The Humber,1074,2012-01-27,4 -Region,Yorkshire and The Humber,1010,2012-02-03,5 -Region,Yorkshire and The Humber,1039,2012-02-10,6 -Region,Yorkshire and The Humber,1037,2012-02-17,7 -Region,Yorkshire and The Humber,1086,2012-02-24,8 -Region,Yorkshire and The Humber,1085,2012-03-02,9 -Region,Yorkshire and The Humber,1006,2012-03-09,10 -Region,Yorkshire and The Humber,1031,2012-03-16,11 -Region,Yorkshire and The Humber,985,2012-03-23,12 -Region,Yorkshire and The Humber,892,2012-03-30,13 -Region,Yorkshire and The Humber,827,2012-04-06,14 -Region,Yorkshire and The Humber,969,2012-04-13,15 -Region,Yorkshire and The Humber,1034,2012-04-20,16 -Region,Yorkshire and The Humber,1024,2012-04-27,17 -Region,Yorkshire and The Humber,964,2012-05-04,18 -Region,Yorkshire and The Humber,820,2012-05-11,19 -Region,Yorkshire and The Humber,1012,2012-05-18,20 -Region,Yorkshire and The Humber,933,2012-05-25,21 -Region,Yorkshire and The Humber,978,2012-06-01,22 -Region,Yorkshire and The Humber,714,2012-06-08,23 -Region,Yorkshire and The Humber,1000,2012-06-15,24 -Region,Yorkshire and The Humber,861,2012-06-22,25 -Region,Yorkshire and The Humber,894,2012-06-29,26 -Region,Yorkshire and The Humber,923,2012-07-06,27 -Region,Yorkshire and The Humber,828,2012-07-13,28 -Region,Yorkshire and The Humber,889,2012-07-20,29 -Region,Yorkshire and The Humber,937,2012-07-27,30 -Region,Yorkshire and The Humber,844,2012-08-03,31 -Region,Yorkshire and The Humber,871,2012-08-10,32 -Region,Yorkshire and The Humber,872,2012-08-17,33 -Region,Yorkshire and The Humber,917,2012-08-24,34 -Region,Yorkshire and The Humber,793,2012-08-31,35 -Region,Yorkshire and The Humber,853,2012-09-07,36 -Region,Yorkshire and The Humber,940,2012-09-14,37 -Region,Yorkshire and The Humber,882,2012-09-21,38 -Region,Yorkshire and The Humber,891,2012-09-28,39 -Region,Yorkshire and The Humber,858,2012-10-05,40 -Region,Yorkshire and The Humber,940,2012-10-12,41 -Region,Yorkshire and The Humber,901,2012-10-19,42 -Region,Yorkshire and The Humber,948,2012-10-26,43 -Region,Yorkshire and The Humber,928,2012-11-02,44 -Region,Yorkshire and The Humber,928,2012-11-09,45 -Region,Yorkshire and The Humber,954,2012-11-16,46 -Region,Yorkshire and The Humber,1017,2012-11-23,47 -Region,Yorkshire and The Humber,929,2012-11-30,48 -Region,Yorkshire and The Humber,897,2012-12-07,49 -Region,Yorkshire and The Humber,1017,2012-12-14,50 -Region,Yorkshire and The Humber,977,2012-12-21,51 -Region,Yorkshire and The Humber,845,2012-12-28,52 -Region,East Midlands,852,2012-01-06,1 -Region,East Midlands,922,2012-01-13,2 -Region,East Midlands,869,2012-01-20,3 -Region,East Midlands,871,2012-01-27,4 -Region,East Midlands,856,2012-02-03,5 -Region,East Midlands,890,2012-02-10,6 -Region,East Midlands,857,2012-02-17,7 -Region,East Midlands,935,2012-02-24,8 -Region,East Midlands,868,2012-03-02,9 -Region,East Midlands,856,2012-03-09,10 -Region,East Midlands,867,2012-03-16,11 -Region,East Midlands,804,2012-03-23,12 -Region,East Midlands,830,2012-03-30,13 -Region,East Midlands,739,2012-04-06,14 -Region,East Midlands,829,2012-04-13,15 -Region,East Midlands,913,2012-04-20,16 -Region,East Midlands,879,2012-04-27,17 -Region,East Midlands,852,2012-05-04,18 -Region,East Midlands,786,2012-05-11,19 -Region,East Midlands,805,2012-05-18,20 -Region,East Midlands,747,2012-05-25,21 -Region,East Midlands,783,2012-06-01,22 -Region,East Midlands,557,2012-06-08,23 -Region,East Midlands,853,2012-06-15,24 -Region,East Midlands,757,2012-06-22,25 -Region,East Midlands,810,2012-06-29,26 -Region,East Midlands,738,2012-07-06,27 -Region,East Midlands,738,2012-07-13,28 -Region,East Midlands,730,2012-07-20,29 -Region,East Midlands,718,2012-07-27,30 -Region,East Midlands,767,2012-08-03,31 -Region,East Midlands,746,2012-08-10,32 -Region,East Midlands,707,2012-08-17,33 -Region,East Midlands,749,2012-08-24,34 -Region,East Midlands,634,2012-08-31,35 -Region,East Midlands,764,2012-09-07,36 -Region,East Midlands,735,2012-09-14,37 -Region,East Midlands,725,2012-09-21,38 -Region,East Midlands,712,2012-09-28,39 -Region,East Midlands,714,2012-10-05,40 -Region,East Midlands,765,2012-10-12,41 -Region,East Midlands,791,2012-10-19,42 -Region,East Midlands,794,2012-10-26,43 -Region,East Midlands,753,2012-11-02,44 -Region,East Midlands,753,2012-11-09,45 -Region,East Midlands,763,2012-11-16,46 -Region,East Midlands,836,2012-11-23,47 -Region,East Midlands,794,2012-11-30,48 -Region,East Midlands,765,2012-12-07,49 -Region,East Midlands,827,2012-12-14,50 -Region,East Midlands,869,2012-12-21,51 -Region,East Midlands,696,2012-12-28,52 -Region,West Midlands,1002,2012-01-06,1 -Region,West Midlands,1165,2012-01-13,2 -Region,West Midlands,1038,2012-01-20,3 -Region,West Midlands,1077,2012-01-27,4 -Region,West Midlands,1046,2012-02-03,5 -Region,West Midlands,1043,2012-02-10,6 -Region,West Midlands,1015,2012-02-17,7 -Region,West Midlands,1086,2012-02-24,8 -Region,West Midlands,1128,2012-03-02,9 -Region,West Midlands,1099,2012-03-09,10 -Region,West Midlands,985,2012-03-16,11 -Region,West Midlands,961,2012-03-23,12 -Region,West Midlands,935,2012-03-30,13 -Region,West Midlands,827,2012-04-06,14 -Region,West Midlands,972,2012-04-13,15 -Region,West Midlands,1136,2012-04-20,16 -Region,West Midlands,1051,2012-04-27,17 -Region,West Midlands,1070,2012-05-04,18 -Region,West Midlands,876,2012-05-11,19 -Region,West Midlands,1090,2012-05-18,20 -Region,West Midlands,965,2012-05-25,21 -Region,West Midlands,945,2012-06-01,22 -Region,West Midlands,647,2012-06-08,23 -Region,West Midlands,1116,2012-06-15,24 -Region,West Midlands,960,2012-06-22,25 -Region,West Midlands,896,2012-06-29,26 -Region,West Midlands,927,2012-07-06,27 -Region,West Midlands,898,2012-07-13,28 -Region,West Midlands,909,2012-07-20,29 -Region,West Midlands,896,2012-07-27,30 -Region,West Midlands,868,2012-08-03,31 -Region,West Midlands,935,2012-08-10,32 -Region,West Midlands,909,2012-08-17,33 -Region,West Midlands,937,2012-08-24,34 -Region,West Midlands,812,2012-08-31,35 -Region,West Midlands,954,2012-09-07,36 -Region,West Midlands,897,2012-09-14,37 -Region,West Midlands,878,2012-09-21,38 -Region,West Midlands,902,2012-09-28,39 -Region,West Midlands,914,2012-10-05,40 -Region,West Midlands,965,2012-10-12,41 -Region,West Midlands,883,2012-10-19,42 -Region,West Midlands,990,2012-10-26,43 -Region,West Midlands,951,2012-11-02,44 -Region,West Midlands,951,2012-11-09,45 -Region,West Midlands,1000,2012-11-16,46 -Region,West Midlands,1022,2012-11-23,47 -Region,West Midlands,999,2012-11-30,48 -Region,West Midlands,958,2012-12-07,49 -Region,West Midlands,1014,2012-12-14,50 -Region,West Midlands,1085,2012-12-21,51 -Region,West Midlands,792,2012-12-28,52 -Region,East,1127,2012-01-06,1 -Region,East,1189,2012-01-13,2 -Region,East,1050,2012-01-20,3 -Region,East,1047,2012-01-27,4 -Region,East,1105,2012-02-03,5 -Region,East,1088,2012-02-10,6 -Region,East,1102,2012-02-17,7 -Region,East,1204,2012-02-24,8 -Region,East,1182,2012-03-02,9 -Region,East,1155,2012-03-09,10 -Region,East,1065,2012-03-16,11 -Region,East,1094,2012-03-23,12 -Region,East,1036,2012-03-30,13 -Region,East,880,2012-04-06,14 -Region,East,1097,2012-04-13,15 -Region,East,1153,2012-04-20,16 -Region,East,1108,2012-04-27,17 -Region,East,1066,2012-05-04,18 -Region,East,950,2012-05-11,19 -Region,East,1027,2012-05-18,20 -Region,East,1007,2012-05-25,21 -Region,East,1026,2012-06-01,22 -Region,East,660,2012-06-08,23 -Region,East,1082,2012-06-15,24 -Region,East,942,2012-06-22,25 -Region,East,931,2012-06-29,26 -Region,East,975,2012-07-06,27 -Region,East,944,2012-07-13,28 -Region,East,815,2012-07-20,29 -Region,East,930,2012-07-27,30 -Region,East,964,2012-08-03,31 -Region,East,889,2012-08-10,32 -Region,East,962,2012-08-17,33 -Region,East,1001,2012-08-24,34 -Region,East,790,2012-08-31,35 -Region,East,933,2012-09-07,36 -Region,East,858,2012-09-14,37 -Region,East,893,2012-09-21,38 -Region,East,918,2012-09-28,39 -Region,East,920,2012-10-05,40 -Region,East,987,2012-10-12,41 -Region,East,1018,2012-10-19,42 -Region,East,970,2012-10-26,43 -Region,East,973,2012-11-02,44 -Region,East,973,2012-11-09,45 -Region,East,1007,2012-11-16,46 -Region,East,1011,2012-11-23,47 -Region,East,1059,2012-11-30,48 -Region,East,971,2012-12-07,49 -Region,East,1003,2012-12-14,50 -Region,East,1062,2012-12-21,51 -Region,East,809,2012-12-28,52 -Region,London,1096,2012-01-06,1 -Region,London,1099,2012-01-13,2 -Region,London,974,2012-01-20,3 -Region,London,993,2012-01-27,4 -Region,London,1020,2012-02-03,5 -Region,London,1032,2012-02-10,6 -Region,London,1127,2012-02-17,7 -Region,London,1159,2012-02-24,8 -Region,London,1149,2012-03-02,9 -Region,London,1002,2012-03-09,10 -Region,London,1002,2012-03-16,11 -Region,London,941,2012-03-23,12 -Region,London,935,2012-03-30,13 -Region,London,817,2012-04-06,14 -Region,London,967,2012-04-13,15 -Region,London,977,2012-04-20,16 -Region,London,942,2012-04-27,17 -Region,London,903,2012-05-04,18 -Region,London,844,2012-05-11,19 -Region,London,907,2012-05-18,20 -Region,London,924,2012-05-25,21 -Region,London,888,2012-06-01,22 -Region,London,663,2012-06-08,23 -Region,London,961,2012-06-15,24 -Region,London,827,2012-06-22,25 -Region,London,835,2012-06-29,26 -Region,London,796,2012-07-06,27 -Region,London,865,2012-07-13,28 -Region,London,827,2012-07-20,29 -Region,London,872,2012-07-27,30 -Region,London,829,2012-08-03,31 -Region,London,808,2012-08-10,32 -Region,London,807,2012-08-17,33 -Region,London,844,2012-08-24,34 -Region,London,734,2012-08-31,35 -Region,London,829,2012-09-07,36 -Region,London,799,2012-09-14,37 -Region,London,811,2012-09-21,38 -Region,London,830,2012-09-28,39 -Region,London,855,2012-10-05,40 -Region,London,887,2012-10-12,41 -Region,London,897,2012-10-19,42 -Region,London,920,2012-10-26,43 -Region,London,898,2012-11-02,44 -Region,London,898,2012-11-09,45 -Region,London,926,2012-11-16,46 -Region,London,987,2012-11-23,47 -Region,London,956,2012-11-30,48 -Region,London,901,2012-12-07,49 -Region,London,899,2012-12-14,50 -Region,London,986,2012-12-21,51 -Region,London,792,2012-12-28,52 -Region,South East,1584,2012-01-06,1 -Region,South East,1836,2012-01-13,2 -Region,South East,1652,2012-01-20,3 -Region,South East,1569,2012-01-27,4 -Region,South East,1507,2012-02-03,5 -Region,South East,1597,2012-02-10,6 -Region,South East,1668,2012-02-17,7 -Region,South East,1787,2012-02-24,8 -Region,South East,1738,2012-03-02,9 -Region,South East,1652,2012-03-09,10 -Region,South East,1645,2012-03-16,11 -Region,South East,1545,2012-03-23,12 -Region,South East,1516,2012-03-30,13 -Region,South East,1326,2012-04-06,14 -Region,South East,1488,2012-04-13,15 -Region,South East,1673,2012-04-20,16 -Region,South East,1597,2012-04-27,17 -Region,South East,1487,2012-05-04,18 -Region,South East,1378,2012-05-11,19 -Region,South East,1457,2012-05-18,20 -Region,South East,1497,2012-05-25,21 -Region,South East,1478,2012-06-01,22 -Region,South East,953,2012-06-08,23 -Region,South East,1515,2012-06-15,24 -Region,South East,1441,2012-06-22,25 -Region,South East,1297,2012-06-29,26 -Region,South East,1365,2012-07-06,27 -Region,South East,1254,2012-07-13,28 -Region,South East,1311,2012-07-20,29 -Region,South East,1291,2012-07-27,30 -Region,South East,1401,2012-08-03,31 -Region,South East,1336,2012-08-10,32 -Region,South East,1335,2012-08-17,33 -Region,South East,1342,2012-08-24,34 -Region,South East,1088,2012-08-31,35 -Region,South East,1304,2012-09-07,36 -Region,South East,1319,2012-09-14,37 -Region,South East,1305,2012-09-21,38 -Region,South East,1343,2012-09-28,39 -Region,South East,1455,2012-10-05,40 -Region,South East,1475,2012-10-12,41 -Region,South East,1443,2012-10-19,42 -Region,South East,1480,2012-10-26,43 -Region,South East,1393,2012-11-02,44 -Region,South East,1393,2012-11-09,45 -Region,South East,1539,2012-11-16,46 -Region,South East,1496,2012-11-23,47 -Region,South East,1483,2012-11-30,48 -Region,South East,1415,2012-12-07,49 -Region,South East,1492,2012-12-14,50 -Region,South East,1610,2012-12-21,51 -Region,South East,1179,2012-12-28,52 -Region,South West,1139,2012-01-06,1 -Region,South West,1177,2012-01-13,2 -Region,South West,1088,2012-01-20,3 -Region,South West,1095,2012-01-27,4 -Region,South West,1083,2012-02-03,5 -Region,South West,1116,2012-02-10,6 -Region,South West,1117,2012-02-17,7 -Region,South West,1148,2012-02-24,8 -Region,South West,1171,2012-03-02,9 -Region,South West,1089,2012-03-09,10 -Region,South West,1043,2012-03-16,11 -Region,South West,1052,2012-03-23,12 -Region,South West,1029,2012-03-30,13 -Region,South West,857,2012-04-06,14 -Region,South West,1030,2012-04-13,15 -Region,South West,1183,2012-04-20,16 -Region,South West,1092,2012-04-27,17 -Region,South West,1051,2012-05-04,18 -Region,South West,909,2012-05-11,19 -Region,South West,1094,2012-05-18,20 -Region,South West,1019,2012-05-25,21 -Region,South West,1051,2012-06-01,22 -Region,South West,733,2012-06-08,23 -Region,South West,1090,2012-06-15,24 -Region,South West,950,2012-06-22,25 -Region,South West,955,2012-06-29,26 -Region,South West,933,2012-07-06,27 -Region,South West,973,2012-07-13,28 -Region,South West,943,2012-07-20,29 -Region,South West,946,2012-07-27,30 -Region,South West,971,2012-08-03,31 -Region,South West,968,2012-08-10,32 -Region,South West,962,2012-08-17,33 -Region,South West,936,2012-08-24,34 -Region,South West,793,2012-08-31,35 -Region,South West,974,2012-09-07,36 -Region,South West,902,2012-09-14,37 -Region,South West,997,2012-09-21,38 -Region,South West,942,2012-09-28,39 -Region,South West,997,2012-10-05,40 -Region,South West,1022,2012-10-12,41 -Region,South West,1003,2012-10-19,42 -Region,South West,1001,2012-10-26,43 -Region,South West,998,2012-11-02,44 -Region,South West,998,2012-11-09,45 -Region,South West,1015,2012-11-16,46 -Region,South West,1074,2012-11-23,47 -Region,South West,1031,2012-11-30,48 -Region,South West,983,2012-12-07,49 -Region,South West,1048,2012-12-14,50 -Region,South West,1017,2012-12-21,51 -Region,South West,821,2012-12-28,52 -Region,Wales,660,2012-01-06,1 -Region,Wales,707,2012-01-13,2 -Region,Wales,635,2012-01-20,3 -Region,Wales,644,2012-01-27,4 -Region,Wales,586,2012-02-03,5 -Region,Wales,622,2012-02-10,6 -Region,Wales,628,2012-02-17,7 -Region,Wales,630,2012-02-24,8 -Region,Wales,668,2012-03-02,9 -Region,Wales,679,2012-03-09,10 -Region,Wales,610,2012-03-16,11 -Region,Wales,637,2012-03-23,12 -Region,Wales,593,2012-03-30,13 -Region,Wales,596,2012-04-06,14 -Region,Wales,662,2012-04-13,15 -Region,Wales,644,2012-04-20,16 -Region,Wales,655,2012-04-27,17 -Region,Wales,609,2012-05-04,18 -Region,Wales,590,2012-05-11,19 -Region,Wales,636,2012-05-18,20 -Region,Wales,603,2012-05-25,21 -Region,Wales,605,2012-06-01,22 -Region,Wales,489,2012-06-08,23 -Region,Wales,630,2012-06-15,24 -Region,Wales,559,2012-06-22,25 -Region,Wales,509,2012-06-29,26 -Region,Wales,573,2012-07-06,27 -Region,Wales,572,2012-07-13,28 -Region,Wales,567,2012-07-20,29 -Region,Wales,558,2012-07-27,30 -Region,Wales,576,2012-08-03,31 -Region,Wales,548,2012-08-10,32 -Region,Wales,604,2012-08-17,33 -Region,Wales,553,2012-08-24,34 -Region,Wales,478,2012-08-31,35 -Region,Wales,534,2012-09-07,36 -Region,Wales,511,2012-09-14,37 -Region,Wales,538,2012-09-21,38 -Region,Wales,615,2012-09-28,39 -Region,Wales,561,2012-10-05,40 -Region,Wales,613,2012-10-12,41 -Region,Wales,543,2012-10-19,42 -Region,Wales,574,2012-10-26,43 -Region,Wales,609,2012-11-02,44 -Region,Wales,609,2012-11-09,45 -Region,Wales,586,2012-11-16,46 -Region,Wales,608,2012-11-23,47 -Region,Wales,629,2012-11-30,48 -Region,Wales,668,2012-12-07,49 -Region,Wales,650,2012-12-14,50 -Region,Wales,744,2012-12-21,51 -Region,Wales,552,2012-12-28,52 -Total deaths,all ages,11620,2013-01-04,1 -Total deaths,all ages,12541,2013-01-11,2 -Total deaths,all ages,11075,2013-01-18,3 -Total deaths,all ages,11262,2013-01-25,4 -Total deaths,all ages,11314,2013-02-01,5 -Total deaths,all ages,11044,2013-02-08,6 -Total deaths,all ages,11030,2013-02-15,7 -Total deaths,all ages,10850,2013-02-22,8 -Total deaths,all ages,10783,2013-03-01,9 -Total deaths,all ages,11245,2013-03-08,10 -Total deaths,all ages,11180,2013-03-15,11 -Total deaths,all ages,11075,2013-03-22,12 -Total deaths,all ages,9280,2013-03-29,13 -Total deaths,all ages,10890,2013-04-05,14 -Total deaths,all ages,12147,2013-04-12,15 -Total deaths,all ages,11752,2013-04-19,16 -Total deaths,all ages,10625,2013-04-26,17 -Total deaths,all ages,10169,2013-05-03,18 -Total deaths,all ages,8814,2013-05-10,19 -Total deaths,all ages,9847,2013-05-17,20 -Total deaths,all ages,9530,2013-05-24,21 -Total deaths,all ages,8333,2013-05-31,22 -Total deaths,all ages,9482,2013-06-07,23 -Total deaths,all ages,8869,2013-06-14,24 -Total deaths,all ages,8904,2013-06-21,25 -Total deaths,all ages,8589,2013-06-28,26 -Total deaths,all ages,8790,2013-07-05,27 -Total deaths,all ages,8533,2013-07-12,28 -Total deaths,all ages,8790,2013-07-19,29 -Total deaths,all ages,8476,2013-07-26,30 -Total deaths,all ages,8159,2013-08-02,31 -Total deaths,all ages,8280,2013-08-09,32 -Total deaths,all ages,8231,2013-08-16,33 -Total deaths,all ages,8579,2013-08-23,34 -Total deaths,all ages,7688,2013-08-30,35 -Total deaths,all ages,8905,2013-09-06,36 -Total deaths,all ages,8347,2013-09-13,37 -Total deaths,all ages,8635,2013-09-20,38 -Total deaths,all ages,9155,2013-09-27,39 -Total deaths,all ages,9191,2013-10-04,40 -Total deaths,all ages,8939,2013-10-11,41 -Total deaths,all ages,9237,2013-10-18,42 -Total deaths,all ages,9236,2013-10-25,43 -Total deaths,all ages,9107,2013-11-01,44 -Total deaths,all ages,9449,2013-11-08,45 -Total deaths,all ages,9583,2013-11-15,46 -Total deaths,all ages,9587,2013-11-22,47 -Total deaths,all ages,9636,2013-11-29,48 -Total deaths,all ages,9908,2013-12-06,49 -Total deaths,all ages,10033,2013-12-13,50 -Total deaths,all ages,10335,2013-12-20,51 -Total deaths,all ages,6606,2013-12-27,52 -Total deaths,average of same week over 5 years,12378.8,2013-01-04,1 -Total deaths,average of same week over 5 years,12881.4,2013-01-11,2 -Total deaths,average of same week over 5 years,11734.8,2013-01-18,3 -Total deaths,average of same week over 5 years,11028.2,2013-01-25,4 -Total deaths,average of same week over 5 years,10481.4,2013-02-01,5 -Total deaths,average of same week over 5 years,10217.4,2013-02-08,6 -Total deaths,average of same week over 5 years,10210.8,2013-02-15,7 -Total deaths,average of same week over 5 years,10272.4,2013-02-22,8 -Total deaths,average of same week over 5 years,10115.2,2013-03-01,9 -Total deaths,average of same week over 5 years,9980.2,2013-03-08,10 -Total deaths,average of same week over 5 years,9881,2013-03-15,11 -Total deaths,average of same week over 5 years,9432.6,2013-03-22,12 -Total deaths,average of same week over 5 years,9348.6,2013-03-29,13 -Total deaths,average of same week over 5 years,9667.6,2013-04-05,14 -Total deaths,average of same week over 5 years,9620.2,2013-04-12,15 -Total deaths,average of same week over 5 years,9707.8,2013-04-19,16 -Total deaths,average of same week over 5 years,9515,2013-04-26,17 -Total deaths,average of same week over 5 years,9479.2,2013-05-03,18 -Total deaths,average of same week over 5 years,9096,2013-05-10,19 -Total deaths,average of same week over 5 years,9345,2013-05-17,20 -Total deaths,average of same week over 5 years,9311.2,2013-05-24,21 -Total deaths,average of same week over 5 years,8460.2,2013-05-31,22 -Total deaths,average of same week over 5 years,8723.6,2013-06-07,23 -Total deaths,average of same week over 5 years,9060.4,2013-06-14,24 -Total deaths,average of same week over 5 years,8770.2,2013-06-21,25 -Total deaths,average of same week over 5 years,8759.4,2013-06-28,26 -Total deaths,average of same week over 5 years,8749.2,2013-07-05,27 -Total deaths,average of same week over 5 years,8546,2013-07-12,28 -Total deaths,average of same week over 5 years,8453.8,2013-07-19,29 -Total deaths,average of same week over 5 years,8542.8,2013-07-26,30 -Total deaths,average of same week over 5 years,8644.4,2013-08-02,31 -Total deaths,average of same week over 5 years,8533,2013-08-09,32 -Total deaths,average of same week over 5 years,8565.2,2013-08-16,33 -Total deaths,average of same week over 5 years,8620.4,2013-08-23,34 -Total deaths,average of same week over 5 years,7809.2,2013-08-30,35 -Total deaths,average of same week over 5 years,8612.6,2013-09-06,36 -Total deaths,average of same week over 5 years,8661.6,2013-09-13,37 -Total deaths,average of same week over 5 years,8674.4,2013-09-20,38 -Total deaths,average of same week over 5 years,8866.2,2013-09-27,39 -Total deaths,average of same week over 5 years,8961.8,2013-10-04,40 -Total deaths,average of same week over 5 years,9127,2013-10-11,41 -Total deaths,average of same week over 5 years,9165.4,2013-10-18,42 -Total deaths,average of same week over 5 years,9331.6,2013-10-25,43 -Total deaths,average of same week over 5 years,9474,2013-11-01,44 -Total deaths,average of same week over 5 years,9511.6,2013-11-08,45 -Total deaths,average of same week over 5 years,9591.2,2013-11-15,46 -Total deaths,average of same week over 5 years,9542.8,2013-11-22,47 -Total deaths,average of same week over 5 years,9434.2,2013-11-29,48 -Total deaths,average of same week over 5 years,10195.8,2013-12-06,49 -Total deaths,average of same week over 5 years,10584.4,2013-12-13,50 -Total deaths,average of same week over 5 years,11308,2013-12-20,51 -Total deaths,average of same week over 5 years,8686.8,2013-12-27,52 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,2235,2013-01-04,1 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,2508,2013-01-11,2 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,2015,2013-01-18,3 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1903,2013-01-25,4 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1939,2013-02-01,5 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1831,2013-02-08,6 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1863,2013-02-15,7 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1834,2013-02-22,8 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1851,2013-03-01,9 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1981,2013-03-08,10 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,2054,2013-03-15,11 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1893,2013-03-22,12 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1588,2013-03-29,13 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1938,2013-04-05,14 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,2138,2013-04-12,15 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,2046,2013-04-19,16 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1667,2013-04-26,17 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1519,2013-05-03,18 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1263,2013-05-10,19 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1421,2013-05-17,20 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1262,2013-05-24,21 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1098,2013-05-31,22 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1291,2013-06-07,23 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1131,2013-06-14,24 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1158,2013-06-21,25 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1108,2013-06-28,26 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1073,2013-07-05,27 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1095,2013-07-12,28 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1092,2013-07-19,29 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1061,2013-07-26,30 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,996,2013-08-02,31 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,982,2013-08-09,32 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,972,2013-08-16,33 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,996,2013-08-23,34 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,868,2013-08-30,35 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1042,2013-09-06,36 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,895,2013-09-13,37 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,994,2013-09-20,38 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1099,2013-09-27,39 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1149,2013-10-04,40 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1143,2013-10-11,41 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1157,2013-10-18,42 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1215,2013-10-25,43 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1206,2013-11-01,44 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1246,2013-11-08,45 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1277,2013-11-15,46 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1235,2013-11-22,47 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1241,2013-11-29,48 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1336,2013-12-06,49 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1451,2013-12-13,50 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,1484,2013-12-20,51 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2010,966,2013-12-27,52 -Persons,Under 1 year,34,2013-01-04,1 -Persons,Under 1 year,65,2013-01-11,2 -Persons,Under 1 year,54,2013-01-18,3 -Persons,Under 1 year,49,2013-01-25,4 -Persons,Under 1 year,51,2013-02-01,5 -Persons,Under 1 year,59,2013-02-08,6 -Persons,Under 1 year,55,2013-02-15,7 -Persons,Under 1 year,58,2013-02-22,8 -Persons,Under 1 year,52,2013-03-01,9 -Persons,Under 1 year,52,2013-03-08,10 -Persons,Under 1 year,55,2013-03-15,11 -Persons,Under 1 year,59,2013-03-22,12 -Persons,Under 1 year,41,2013-03-29,13 -Persons,Under 1 year,55,2013-04-05,14 -Persons,Under 1 year,47,2013-04-12,15 -Persons,Under 1 year,49,2013-04-19,16 -Persons,Under 1 year,48,2013-04-26,17 -Persons,Under 1 year,63,2013-05-03,18 -Persons,Under 1 year,56,2013-05-10,19 -Persons,Under 1 year,67,2013-05-17,20 -Persons,Under 1 year,52,2013-05-24,21 -Persons,Under 1 year,50,2013-05-31,22 -Persons,Under 1 year,42,2013-06-07,23 -Persons,Under 1 year,57,2013-06-14,24 -Persons,Under 1 year,57,2013-06-21,25 -Persons,Under 1 year,39,2013-06-28,26 -Persons,Under 1 year,52,2013-07-05,27 -Persons,Under 1 year,51,2013-07-12,28 -Persons,Under 1 year,50,2013-07-19,29 -Persons,Under 1 year,53,2013-07-26,30 -Persons,Under 1 year,59,2013-08-02,31 -Persons,Under 1 year,47,2013-08-09,32 -Persons,Under 1 year,52,2013-08-16,33 -Persons,Under 1 year,53,2013-08-23,34 -Persons,Under 1 year,40,2013-08-30,35 -Persons,Under 1 year,52,2013-09-06,36 -Persons,Under 1 year,61,2013-09-13,37 -Persons,Under 1 year,58,2013-09-20,38 -Persons,Under 1 year,54,2013-09-27,39 -Persons,Under 1 year,48,2013-10-04,40 -Persons,Under 1 year,58,2013-10-11,41 -Persons,Under 1 year,58,2013-10-18,42 -Persons,Under 1 year,51,2013-10-25,43 -Persons,Under 1 year,53,2013-11-01,44 -Persons,Under 1 year,65,2013-11-08,45 -Persons,Under 1 year,72,2013-11-15,46 -Persons,Under 1 year,54,2013-11-22,47 -Persons,Under 1 year,66,2013-11-29,48 -Persons,Under 1 year,51,2013-12-06,49 -Persons,Under 1 year,50,2013-12-13,50 -Persons,Under 1 year,69,2013-12-20,51 -Persons,Under 1 year,41,2013-12-27,52 -Persons,01-14,24,2013-01-04,1 -Persons,01-14,27,2013-01-11,2 -Persons,01-14,11,2013-01-18,3 -Persons,01-14,20,2013-01-25,4 -Persons,01-14,24,2013-02-01,5 -Persons,01-14,21,2013-02-08,6 -Persons,01-14,31,2013-02-15,7 -Persons,01-14,22,2013-02-22,8 -Persons,01-14,25,2013-03-01,9 -Persons,01-14,24,2013-03-08,10 -Persons,01-14,27,2013-03-15,11 -Persons,01-14,15,2013-03-22,12 -Persons,01-14,22,2013-03-29,13 -Persons,01-14,21,2013-04-05,14 -Persons,01-14,20,2013-04-12,15 -Persons,01-14,24,2013-04-19,16 -Persons,01-14,17,2013-04-26,17 -Persons,01-14,23,2013-05-03,18 -Persons,01-14,17,2013-05-10,19 -Persons,01-14,20,2013-05-17,20 -Persons,01-14,24,2013-05-24,21 -Persons,01-14,17,2013-05-31,22 -Persons,01-14,19,2013-06-07,23 -Persons,01-14,20,2013-06-14,24 -Persons,01-14,24,2013-06-21,25 -Persons,01-14,20,2013-06-28,26 -Persons,01-14,16,2013-07-05,27 -Persons,01-14,26,2013-07-12,28 -Persons,01-14,17,2013-07-19,29 -Persons,01-14,14,2013-07-26,30 -Persons,01-14,20,2013-08-02,31 -Persons,01-14,11,2013-08-09,32 -Persons,01-14,22,2013-08-16,33 -Persons,01-14,20,2013-08-23,34 -Persons,01-14,15,2013-08-30,35 -Persons,01-14,23,2013-09-06,36 -Persons,01-14,19,2013-09-13,37 -Persons,01-14,18,2013-09-20,38 -Persons,01-14,18,2013-09-27,39 -Persons,01-14,16,2013-10-04,40 -Persons,01-14,18,2013-10-11,41 -Persons,01-14,18,2013-10-18,42 -Persons,01-14,25,2013-10-25,43 -Persons,01-14,15,2013-11-01,44 -Persons,01-14,16,2013-11-08,45 -Persons,01-14,29,2013-11-15,46 -Persons,01-14,18,2013-11-22,47 -Persons,01-14,23,2013-11-29,48 -Persons,01-14,23,2013-12-06,49 -Persons,01-14,19,2013-12-13,50 -Persons,01-14,27,2013-12-20,51 -Persons,01-14,13,2013-12-27,52 -Persons,15-44,220,2013-01-04,1 -Persons,15-44,315,2013-01-11,2 -Persons,15-44,324,2013-01-18,3 -Persons,15-44,285,2013-01-25,4 -Persons,15-44,253,2013-02-01,5 -Persons,15-44,295,2013-02-08,6 -Persons,15-44,357,2013-02-15,7 -Persons,15-44,292,2013-02-22,8 -Persons,15-44,318,2013-03-01,9 -Persons,15-44,279,2013-03-08,10 -Persons,15-44,313,2013-03-15,11 -Persons,15-44,297,2013-03-22,12 -Persons,15-44,238,2013-03-29,13 -Persons,15-44,276,2013-04-05,14 -Persons,15-44,308,2013-04-12,15 -Persons,15-44,285,2013-04-19,16 -Persons,15-44,328,2013-04-26,17 -Persons,15-44,330,2013-05-03,18 -Persons,15-44,269,2013-05-10,19 -Persons,15-44,278,2013-05-17,20 -Persons,15-44,255,2013-05-24,21 -Persons,15-44,223,2013-05-31,22 -Persons,15-44,298,2013-06-07,23 -Persons,15-44,249,2013-06-14,24 -Persons,15-44,287,2013-06-21,25 -Persons,15-44,295,2013-06-28,26 -Persons,15-44,262,2013-07-05,27 -Persons,15-44,274,2013-07-12,28 -Persons,15-44,290,2013-07-19,29 -Persons,15-44,269,2013-07-26,30 -Persons,15-44,256,2013-08-02,31 -Persons,15-44,274,2013-08-09,32 -Persons,15-44,271,2013-08-16,33 -Persons,15-44,251,2013-08-23,34 -Persons,15-44,223,2013-08-30,35 -Persons,15-44,290,2013-09-06,36 -Persons,15-44,247,2013-09-13,37 -Persons,15-44,263,2013-09-20,38 -Persons,15-44,282,2013-09-27,39 -Persons,15-44,302,2013-10-04,40 -Persons,15-44,316,2013-10-11,41 -Persons,15-44,288,2013-10-18,42 -Persons,15-44,274,2013-10-25,43 -Persons,15-44,293,2013-11-01,44 -Persons,15-44,276,2013-11-08,45 -Persons,15-44,316,2013-11-15,46 -Persons,15-44,310,2013-11-22,47 -Persons,15-44,324,2013-11-29,48 -Persons,15-44,295,2013-12-06,49 -Persons,15-44,318,2013-12-13,50 -Persons,15-44,375,2013-12-20,51 -Persons,15-44,189,2013-12-27,52 -Persons,45-64,1179,2013-01-04,1 -Persons,45-64,1481,2013-01-11,2 -Persons,45-64,1305,2013-01-18,3 -Persons,45-64,1216,2013-01-25,4 -Persons,45-64,1288,2013-02-01,5 -Persons,45-64,1235,2013-02-08,6 -Persons,45-64,1307,2013-02-15,7 -Persons,45-64,1170,2013-02-22,8 -Persons,45-64,1242,2013-03-01,9 -Persons,45-64,1287,2013-03-08,10 -Persons,45-64,1261,2013-03-15,11 -Persons,45-64,1245,2013-03-22,12 -Persons,45-64,1031,2013-03-29,13 -Persons,45-64,1245,2013-04-05,14 -Persons,45-64,1351,2013-04-12,15 -Persons,45-64,1352,2013-04-19,16 -Persons,45-64,1226,2013-04-26,17 -Persons,45-64,1225,2013-05-03,18 -Persons,45-64,1046,2013-05-10,19 -Persons,45-64,1199,2013-05-17,20 -Persons,45-64,1133,2013-05-24,21 -Persons,45-64,1036,2013-05-31,22 -Persons,45-64,1164,2013-06-07,23 -Persons,45-64,1158,2013-06-14,24 -Persons,45-64,1137,2013-06-21,25 -Persons,45-64,1104,2013-06-28,26 -Persons,45-64,1173,2013-07-05,27 -Persons,45-64,1092,2013-07-12,28 -Persons,45-64,1153,2013-07-19,29 -Persons,45-64,1069,2013-07-26,30 -Persons,45-64,1091,2013-08-02,31 -Persons,45-64,1056,2013-08-09,32 -Persons,45-64,1134,2013-08-16,33 -Persons,45-64,1042,2013-08-23,34 -Persons,45-64,964,2013-08-30,35 -Persons,45-64,1098,2013-09-06,36 -Persons,45-64,1099,2013-09-13,37 -Persons,45-64,1094,2013-09-20,38 -Persons,45-64,1180,2013-09-27,39 -Persons,45-64,1134,2013-10-04,40 -Persons,45-64,1102,2013-10-11,41 -Persons,45-64,1166,2013-10-18,42 -Persons,45-64,1131,2013-10-25,43 -Persons,45-64,1103,2013-11-01,44 -Persons,45-64,1133,2013-11-08,45 -Persons,45-64,1222,2013-11-15,46 -Persons,45-64,1183,2013-11-22,47 -Persons,45-64,1127,2013-11-29,48 -Persons,45-64,1192,2013-12-06,49 -Persons,45-64,1141,2013-12-13,50 -Persons,45-64,1280,2013-12-20,51 -Persons,45-64,796,2013-12-27,52 -Persons,65-74,1780,2013-01-04,1 -Persons,65-74,1849,2013-01-11,2 -Persons,65-74,1693,2013-01-18,3 -Persons,65-74,1780,2013-01-25,4 -Persons,65-74,1682,2013-02-01,5 -Persons,65-74,1713,2013-02-08,6 -Persons,65-74,1682,2013-02-15,7 -Persons,65-74,1655,2013-02-22,8 -Persons,65-74,1664,2013-03-01,9 -Persons,65-74,1706,2013-03-08,10 -Persons,65-74,1668,2013-03-15,11 -Persons,65-74,1609,2013-03-22,12 -Persons,65-74,1435,2013-03-29,13 -Persons,65-74,1652,2013-04-05,14 -Persons,65-74,1866,2013-04-12,15 -Persons,65-74,1814,2013-04-19,16 -Persons,65-74,1693,2013-04-26,17 -Persons,65-74,1650,2013-05-03,18 -Persons,65-74,1468,2013-05-10,19 -Persons,65-74,1633,2013-05-17,20 -Persons,65-74,1489,2013-05-24,21 -Persons,65-74,1428,2013-05-31,22 -Persons,65-74,1630,2013-06-07,23 -Persons,65-74,1501,2013-06-14,24 -Persons,65-74,1495,2013-06-21,25 -Persons,65-74,1469,2013-06-28,26 -Persons,65-74,1489,2013-07-05,27 -Persons,65-74,1450,2013-07-12,28 -Persons,65-74,1465,2013-07-19,29 -Persons,65-74,1439,2013-07-26,30 -Persons,65-74,1383,2013-08-02,31 -Persons,65-74,1458,2013-08-09,32 -Persons,65-74,1395,2013-08-16,33 -Persons,65-74,1516,2013-08-23,34 -Persons,65-74,1295,2013-08-30,35 -Persons,65-74,1484,2013-09-06,36 -Persons,65-74,1437,2013-09-13,37 -Persons,65-74,1516,2013-09-20,38 -Persons,65-74,1527,2013-09-27,39 -Persons,65-74,1494,2013-10-04,40 -Persons,65-74,1538,2013-10-11,41 -Persons,65-74,1480,2013-10-18,42 -Persons,65-74,1482,2013-10-25,43 -Persons,65-74,1546,2013-11-01,44 -Persons,65-74,1552,2013-11-08,45 -Persons,65-74,1528,2013-11-15,46 -Persons,65-74,1549,2013-11-22,47 -Persons,65-74,1588,2013-11-29,48 -Persons,65-74,1629,2013-12-06,49 -Persons,65-74,1633,2013-12-13,50 -Persons,65-74,1614,2013-12-20,51 -Persons,65-74,1060,2013-12-27,52 -Persons,75-84,3461,2013-01-04,1 -Persons,75-84,3703,2013-01-11,2 -Persons,75-84,3156,2013-01-18,3 -Persons,75-84,3286,2013-01-25,4 -Persons,75-84,3293,2013-02-01,5 -Persons,75-84,3243,2013-02-08,6 -Persons,75-84,3200,2013-02-15,7 -Persons,75-84,3132,2013-02-22,8 -Persons,75-84,3079,2013-03-01,9 -Persons,75-84,3269,2013-03-08,10 -Persons,75-84,3239,2013-03-15,11 -Persons,75-84,3280,2013-03-22,12 -Persons,75-84,2672,2013-03-29,13 -Persons,75-84,3162,2013-04-05,14 -Persons,75-84,3543,2013-04-12,15 -Persons,75-84,3418,2013-04-19,16 -Persons,75-84,3009,2013-04-26,17 -Persons,75-84,2897,2013-05-03,18 -Persons,75-84,2594,2013-05-10,19 -Persons,75-84,2961,2013-05-17,20 -Persons,75-84,2912,2013-05-24,21 -Persons,75-84,2479,2013-05-31,22 -Persons,75-84,2803,2013-06-07,23 -Persons,75-84,2622,2013-06-14,24 -Persons,75-84,2623,2013-06-21,25 -Persons,75-84,2525,2013-06-28,26 -Persons,75-84,2548,2013-07-05,27 -Persons,75-84,2494,2013-07-12,28 -Persons,75-84,2585,2013-07-19,29 -Persons,75-84,2470,2013-07-26,30 -Persons,75-84,2330,2013-08-02,31 -Persons,75-84,2451,2013-08-09,32 -Persons,75-84,2392,2013-08-16,33 -Persons,75-84,2524,2013-08-23,34 -Persons,75-84,2287,2013-08-30,35 -Persons,75-84,2641,2013-09-06,36 -Persons,75-84,2376,2013-09-13,37 -Persons,75-84,2526,2013-09-20,38 -Persons,75-84,2597,2013-09-27,39 -Persons,75-84,2697,2013-10-04,40 -Persons,75-84,2614,2013-10-11,41 -Persons,75-84,2729,2013-10-18,42 -Persons,75-84,2651,2013-10-25,43 -Persons,75-84,2637,2013-11-01,44 -Persons,75-84,2819,2013-11-08,45 -Persons,75-84,2775,2013-11-15,46 -Persons,75-84,2811,2013-11-22,47 -Persons,75-84,2901,2013-11-29,48 -Persons,75-84,2889,2013-12-06,49 -Persons,75-84,2935,2013-12-13,50 -Persons,75-84,3017,2013-12-20,51 -Persons,75-84,1890,2013-12-27,52 -Persons,85+,4921,2013-01-04,1 -Persons,85+,5100,2013-01-11,2 -Persons,85+,4532,2013-01-18,3 -Persons,85+,4625,2013-01-25,4 -Persons,85+,4723,2013-02-01,5 -Persons,85+,4478,2013-02-08,6 -Persons,85+,4396,2013-02-15,7 -Persons,85+,4515,2013-02-22,8 -Persons,85+,4400,2013-03-01,9 -Persons,85+,4625,2013-03-08,10 -Persons,85+,4617,2013-03-15,11 -Persons,85+,4567,2013-03-22,12 -Persons,85+,3821,2013-03-29,13 -Persons,85+,4467,2013-04-05,14 -Persons,85+,4999,2013-04-12,15 -Persons,85+,4808,2013-04-19,16 -Persons,85+,4304,2013-04-26,17 -Persons,85+,3978,2013-05-03,18 -Persons,85+,3363,2013-05-10,19 -Persons,85+,3688,2013-05-17,20 -Persons,85+,3663,2013-05-24,21 -Persons,85+,3098,2013-05-31,22 -Persons,85+,3525,2013-06-07,23 -Persons,85+,3261,2013-06-14,24 -Persons,85+,3281,2013-06-21,25 -Persons,85+,3136,2013-06-28,26 -Persons,85+,3223,2013-07-05,27 -Persons,85+,3146,2013-07-12,28 -Persons,85+,3230,2013-07-19,29 -Persons,85+,3162,2013-07-26,30 -Persons,85+,3018,2013-08-02,31 -Persons,85+,2983,2013-08-09,32 -Persons,85+,2964,2013-08-16,33 -Persons,85+,3167,2013-08-23,34 -Persons,85+,2861,2013-08-30,35 -Persons,85+,3316,2013-09-06,36 -Persons,85+,3108,2013-09-13,37 -Persons,85+,3158,2013-09-20,38 -Persons,85+,3497,2013-09-27,39 -Persons,85+,3498,2013-10-04,40 -Persons,85+,3293,2013-10-11,41 -Persons,85+,3494,2013-10-18,42 -Persons,85+,3621,2013-10-25,43 -Persons,85+,3460,2013-11-01,44 -Persons,85+,3588,2013-11-08,45 -Persons,85+,3641,2013-11-15,46 -Persons,85+,3662,2013-11-22,47 -Persons,85+,3604,2013-11-29,48 -Persons,85+,3825,2013-12-06,49 -Persons,85+,3937,2013-12-13,50 -Persons,85+,3951,2013-12-20,51 -Persons,85+,2617,2013-12-27,52 -Males,Under 1 year,17,2013-01-04,1 -Males,Under 1 year,50,2013-01-11,2 -Males,Under 1 year,32,2013-01-18,3 -Males,Under 1 year,24,2013-01-25,4 -Males,Under 1 year,31,2013-02-01,5 -Males,Under 1 year,30,2013-02-08,6 -Males,Under 1 year,32,2013-02-15,7 -Males,Under 1 year,42,2013-02-22,8 -Males,Under 1 year,34,2013-03-01,9 -Males,Under 1 year,23,2013-03-08,10 -Males,Under 1 year,39,2013-03-15,11 -Males,Under 1 year,25,2013-03-22,12 -Males,Under 1 year,25,2013-03-29,13 -Males,Under 1 year,39,2013-04-05,14 -Males,Under 1 year,22,2013-04-12,15 -Males,Under 1 year,33,2013-04-19,16 -Males,Under 1 year,30,2013-04-26,17 -Males,Under 1 year,26,2013-05-03,18 -Males,Under 1 year,34,2013-05-10,19 -Males,Under 1 year,41,2013-05-17,20 -Males,Under 1 year,34,2013-05-24,21 -Males,Under 1 year,34,2013-05-31,22 -Males,Under 1 year,23,2013-06-07,23 -Males,Under 1 year,36,2013-06-14,24 -Males,Under 1 year,32,2013-06-21,25 -Males,Under 1 year,23,2013-06-28,26 -Males,Under 1 year,24,2013-07-05,27 -Males,Under 1 year,26,2013-07-12,28 -Males,Under 1 year,27,2013-07-19,29 -Males,Under 1 year,34,2013-07-26,30 -Males,Under 1 year,29,2013-08-02,31 -Males,Under 1 year,25,2013-08-09,32 -Males,Under 1 year,28,2013-08-16,33 -Males,Under 1 year,32,2013-08-23,34 -Males,Under 1 year,17,2013-08-30,35 -Males,Under 1 year,34,2013-09-06,36 -Males,Under 1 year,33,2013-09-13,37 -Males,Under 1 year,42,2013-09-20,38 -Males,Under 1 year,25,2013-09-27,39 -Males,Under 1 year,25,2013-10-04,40 -Males,Under 1 year,31,2013-10-11,41 -Males,Under 1 year,31,2013-10-18,42 -Males,Under 1 year,28,2013-10-25,43 -Males,Under 1 year,27,2013-11-01,44 -Males,Under 1 year,38,2013-11-08,45 -Males,Under 1 year,38,2013-11-15,46 -Males,Under 1 year,28,2013-11-22,47 -Males,Under 1 year,41,2013-11-29,48 -Males,Under 1 year,25,2013-12-06,49 -Males,Under 1 year,22,2013-12-13,50 -Males,Under 1 year,47,2013-12-20,51 -Males,Under 1 year,18,2013-12-27,52 -Males,01-14,13,2013-01-04,1 -Males,01-14,11,2013-01-11,2 -Males,01-14,5,2013-01-18,3 -Males,01-14,12,2013-01-25,4 -Males,01-14,10,2013-02-01,5 -Males,01-14,10,2013-02-08,6 -Males,01-14,12,2013-02-15,7 -Males,01-14,8,2013-02-22,8 -Males,01-14,12,2013-03-01,9 -Males,01-14,16,2013-03-08,10 -Males,01-14,16,2013-03-15,11 -Males,01-14,6,2013-03-22,12 -Males,01-14,16,2013-03-29,13 -Males,01-14,14,2013-04-05,14 -Males,01-14,12,2013-04-12,15 -Males,01-14,11,2013-04-19,16 -Males,01-14,7,2013-04-26,17 -Males,01-14,13,2013-05-03,18 -Males,01-14,10,2013-05-10,19 -Males,01-14,9,2013-05-17,20 -Males,01-14,15,2013-05-24,21 -Males,01-14,7,2013-05-31,22 -Males,01-14,11,2013-06-07,23 -Males,01-14,13,2013-06-14,24 -Males,01-14,18,2013-06-21,25 -Males,01-14,12,2013-06-28,26 -Males,01-14,7,2013-07-05,27 -Males,01-14,15,2013-07-12,28 -Males,01-14,11,2013-07-19,29 -Males,01-14,6,2013-07-26,30 -Males,01-14,12,2013-08-02,31 -Males,01-14,10,2013-08-09,32 -Males,01-14,9,2013-08-16,33 -Males,01-14,10,2013-08-23,34 -Males,01-14,8,2013-08-30,35 -Males,01-14,13,2013-09-06,36 -Males,01-14,8,2013-09-13,37 -Males,01-14,8,2013-09-20,38 -Males,01-14,11,2013-09-27,39 -Males,01-14,5,2013-10-04,40 -Males,01-14,9,2013-10-11,41 -Males,01-14,12,2013-10-18,42 -Males,01-14,17,2013-10-25,43 -Males,01-14,10,2013-11-01,44 -Males,01-14,7,2013-11-08,45 -Males,01-14,15,2013-11-15,46 -Males,01-14,7,2013-11-22,47 -Males,01-14,17,2013-11-29,48 -Males,01-14,13,2013-12-06,49 -Males,01-14,8,2013-12-13,50 -Males,01-14,13,2013-12-20,51 -Males,01-14,11,2013-12-27,52 -Males,15-44,129,2013-01-04,1 -Males,15-44,183,2013-01-11,2 -Males,15-44,192,2013-01-18,3 -Males,15-44,179,2013-01-25,4 -Males,15-44,155,2013-02-01,5 -Males,15-44,193,2013-02-08,6 -Males,15-44,216,2013-02-15,7 -Males,15-44,178,2013-02-22,8 -Males,15-44,210,2013-03-01,9 -Males,15-44,167,2013-03-08,10 -Males,15-44,205,2013-03-15,11 -Males,15-44,203,2013-03-22,12 -Males,15-44,154,2013-03-29,13 -Males,15-44,161,2013-04-05,14 -Males,15-44,196,2013-04-12,15 -Males,15-44,200,2013-04-19,16 -Males,15-44,216,2013-04-26,17 -Males,15-44,231,2013-05-03,18 -Males,15-44,163,2013-05-10,19 -Males,15-44,201,2013-05-17,20 -Males,15-44,178,2013-05-24,21 -Males,15-44,137,2013-05-31,22 -Males,15-44,190,2013-06-07,23 -Males,15-44,159,2013-06-14,24 -Males,15-44,193,2013-06-21,25 -Males,15-44,188,2013-06-28,26 -Males,15-44,169,2013-07-05,27 -Males,15-44,174,2013-07-12,28 -Males,15-44,175,2013-07-19,29 -Males,15-44,180,2013-07-26,30 -Males,15-44,162,2013-08-02,31 -Males,15-44,176,2013-08-09,32 -Males,15-44,165,2013-08-16,33 -Males,15-44,162,2013-08-23,34 -Males,15-44,147,2013-08-30,35 -Males,15-44,208,2013-09-06,36 -Males,15-44,147,2013-09-13,37 -Males,15-44,164,2013-09-20,38 -Males,15-44,185,2013-09-27,39 -Males,15-44,204,2013-10-04,40 -Males,15-44,209,2013-10-11,41 -Males,15-44,182,2013-10-18,42 -Males,15-44,186,2013-10-25,43 -Males,15-44,189,2013-11-01,44 -Males,15-44,182,2013-11-08,45 -Males,15-44,212,2013-11-15,46 -Males,15-44,201,2013-11-22,47 -Males,15-44,216,2013-11-29,48 -Males,15-44,198,2013-12-06,49 -Males,15-44,217,2013-12-13,50 -Males,15-44,245,2013-12-20,51 -Males,15-44,120,2013-12-27,52 -Males,45-64,679,2013-01-04,1 -Males,45-64,885,2013-01-11,2 -Males,45-64,791,2013-01-18,3 -Males,45-64,730,2013-01-25,4 -Males,45-64,749,2013-02-01,5 -Males,45-64,740,2013-02-08,6 -Males,45-64,785,2013-02-15,7 -Males,45-64,688,2013-02-22,8 -Males,45-64,755,2013-03-01,9 -Males,45-64,727,2013-03-08,10 -Males,45-64,772,2013-03-15,11 -Males,45-64,743,2013-03-22,12 -Males,45-64,618,2013-03-29,13 -Males,45-64,755,2013-04-05,14 -Males,45-64,835,2013-04-12,15 -Males,45-64,817,2013-04-19,16 -Males,45-64,761,2013-04-26,17 -Males,45-64,749,2013-05-03,18 -Males,45-64,631,2013-05-10,19 -Males,45-64,700,2013-05-17,20 -Males,45-64,688,2013-05-24,21 -Males,45-64,592,2013-05-31,22 -Males,45-64,685,2013-06-07,23 -Males,45-64,686,2013-06-14,24 -Males,45-64,670,2013-06-21,25 -Males,45-64,673,2013-06-28,26 -Males,45-64,685,2013-07-05,27 -Males,45-64,666,2013-07-12,28 -Males,45-64,706,2013-07-19,29 -Males,45-64,648,2013-07-26,30 -Males,45-64,645,2013-08-02,31 -Males,45-64,605,2013-08-09,32 -Males,45-64,656,2013-08-16,33 -Males,45-64,643,2013-08-23,34 -Males,45-64,548,2013-08-30,35 -Males,45-64,634,2013-09-06,36 -Males,45-64,661,2013-09-13,37 -Males,45-64,683,2013-09-20,38 -Males,45-64,696,2013-09-27,39 -Males,45-64,686,2013-10-04,40 -Males,45-64,650,2013-10-11,41 -Males,45-64,714,2013-10-18,42 -Males,45-64,662,2013-10-25,43 -Males,45-64,651,2013-11-01,44 -Males,45-64,680,2013-11-08,45 -Males,45-64,734,2013-11-15,46 -Males,45-64,756,2013-11-22,47 -Males,45-64,678,2013-11-29,48 -Males,45-64,728,2013-12-06,49 -Males,45-64,669,2013-12-13,50 -Males,45-64,797,2013-12-20,51 -Males,45-64,469,2013-12-27,52 -Males,65-74,1047,2013-01-04,1 -Males,65-74,1071,2013-01-11,2 -Males,65-74,1001,2013-01-18,3 -Males,65-74,1035,2013-01-25,4 -Males,65-74,982,2013-02-01,5 -Males,65-74,1007,2013-02-08,6 -Males,65-74,988,2013-02-15,7 -Males,65-74,985,2013-02-22,8 -Males,65-74,945,2013-03-01,9 -Males,65-74,1011,2013-03-08,10 -Males,65-74,980,2013-03-15,11 -Males,65-74,945,2013-03-22,12 -Males,65-74,847,2013-03-29,13 -Males,65-74,954,2013-04-05,14 -Males,65-74,1093,2013-04-12,15 -Males,65-74,1037,2013-04-19,16 -Males,65-74,1005,2013-04-26,17 -Males,65-74,992,2013-05-03,18 -Males,65-74,873,2013-05-10,19 -Males,65-74,981,2013-05-17,20 -Males,65-74,840,2013-05-24,21 -Males,65-74,796,2013-05-31,22 -Males,65-74,950,2013-06-07,23 -Males,65-74,876,2013-06-14,24 -Males,65-74,842,2013-06-21,25 -Males,65-74,846,2013-06-28,26 -Males,65-74,861,2013-07-05,27 -Males,65-74,859,2013-07-12,28 -Males,65-74,885,2013-07-19,29 -Males,65-74,821,2013-07-26,30 -Males,65-74,807,2013-08-02,31 -Males,65-74,854,2013-08-09,32 -Males,65-74,819,2013-08-16,33 -Males,65-74,876,2013-08-23,34 -Males,65-74,783,2013-08-30,35 -Males,65-74,868,2013-09-06,36 -Males,65-74,878,2013-09-13,37 -Males,65-74,889,2013-09-20,38 -Males,65-74,891,2013-09-27,39 -Males,65-74,850,2013-10-04,40 -Males,65-74,907,2013-10-11,41 -Males,65-74,884,2013-10-18,42 -Males,65-74,853,2013-10-25,43 -Males,65-74,928,2013-11-01,44 -Males,65-74,878,2013-11-08,45 -Males,65-74,848,2013-11-15,46 -Males,65-74,922,2013-11-22,47 -Males,65-74,978,2013-11-29,48 -Males,65-74,948,2013-12-06,49 -Males,65-74,934,2013-12-13,50 -Males,65-74,932,2013-12-20,51 -Males,65-74,617,2013-12-27,52 -Males,75-84,1734,2013-01-04,1 -Males,75-84,1915,2013-01-11,2 -Males,75-84,1594,2013-01-18,3 -Males,75-84,1713,2013-01-25,4 -Males,75-84,1739,2013-02-01,5 -Males,75-84,1645,2013-02-08,6 -Males,75-84,1649,2013-02-15,7 -Males,75-84,1569,2013-02-22,8 -Males,75-84,1615,2013-03-01,9 -Males,75-84,1692,2013-03-08,10 -Males,75-84,1615,2013-03-15,11 -Males,75-84,1699,2013-03-22,12 -Males,75-84,1347,2013-03-29,13 -Males,75-84,1635,2013-04-05,14 -Males,75-84,1834,2013-04-12,15 -Males,75-84,1804,2013-04-19,16 -Males,75-84,1557,2013-04-26,17 -Males,75-84,1572,2013-05-03,18 -Males,75-84,1401,2013-05-10,19 -Males,75-84,1594,2013-05-17,20 -Males,75-84,1580,2013-05-24,21 -Males,75-84,1272,2013-05-31,22 -Males,75-84,1414,2013-06-07,23 -Males,75-84,1369,2013-06-14,24 -Males,75-84,1388,2013-06-21,25 -Males,75-84,1310,2013-06-28,26 -Males,75-84,1336,2013-07-05,27 -Males,75-84,1294,2013-07-12,28 -Males,75-84,1367,2013-07-19,29 -Males,75-84,1287,2013-07-26,30 -Males,75-84,1210,2013-08-02,31 -Males,75-84,1327,2013-08-09,32 -Males,75-84,1260,2013-08-16,33 -Males,75-84,1263,2013-08-23,34 -Males,75-84,1183,2013-08-30,35 -Males,75-84,1420,2013-09-06,36 -Males,75-84,1284,2013-09-13,37 -Males,75-84,1347,2013-09-20,38 -Males,75-84,1323,2013-09-27,39 -Males,75-84,1425,2013-10-04,40 -Males,75-84,1406,2013-10-11,41 -Males,75-84,1452,2013-10-18,42 -Males,75-84,1430,2013-10-25,43 -Males,75-84,1383,2013-11-01,44 -Males,75-84,1502,2013-11-08,45 -Males,75-84,1445,2013-11-15,46 -Males,75-84,1466,2013-11-22,47 -Males,75-84,1578,2013-11-29,48 -Males,75-84,1522,2013-12-06,49 -Males,75-84,1554,2013-12-13,50 -Males,75-84,1557,2013-12-20,51 -Males,75-84,993,2013-12-27,52 -Males,85+,1757,2013-01-04,1 -Males,85+,1775,2013-01-11,2 -Males,85+,1621,2013-01-18,3 -Males,85+,1614,2013-01-25,4 -Males,85+,1758,2013-02-01,5 -Males,85+,1614,2013-02-08,6 -Males,85+,1608,2013-02-15,7 -Males,85+,1645,2013-02-22,8 -Males,85+,1596,2013-03-01,9 -Males,85+,1669,2013-03-08,10 -Males,85+,1638,2013-03-15,11 -Males,85+,1591,2013-03-22,12 -Males,85+,1393,2013-03-29,13 -Males,85+,1618,2013-04-05,14 -Males,85+,1805,2013-04-12,15 -Males,85+,1743,2013-04-19,16 -Males,85+,1522,2013-04-26,17 -Males,85+,1413,2013-05-03,18 -Males,85+,1220,2013-05-10,19 -Males,85+,1328,2013-05-17,20 -Males,85+,1332,2013-05-24,21 -Males,85+,1151,2013-05-31,22 -Males,85+,1341,2013-06-07,23 -Males,85+,1229,2013-06-14,24 -Males,85+,1228,2013-06-21,25 -Males,85+,1157,2013-06-28,26 -Males,85+,1211,2013-07-05,27 -Males,85+,1232,2013-07-12,28 -Males,85+,1170,2013-07-19,29 -Males,85+,1109,2013-07-26,30 -Males,85+,1091,2013-08-02,31 -Males,85+,1119,2013-08-09,32 -Males,85+,1089,2013-08-16,33 -Males,85+,1200,2013-08-23,34 -Males,85+,1067,2013-08-30,35 -Males,85+,1234,2013-09-06,36 -Males,85+,1147,2013-09-13,37 -Males,85+,1158,2013-09-20,38 -Males,85+,1280,2013-09-27,39 -Males,85+,1333,2013-10-04,40 -Males,85+,1233,2013-10-11,41 -Males,85+,1232,2013-10-18,42 -Males,85+,1354,2013-10-25,43 -Males,85+,1278,2013-11-01,44 -Males,85+,1354,2013-11-08,45 -Males,85+,1322,2013-11-15,46 -Males,85+,1356,2013-11-22,47 -Males,85+,1340,2013-11-29,48 -Males,85+,1466,2013-12-06,49 -Males,85+,1484,2013-12-13,50 -Males,85+,1480,2013-12-20,51 -Males,85+,993,2013-12-27,52 -Females,Under 1 year,17,2013-01-04,1 -Females,Under 1 year,15,2013-01-11,2 -Females,Under 1 year,22,2013-01-18,3 -Females,Under 1 year,25,2013-01-25,4 -Females,Under 1 year,20,2013-02-01,5 -Females,Under 1 year,29,2013-02-08,6 -Females,Under 1 year,23,2013-02-15,7 -Females,Under 1 year,16,2013-02-22,8 -Females,Under 1 year,18,2013-03-01,9 -Females,Under 1 year,29,2013-03-08,10 -Females,Under 1 year,16,2013-03-15,11 -Females,Under 1 year,34,2013-03-22,12 -Females,Under 1 year,16,2013-03-29,13 -Females,Under 1 year,16,2013-04-05,14 -Females,Under 1 year,25,2013-04-12,15 -Females,Under 1 year,16,2013-04-19,16 -Females,Under 1 year,18,2013-04-26,17 -Females,Under 1 year,37,2013-05-03,18 -Females,Under 1 year,22,2013-05-10,19 -Females,Under 1 year,26,2013-05-17,20 -Females,Under 1 year,18,2013-05-24,21 -Females,Under 1 year,16,2013-05-31,22 -Females,Under 1 year,19,2013-06-07,23 -Females,Under 1 year,21,2013-06-14,24 -Females,Under 1 year,25,2013-06-21,25 -Females,Under 1 year,16,2013-06-28,26 -Females,Under 1 year,28,2013-07-05,27 -Females,Under 1 year,25,2013-07-12,28 -Females,Under 1 year,23,2013-07-19,29 -Females,Under 1 year,19,2013-07-26,30 -Females,Under 1 year,30,2013-08-02,31 -Females,Under 1 year,22,2013-08-09,32 -Females,Under 1 year,24,2013-08-16,33 -Females,Under 1 year,21,2013-08-23,34 -Females,Under 1 year,23,2013-08-30,35 -Females,Under 1 year,18,2013-09-06,36 -Females,Under 1 year,28,2013-09-13,37 -Females,Under 1 year,16,2013-09-20,38 -Females,Under 1 year,29,2013-09-27,39 -Females,Under 1 year,23,2013-10-04,40 -Females,Under 1 year,27,2013-10-11,41 -Females,Under 1 year,27,2013-10-18,42 -Females,Under 1 year,23,2013-10-25,43 -Females,Under 1 year,26,2013-11-01,44 -Females,Under 1 year,27,2013-11-08,45 -Females,Under 1 year,34,2013-11-15,46 -Females,Under 1 year,26,2013-11-22,47 -Females,Under 1 year,25,2013-11-29,48 -Females,Under 1 year,26,2013-12-06,49 -Females,Under 1 year,28,2013-12-13,50 -Females,Under 1 year,22,2013-12-20,51 -Females,Under 1 year,23,2013-12-27,52 -Females,01-14,11,2013-01-04,1 -Females,01-14,16,2013-01-11,2 -Females,01-14,6,2013-01-18,3 -Females,01-14,8,2013-01-25,4 -Females,01-14,14,2013-02-01,5 -Females,01-14,11,2013-02-08,6 -Females,01-14,19,2013-02-15,7 -Females,01-14,14,2013-02-22,8 -Females,01-14,13,2013-03-01,9 -Females,01-14,8,2013-03-08,10 -Females,01-14,11,2013-03-15,11 -Females,01-14,9,2013-03-22,12 -Females,01-14,6,2013-03-29,13 -Females,01-14,7,2013-04-05,14 -Females,01-14,8,2013-04-12,15 -Females,01-14,13,2013-04-19,16 -Females,01-14,10,2013-04-26,17 -Females,01-14,10,2013-05-03,18 -Females,01-14,7,2013-05-10,19 -Females,01-14,11,2013-05-17,20 -Females,01-14,9,2013-05-24,21 -Females,01-14,10,2013-05-31,22 -Females,01-14,8,2013-06-07,23 -Females,01-14,7,2013-06-14,24 -Females,01-14,6,2013-06-21,25 -Females,01-14,8,2013-06-28,26 -Females,01-14,9,2013-07-05,27 -Females,01-14,11,2013-07-12,28 -Females,01-14,6,2013-07-19,29 -Females,01-14,8,2013-07-26,30 -Females,01-14,8,2013-08-02,31 -Females,01-14,1,2013-08-09,32 -Females,01-14,13,2013-08-16,33 -Females,01-14,10,2013-08-23,34 -Females,01-14,7,2013-08-30,35 -Females,01-14,10,2013-09-06,36 -Females,01-14,11,2013-09-13,37 -Females,01-14,10,2013-09-20,38 -Females,01-14,7,2013-09-27,39 -Females,01-14,11,2013-10-04,40 -Females,01-14,9,2013-10-11,41 -Females,01-14,6,2013-10-18,42 -Females,01-14,8,2013-10-25,43 -Females,01-14,5,2013-11-01,44 -Females,01-14,9,2013-11-08,45 -Females,01-14,14,2013-11-15,46 -Females,01-14,11,2013-11-22,47 -Females,01-14,6,2013-11-29,48 -Females,01-14,10,2013-12-06,49 -Females,01-14,11,2013-12-13,50 -Females,01-14,14,2013-12-20,51 -Females,01-14,2,2013-12-27,52 -Females,15-44,91,2013-01-04,1 -Females,15-44,132,2013-01-11,2 -Females,15-44,132,2013-01-18,3 -Females,15-44,106,2013-01-25,4 -Females,15-44,98,2013-02-01,5 -Females,15-44,102,2013-02-08,6 -Females,15-44,141,2013-02-15,7 -Females,15-44,114,2013-02-22,8 -Females,15-44,108,2013-03-01,9 -Females,15-44,112,2013-03-08,10 -Females,15-44,108,2013-03-15,11 -Females,15-44,94,2013-03-22,12 -Females,15-44,84,2013-03-29,13 -Females,15-44,115,2013-04-05,14 -Females,15-44,112,2013-04-12,15 -Females,15-44,85,2013-04-19,16 -Females,15-44,112,2013-04-26,17 -Females,15-44,99,2013-05-03,18 -Females,15-44,106,2013-05-10,19 -Females,15-44,77,2013-05-17,20 -Females,15-44,77,2013-05-24,21 -Females,15-44,86,2013-05-31,22 -Females,15-44,108,2013-06-07,23 -Females,15-44,90,2013-06-14,24 -Females,15-44,94,2013-06-21,25 -Females,15-44,107,2013-06-28,26 -Females,15-44,93,2013-07-05,27 -Females,15-44,100,2013-07-12,28 -Females,15-44,115,2013-07-19,29 -Females,15-44,89,2013-07-26,30 -Females,15-44,94,2013-08-02,31 -Females,15-44,98,2013-08-09,32 -Females,15-44,106,2013-08-16,33 -Females,15-44,89,2013-08-23,34 -Females,15-44,76,2013-08-30,35 -Females,15-44,82,2013-09-06,36 -Females,15-44,100,2013-09-13,37 -Females,15-44,99,2013-09-20,38 -Females,15-44,97,2013-09-27,39 -Females,15-44,98,2013-10-04,40 -Females,15-44,107,2013-10-11,41 -Females,15-44,106,2013-10-18,42 -Females,15-44,88,2013-10-25,43 -Females,15-44,104,2013-11-01,44 -Females,15-44,94,2013-11-08,45 -Females,15-44,104,2013-11-15,46 -Females,15-44,109,2013-11-22,47 -Females,15-44,108,2013-11-29,48 -Females,15-44,97,2013-12-06,49 -Females,15-44,101,2013-12-13,50 -Females,15-44,130,2013-12-20,51 -Females,15-44,69,2013-12-27,52 -Females,45-64,500,2013-01-04,1 -Females,45-64,596,2013-01-11,2 -Females,45-64,514,2013-01-18,3 -Females,45-64,486,2013-01-25,4 -Females,45-64,539,2013-02-01,5 -Females,45-64,495,2013-02-08,6 -Females,45-64,522,2013-02-15,7 -Females,45-64,482,2013-02-22,8 -Females,45-64,487,2013-03-01,9 -Females,45-64,560,2013-03-08,10 -Females,45-64,489,2013-03-15,11 -Females,45-64,502,2013-03-22,12 -Females,45-64,413,2013-03-29,13 -Females,45-64,490,2013-04-05,14 -Females,45-64,516,2013-04-12,15 -Females,45-64,535,2013-04-19,16 -Females,45-64,465,2013-04-26,17 -Females,45-64,476,2013-05-03,18 -Females,45-64,415,2013-05-10,19 -Females,45-64,499,2013-05-17,20 -Females,45-64,445,2013-05-24,21 -Females,45-64,444,2013-05-31,22 -Females,45-64,479,2013-06-07,23 -Females,45-64,472,2013-06-14,24 -Females,45-64,467,2013-06-21,25 -Females,45-64,431,2013-06-28,26 -Females,45-64,488,2013-07-05,27 -Females,45-64,426,2013-07-12,28 -Females,45-64,447,2013-07-19,29 -Females,45-64,421,2013-07-26,30 -Females,45-64,446,2013-08-02,31 -Females,45-64,451,2013-08-09,32 -Females,45-64,478,2013-08-16,33 -Females,45-64,399,2013-08-23,34 -Females,45-64,416,2013-08-30,35 -Females,45-64,464,2013-09-06,36 -Females,45-64,438,2013-09-13,37 -Females,45-64,411,2013-09-20,38 -Females,45-64,484,2013-09-27,39 -Females,45-64,448,2013-10-04,40 -Females,45-64,452,2013-10-11,41 -Females,45-64,452,2013-10-18,42 -Females,45-64,469,2013-10-25,43 -Females,45-64,452,2013-11-01,44 -Females,45-64,453,2013-11-08,45 -Females,45-64,488,2013-11-15,46 -Females,45-64,427,2013-11-22,47 -Females,45-64,449,2013-11-29,48 -Females,45-64,464,2013-12-06,49 -Females,45-64,472,2013-12-13,50 -Females,45-64,483,2013-12-20,51 -Females,45-64,327,2013-12-27,52 -Females,65-74,733,2013-01-04,1 -Females,65-74,778,2013-01-11,2 -Females,65-74,692,2013-01-18,3 -Females,65-74,745,2013-01-25,4 -Females,65-74,700,2013-02-01,5 -Females,65-74,706,2013-02-08,6 -Females,65-74,694,2013-02-15,7 -Females,65-74,670,2013-02-22,8 -Females,65-74,719,2013-03-01,9 -Females,65-74,695,2013-03-08,10 -Females,65-74,688,2013-03-15,11 -Females,65-74,664,2013-03-22,12 -Females,65-74,588,2013-03-29,13 -Females,65-74,698,2013-04-05,14 -Females,65-74,773,2013-04-12,15 -Females,65-74,777,2013-04-19,16 -Females,65-74,688,2013-04-26,17 -Females,65-74,658,2013-05-03,18 -Females,65-74,595,2013-05-10,19 -Females,65-74,652,2013-05-17,20 -Females,65-74,649,2013-05-24,21 -Females,65-74,632,2013-05-31,22 -Females,65-74,680,2013-06-07,23 -Females,65-74,625,2013-06-14,24 -Females,65-74,653,2013-06-21,25 -Females,65-74,623,2013-06-28,26 -Females,65-74,628,2013-07-05,27 -Females,65-74,591,2013-07-12,28 -Females,65-74,580,2013-07-19,29 -Females,65-74,618,2013-07-26,30 -Females,65-74,576,2013-08-02,31 -Females,65-74,604,2013-08-09,32 -Females,65-74,576,2013-08-16,33 -Females,65-74,640,2013-08-23,34 -Females,65-74,512,2013-08-30,35 -Females,65-74,616,2013-09-06,36 -Females,65-74,559,2013-09-13,37 -Females,65-74,627,2013-09-20,38 -Females,65-74,636,2013-09-27,39 -Females,65-74,644,2013-10-04,40 -Females,65-74,631,2013-10-11,41 -Females,65-74,596,2013-10-18,42 -Females,65-74,629,2013-10-25,43 -Females,65-74,618,2013-11-01,44 -Females,65-74,674,2013-11-08,45 -Females,65-74,680,2013-11-15,46 -Females,65-74,627,2013-11-22,47 -Females,65-74,610,2013-11-29,48 -Females,65-74,681,2013-12-06,49 -Females,65-74,699,2013-12-13,50 -Females,65-74,682,2013-12-20,51 -Females,65-74,443,2013-12-27,52 -Females,75-84,1727,2013-01-04,1 -Females,75-84,1788,2013-01-11,2 -Females,75-84,1562,2013-01-18,3 -Females,75-84,1573,2013-01-25,4 -Females,75-84,1554,2013-02-01,5 -Females,75-84,1598,2013-02-08,6 -Females,75-84,1551,2013-02-15,7 -Females,75-84,1563,2013-02-22,8 -Females,75-84,1464,2013-03-01,9 -Females,75-84,1577,2013-03-08,10 -Females,75-84,1624,2013-03-15,11 -Females,75-84,1581,2013-03-22,12 -Females,75-84,1325,2013-03-29,13 -Females,75-84,1527,2013-04-05,14 -Females,75-84,1709,2013-04-12,15 -Females,75-84,1614,2013-04-19,16 -Females,75-84,1452,2013-04-26,17 -Females,75-84,1325,2013-05-03,18 -Females,75-84,1193,2013-05-10,19 -Females,75-84,1367,2013-05-17,20 -Females,75-84,1332,2013-05-24,21 -Females,75-84,1207,2013-05-31,22 -Females,75-84,1389,2013-06-07,23 -Females,75-84,1253,2013-06-14,24 -Females,75-84,1235,2013-06-21,25 -Females,75-84,1215,2013-06-28,26 -Females,75-84,1212,2013-07-05,27 -Females,75-84,1200,2013-07-12,28 -Females,75-84,1218,2013-07-19,29 -Females,75-84,1183,2013-07-26,30 -Females,75-84,1120,2013-08-02,31 -Females,75-84,1124,2013-08-09,32 -Females,75-84,1132,2013-08-16,33 -Females,75-84,1261,2013-08-23,34 -Females,75-84,1104,2013-08-30,35 -Females,75-84,1221,2013-09-06,36 -Females,75-84,1092,2013-09-13,37 -Females,75-84,1179,2013-09-20,38 -Females,75-84,1274,2013-09-27,39 -Females,75-84,1272,2013-10-04,40 -Females,75-84,1208,2013-10-11,41 -Females,75-84,1277,2013-10-18,42 -Females,75-84,1221,2013-10-25,43 -Females,75-84,1254,2013-11-01,44 -Females,75-84,1317,2013-11-08,45 -Females,75-84,1330,2013-11-15,46 -Females,75-84,1345,2013-11-22,47 -Females,75-84,1323,2013-11-29,48 -Females,75-84,1367,2013-12-06,49 -Females,75-84,1381,2013-12-13,50 -Females,75-84,1460,2013-12-20,51 -Females,75-84,897,2013-12-27,52 -Females,85+,3164,2013-01-04,1 -Females,85+,3325,2013-01-11,2 -Females,85+,2911,2013-01-18,3 -Females,85+,3011,2013-01-25,4 -Females,85+,2965,2013-02-01,5 -Females,85+,2864,2013-02-08,6 -Females,85+,2788,2013-02-15,7 -Females,85+,2870,2013-02-22,8 -Females,85+,2804,2013-03-01,9 -Females,85+,2956,2013-03-08,10 -Females,85+,2979,2013-03-15,11 -Females,85+,2976,2013-03-22,12 -Females,85+,2428,2013-03-29,13 -Females,85+,2849,2013-04-05,14 -Females,85+,3194,2013-04-12,15 -Females,85+,3065,2013-04-19,16 -Females,85+,2782,2013-04-26,17 -Females,85+,2565,2013-05-03,18 -Females,85+,2143,2013-05-10,19 -Females,85+,2360,2013-05-17,20 -Females,85+,2331,2013-05-24,21 -Females,85+,1947,2013-05-31,22 -Females,85+,2184,2013-06-07,23 -Females,85+,2032,2013-06-14,24 -Females,85+,2053,2013-06-21,25 -Females,85+,1979,2013-06-28,26 -Females,85+,2012,2013-07-05,27 -Females,85+,1914,2013-07-12,28 -Females,85+,2060,2013-07-19,29 -Females,85+,2053,2013-07-26,30 -Females,85+,1927,2013-08-02,31 -Females,85+,1864,2013-08-09,32 -Females,85+,1875,2013-08-16,33 -Females,85+,1967,2013-08-23,34 -Females,85+,1794,2013-08-30,35 -Females,85+,2082,2013-09-06,36 -Females,85+,1961,2013-09-13,37 -Females,85+,2000,2013-09-20,38 -Females,85+,2217,2013-09-27,39 -Females,85+,2165,2013-10-04,40 -Females,85+,2060,2013-10-11,41 -Females,85+,2262,2013-10-18,42 -Females,85+,2267,2013-10-25,43 -Females,85+,2182,2013-11-01,44 -Females,85+,2234,2013-11-08,45 -Females,85+,2319,2013-11-15,46 -Females,85+,2306,2013-11-22,47 -Females,85+,2264,2013-11-29,48 -Females,85+,2359,2013-12-06,49 -Females,85+,2453,2013-12-13,50 -Females,85+,2471,2013-12-20,51 -Females,85+,1624,2013-12-27,52 -Region,North East,696,2013-01-04,1 -Region,North East,732,2013-01-11,2 -Region,North East,646,2013-01-18,3 -Region,North East,607,2013-01-25,4 -Region,North East,599,2013-02-01,5 -Region,North East,565,2013-02-08,6 -Region,North East,585,2013-02-15,7 -Region,North East,554,2013-02-22,8 -Region,North East,532,2013-03-01,9 -Region,North East,529,2013-03-08,10 -Region,North East,513,2013-03-15,11 -Region,North East,517,2013-03-22,12 -Region,North East,466,2013-03-29,13 -Region,North East,516,2013-04-05,14 -Region,North East,600,2013-04-12,15 -Region,North East,565,2013-04-19,16 -Region,North East,505,2013-04-26,17 -Region,North East,555,2013-05-03,18 -Region,North East,483,2013-05-10,19 -Region,North East,484,2013-05-17,20 -Region,North East,489,2013-05-24,21 -Region,North East,488,2013-05-31,22 -Region,North East,502,2013-06-07,23 -Region,North East,468,2013-06-14,24 -Region,North East,467,2013-06-21,25 -Region,North East,476,2013-06-28,26 -Region,North East,449,2013-07-05,27 -Region,North East,413,2013-07-12,28 -Region,North East,480,2013-07-19,29 -Region,North East,426,2013-07-26,30 -Region,North East,395,2013-08-02,31 -Region,North East,417,2013-08-09,32 -Region,North East,461,2013-08-16,33 -Region,North East,447,2013-08-23,34 -Region,North East,393,2013-08-30,35 -Region,North East,485,2013-09-06,36 -Region,North East,438,2013-09-13,37 -Region,North East,450,2013-09-20,38 -Region,North East,469,2013-09-27,39 -Region,North East,526,2013-10-04,40 -Region,North East,481,2013-10-11,41 -Region,North East,504,2013-10-18,42 -Region,North East,482,2013-10-25,43 -Region,North East,523,2013-11-01,44 -Region,North East,494,2013-11-08,45 -Region,North East,565,2013-11-15,46 -Region,North East,503,2013-11-22,47 -Region,North East,523,2013-11-29,48 -Region,North East,486,2013-12-06,49 -Region,North East,478,2013-12-13,50 -Region,North East,536,2013-12-20,51 -Region,North East,374,2013-12-27,52 -Region,North West,1545,2013-01-04,1 -Region,North West,1650,2013-01-11,2 -Region,North West,1539,2013-01-18,3 -Region,North West,1571,2013-01-25,4 -Region,North West,1481,2013-02-01,5 -Region,North West,1533,2013-02-08,6 -Region,North West,1542,2013-02-15,7 -Region,North West,1522,2013-02-22,8 -Region,North West,1525,2013-03-01,9 -Region,North West,1568,2013-03-08,10 -Region,North West,1538,2013-03-15,11 -Region,North West,1534,2013-03-22,12 -Region,North West,1300,2013-03-29,13 -Region,North West,1531,2013-04-05,14 -Region,North West,1660,2013-04-12,15 -Region,North West,1524,2013-04-19,16 -Region,North West,1449,2013-04-26,17 -Region,North West,1347,2013-05-03,18 -Region,North West,1213,2013-05-10,19 -Region,North West,1295,2013-05-17,20 -Region,North West,1293,2013-05-24,21 -Region,North West,1176,2013-05-31,22 -Region,North West,1256,2013-06-07,23 -Region,North West,1206,2013-06-14,24 -Region,North West,1163,2013-06-21,25 -Region,North West,1150,2013-06-28,26 -Region,North West,1190,2013-07-05,27 -Region,North West,1212,2013-07-12,28 -Region,North West,1130,2013-07-19,29 -Region,North West,1173,2013-07-26,30 -Region,North West,1121,2013-08-02,31 -Region,North West,1123,2013-08-09,32 -Region,North West,1133,2013-08-16,33 -Region,North West,1171,2013-08-23,34 -Region,North West,1062,2013-08-30,35 -Region,North West,1209,2013-09-06,36 -Region,North West,1105,2013-09-13,37 -Region,North West,1145,2013-09-20,38 -Region,North West,1277,2013-09-27,39 -Region,North West,1251,2013-10-04,40 -Region,North West,1186,2013-10-11,41 -Region,North West,1231,2013-10-18,42 -Region,North West,1227,2013-10-25,43 -Region,North West,1258,2013-11-01,44 -Region,North West,1221,2013-11-08,45 -Region,North West,1301,2013-11-15,46 -Region,North West,1357,2013-11-22,47 -Region,North West,1319,2013-11-29,48 -Region,North West,1307,2013-12-06,49 -Region,North West,1426,2013-12-13,50 -Region,North West,1366,2013-12-20,51 -Region,North West,925,2013-12-27,52 -Region,Yorkshire and The Humber,1138,2013-01-04,1 -Region,Yorkshire and The Humber,1213,2013-01-11,2 -Region,Yorkshire and The Humber,1155,2013-01-18,3 -Region,Yorkshire and The Humber,1163,2013-01-25,4 -Region,Yorkshire and The Humber,1121,2013-02-01,5 -Region,Yorkshire and The Humber,1102,2013-02-08,6 -Region,Yorkshire and The Humber,1126,2013-02-15,7 -Region,Yorkshire and The Humber,1102,2013-02-22,8 -Region,Yorkshire and The Humber,1056,2013-03-01,9 -Region,Yorkshire and The Humber,1088,2013-03-08,10 -Region,Yorkshire and The Humber,1067,2013-03-15,11 -Region,Yorkshire and The Humber,1152,2013-03-22,12 -Region,Yorkshire and The Humber,927,2013-03-29,13 -Region,Yorkshire and The Humber,1113,2013-04-05,14 -Region,Yorkshire and The Humber,1147,2013-04-12,15 -Region,Yorkshire and The Humber,1139,2013-04-19,16 -Region,Yorkshire and The Humber,1085,2013-04-26,17 -Region,Yorkshire and The Humber,966,2013-05-03,18 -Region,Yorkshire and The Humber,895,2013-05-10,19 -Region,Yorkshire and The Humber,995,2013-05-17,20 -Region,Yorkshire and The Humber,978,2013-05-24,21 -Region,Yorkshire and The Humber,779,2013-05-31,22 -Region,Yorkshire and The Humber,917,2013-06-07,23 -Region,Yorkshire and The Humber,874,2013-06-14,24 -Region,Yorkshire and The Humber,850,2013-06-21,25 -Region,Yorkshire and The Humber,817,2013-06-28,26 -Region,Yorkshire and The Humber,868,2013-07-05,27 -Region,Yorkshire and The Humber,861,2013-07-12,28 -Region,Yorkshire and The Humber,902,2013-07-19,29 -Region,Yorkshire and The Humber,789,2013-07-26,30 -Region,Yorkshire and The Humber,851,2013-08-02,31 -Region,Yorkshire and The Humber,855,2013-08-09,32 -Region,Yorkshire and The Humber,819,2013-08-16,33 -Region,Yorkshire and The Humber,854,2013-08-23,34 -Region,Yorkshire and The Humber,790,2013-08-30,35 -Region,Yorkshire and The Humber,874,2013-09-06,36 -Region,Yorkshire and The Humber,833,2013-09-13,37 -Region,Yorkshire and The Humber,875,2013-09-20,38 -Region,Yorkshire and The Humber,935,2013-09-27,39 -Region,Yorkshire and The Humber,862,2013-10-04,40 -Region,Yorkshire and The Humber,933,2013-10-11,41 -Region,Yorkshire and The Humber,865,2013-10-18,42 -Region,Yorkshire and The Humber,876,2013-10-25,43 -Region,Yorkshire and The Humber,875,2013-11-01,44 -Region,Yorkshire and The Humber,950,2013-11-08,45 -Region,Yorkshire and The Humber,954,2013-11-15,46 -Region,Yorkshire and The Humber,898,2013-11-22,47 -Region,Yorkshire and The Humber,932,2013-11-29,48 -Region,Yorkshire and The Humber,974,2013-12-06,49 -Region,Yorkshire and The Humber,1038,2013-12-13,50 -Region,Yorkshire and The Humber,1052,2013-12-20,51 -Region,Yorkshire and The Humber,689,2013-12-27,52 -Region,East Midlands,976,2013-01-04,1 -Region,East Midlands,1025,2013-01-11,2 -Region,East Midlands,928,2013-01-18,3 -Region,East Midlands,919,2013-01-25,4 -Region,East Midlands,956,2013-02-01,5 -Region,East Midlands,873,2013-02-08,6 -Region,East Midlands,912,2013-02-15,7 -Region,East Midlands,939,2013-02-22,8 -Region,East Midlands,893,2013-03-01,9 -Region,East Midlands,950,2013-03-08,10 -Region,East Midlands,912,2013-03-15,11 -Region,East Midlands,987,2013-03-22,12 -Region,East Midlands,764,2013-03-29,13 -Region,East Midlands,911,2013-04-05,14 -Region,East Midlands,952,2013-04-12,15 -Region,East Midlands,1014,2013-04-19,16 -Region,East Midlands,869,2013-04-26,17 -Region,East Midlands,852,2013-05-03,18 -Region,East Midlands,718,2013-05-10,19 -Region,East Midlands,823,2013-05-17,20 -Region,East Midlands,776,2013-05-24,21 -Region,East Midlands,695,2013-05-31,22 -Region,East Midlands,803,2013-06-07,23 -Region,East Midlands,735,2013-06-14,24 -Region,East Midlands,757,2013-06-21,25 -Region,East Midlands,696,2013-06-28,26 -Region,East Midlands,769,2013-07-05,27 -Region,East Midlands,702,2013-07-12,28 -Region,East Midlands,718,2013-07-19,29 -Region,East Midlands,751,2013-07-26,30 -Region,East Midlands,648,2013-08-02,31 -Region,East Midlands,715,2013-08-09,32 -Region,East Midlands,642,2013-08-16,33 -Region,East Midlands,664,2013-08-23,34 -Region,East Midlands,647,2013-08-30,35 -Region,East Midlands,747,2013-09-06,36 -Region,East Midlands,721,2013-09-13,37 -Region,East Midlands,723,2013-09-20,38 -Region,East Midlands,742,2013-09-27,39 -Region,East Midlands,786,2013-10-04,40 -Region,East Midlands,753,2013-10-11,41 -Region,East Midlands,792,2013-10-18,42 -Region,East Midlands,803,2013-10-25,43 -Region,East Midlands,769,2013-11-01,44 -Region,East Midlands,765,2013-11-08,45 -Region,East Midlands,804,2013-11-15,46 -Region,East Midlands,811,2013-11-22,47 -Region,East Midlands,803,2013-11-29,48 -Region,East Midlands,837,2013-12-06,49 -Region,East Midlands,802,2013-12-13,50 -Region,East Midlands,901,2013-12-20,51 -Region,East Midlands,563,2013-12-27,52 -Region,West Midlands,1268,2013-01-04,1 -Region,West Midlands,1325,2013-01-11,2 -Region,West Midlands,1072,2013-01-18,3 -Region,West Midlands,1158,2013-01-25,4 -Region,West Midlands,1149,2013-02-01,5 -Region,West Midlands,1172,2013-02-08,6 -Region,West Midlands,1174,2013-02-15,7 -Region,West Midlands,1074,2013-02-22,8 -Region,West Midlands,1093,2013-03-01,9 -Region,West Midlands,1198,2013-03-08,10 -Region,West Midlands,1223,2013-03-15,11 -Region,West Midlands,1121,2013-03-22,12 -Region,West Midlands,960,2013-03-29,13 -Region,West Midlands,1153,2013-04-05,14 -Region,West Midlands,1371,2013-04-12,15 -Region,West Midlands,1197,2013-04-19,16 -Region,West Midlands,1066,2013-04-26,17 -Region,West Midlands,1042,2013-05-03,18 -Region,West Midlands,870,2013-05-10,19 -Region,West Midlands,1047,2013-05-17,20 -Region,West Midlands,1000,2013-05-24,21 -Region,West Midlands,846,2013-05-31,22 -Region,West Midlands,1002,2013-06-07,23 -Region,West Midlands,909,2013-06-14,24 -Region,West Midlands,861,2013-06-21,25 -Region,West Midlands,846,2013-06-28,26 -Region,West Midlands,894,2013-07-05,27 -Region,West Midlands,902,2013-07-12,28 -Region,West Midlands,969,2013-07-19,29 -Region,West Midlands,852,2013-07-26,30 -Region,West Midlands,853,2013-08-02,31 -Region,West Midlands,828,2013-08-09,32 -Region,West Midlands,849,2013-08-16,33 -Region,West Midlands,902,2013-08-23,34 -Region,West Midlands,754,2013-08-30,35 -Region,West Midlands,895,2013-09-06,36 -Region,West Midlands,881,2013-09-13,37 -Region,West Midlands,842,2013-09-20,38 -Region,West Midlands,930,2013-09-27,39 -Region,West Midlands,910,2013-10-04,40 -Region,West Midlands,915,2013-10-11,41 -Region,West Midlands,937,2013-10-18,42 -Region,West Midlands,951,2013-10-25,43 -Region,West Midlands,963,2013-11-01,44 -Region,West Midlands,963,2013-11-08,45 -Region,West Midlands,925,2013-11-15,46 -Region,West Midlands,992,2013-11-22,47 -Region,West Midlands,986,2013-11-29,48 -Region,West Midlands,1000,2013-12-06,49 -Region,West Midlands,1058,2013-12-13,50 -Region,West Midlands,1091,2013-12-20,51 -Region,West Midlands,616,2013-12-27,52 -Region,East,1198,2013-01-04,1 -Region,East,1299,2013-01-11,2 -Region,East,1232,2013-01-18,3 -Region,East,1193,2013-01-25,4 -Region,East,1215,2013-02-01,5 -Region,East,1144,2013-02-08,6 -Region,East,1138,2013-02-15,7 -Region,East,1116,2013-02-22,8 -Region,East,1171,2013-03-01,9 -Region,East,1210,2013-03-08,10 -Region,East,1148,2013-03-15,11 -Region,East,1168,2013-03-22,12 -Region,East,908,2013-03-29,13 -Region,East,1084,2013-04-05,14 -Region,East,1233,2013-04-12,15 -Region,East,1274,2013-04-19,16 -Region,East,1134,2013-04-26,17 -Region,East,1070,2013-05-03,18 -Region,East,954,2013-05-10,19 -Region,East,1040,2013-05-17,20 -Region,East,978,2013-05-24,21 -Region,East,875,2013-05-31,22 -Region,East,1004,2013-06-07,23 -Region,East,947,2013-06-14,24 -Region,East,994,2013-06-21,25 -Region,East,1022,2013-06-28,26 -Region,East,912,2013-07-05,27 -Region,East,860,2013-07-12,28 -Region,East,907,2013-07-19,29 -Region,East,864,2013-07-26,30 -Region,East,866,2013-08-02,31 -Region,East,874,2013-08-09,32 -Region,East,830,2013-08-16,33 -Region,East,902,2013-08-23,34 -Region,East,775,2013-08-30,35 -Region,East,922,2013-09-06,36 -Region,East,888,2013-09-13,37 -Region,East,904,2013-09-20,38 -Region,East,985,2013-09-27,39 -Region,East,979,2013-10-04,40 -Region,East,933,2013-10-11,41 -Region,East,1033,2013-10-18,42 -Region,East,943,2013-10-25,43 -Region,East,997,2013-11-01,44 -Region,East,1008,2013-11-08,45 -Region,East,1006,2013-11-15,46 -Region,East,1003,2013-11-22,47 -Region,East,985,2013-11-29,48 -Region,East,1059,2013-12-06,49 -Region,East,1007,2013-12-13,50 -Region,East,1067,2013-12-20,51 -Region,East,711,2013-12-27,52 -Region,London,1080,2013-01-04,1 -Region,London,1182,2013-01-11,2 -Region,London,1012,2013-01-18,3 -Region,London,1063,2013-01-25,4 -Region,London,1079,2013-02-01,5 -Region,London,1052,2013-02-08,6 -Region,London,1117,2013-02-15,7 -Region,London,1048,2013-02-22,8 -Region,London,1004,2013-03-01,9 -Region,London,1041,2013-03-08,10 -Region,London,1019,2013-03-15,11 -Region,London,1017,2013-03-22,12 -Region,London,902,2013-03-29,13 -Region,London,1041,2013-04-05,14 -Region,London,1125,2013-04-12,15 -Region,London,1062,2013-04-19,16 -Region,London,981,2013-04-26,17 -Region,London,952,2013-05-03,18 -Region,London,868,2013-05-10,19 -Region,London,919,2013-05-17,20 -Region,London,863,2013-05-24,21 -Region,London,769,2013-05-31,22 -Region,London,870,2013-06-07,23 -Region,London,865,2013-06-14,24 -Region,London,866,2013-06-21,25 -Region,London,811,2013-06-28,26 -Region,London,833,2013-07-05,27 -Region,London,797,2013-07-12,28 -Region,London,803,2013-07-19,29 -Region,London,837,2013-07-26,30 -Region,London,766,2013-08-02,31 -Region,London,717,2013-08-09,32 -Region,London,767,2013-08-16,33 -Region,London,790,2013-08-23,34 -Region,London,754,2013-08-30,35 -Region,London,810,2013-09-06,36 -Region,London,770,2013-09-13,37 -Region,London,813,2013-09-20,38 -Region,London,839,2013-09-27,39 -Region,London,915,2013-10-04,40 -Region,London,859,2013-10-11,41 -Region,London,862,2013-10-18,42 -Region,London,870,2013-10-25,43 -Region,London,835,2013-11-01,44 -Region,London,918,2013-11-08,45 -Region,London,922,2013-11-15,46 -Region,London,879,2013-11-22,47 -Region,London,882,2013-11-29,48 -Region,London,895,2013-12-06,49 -Region,London,917,2013-12-13,50 -Region,London,975,2013-12-20,51 -Region,London,590,2013-12-27,52 -Region,South East,1793,2013-01-04,1 -Region,South East,1988,2013-01-11,2 -Region,South East,1680,2013-01-18,3 -Region,South East,1643,2013-01-25,4 -Region,South East,1734,2013-02-01,5 -Region,South East,1725,2013-02-08,6 -Region,South East,1575,2013-02-15,7 -Region,South East,1631,2013-02-22,8 -Region,South East,1693,2013-03-01,9 -Region,South East,1724,2013-03-08,10 -Region,South East,1726,2013-03-15,11 -Region,South East,1631,2013-03-22,12 -Region,South East,1403,2013-03-29,13 -Region,South East,1579,2013-04-05,14 -Region,South East,1914,2013-04-12,15 -Region,South East,1801,2013-04-19,16 -Region,South East,1648,2013-04-26,17 -Region,South East,1612,2013-05-03,18 -Region,South East,1306,2013-05-10,19 -Region,South East,1546,2013-05-17,20 -Region,South East,1501,2013-05-24,21 -Region,South East,1267,2013-05-31,22 -Region,South East,1525,2013-06-07,23 -Region,South East,1318,2013-06-14,24 -Region,South East,1381,2013-06-21,25 -Region,South East,1310,2013-06-28,26 -Region,South East,1415,2013-07-05,27 -Region,South East,1305,2013-07-12,28 -Region,South East,1394,2013-07-19,29 -Region,South East,1282,2013-07-26,30 -Region,South East,1269,2013-08-02,31 -Region,South East,1302,2013-08-09,32 -Region,South East,1274,2013-08-16,33 -Region,South East,1389,2013-08-23,34 -Region,South East,1164,2013-08-30,35 -Region,South East,1355,2013-09-06,36 -Region,South East,1253,2013-09-13,37 -Region,South East,1352,2013-09-20,38 -Region,South East,1429,2013-09-27,39 -Region,South East,1374,2013-10-04,40 -Region,South East,1325,2013-10-11,41 -Region,South East,1378,2013-10-18,42 -Region,South East,1471,2013-10-25,43 -Region,South East,1336,2013-11-01,44 -Region,South East,1455,2013-11-08,45 -Region,South East,1428,2013-11-15,46 -Region,South East,1485,2013-11-22,47 -Region,South East,1500,2013-11-29,48 -Region,South East,1605,2013-12-06,49 -Region,South East,1505,2013-12-13,50 -Region,South East,1577,2013-12-20,51 -Region,South East,1019,2013-12-27,52 -Region,South West,1174,2013-01-04,1 -Region,South West,1346,2013-01-11,2 -Region,South West,1149,2013-01-18,3 -Region,South West,1191,2013-01-25,4 -Region,South West,1211,2013-02-01,5 -Region,South West,1182,2013-02-08,6 -Region,South West,1146,2013-02-15,7 -Region,South West,1159,2013-02-22,8 -Region,South West,1155,2013-03-01,9 -Region,South West,1198,2013-03-08,10 -Region,South West,1286,2013-03-15,11 -Region,South West,1195,2013-03-22,12 -Region,South West,1022,2013-03-29,13 -Region,South West,1169,2013-04-05,14 -Region,South West,1320,2013-04-12,15 -Region,South West,1322,2013-04-19,16 -Region,South West,1159,2013-04-26,17 -Region,South West,1094,2013-05-03,18 -Region,South West,942,2013-05-10,19 -Region,South West,1068,2013-05-17,20 -Region,South West,1020,2013-05-24,21 -Region,South West,856,2013-05-31,22 -Region,South West,961,2013-06-07,23 -Region,South West,975,2013-06-14,24 -Region,South West,947,2013-06-21,25 -Region,South West,906,2013-06-28,26 -Region,South West,926,2013-07-05,27 -Region,South West,914,2013-07-12,28 -Region,South West,958,2013-07-19,29 -Region,South West,922,2013-07-26,30 -Region,South West,853,2013-08-02,31 -Region,South West,911,2013-08-09,32 -Region,South West,904,2013-08-16,33 -Region,South West,909,2013-08-23,34 -Region,South West,808,2013-08-30,35 -Region,South West,1003,2013-09-06,36 -Region,South West,888,2013-09-13,37 -Region,South West,953,2013-09-20,38 -Region,South West,960,2013-09-27,39 -Region,South West,972,2013-10-04,40 -Region,South West,971,2013-10-11,41 -Region,South West,987,2013-10-18,42 -Region,South West,1007,2013-10-25,43 -Region,South West,977,2013-11-01,44 -Region,South West,1052,2013-11-08,45 -Region,South West,1044,2013-11-15,46 -Region,South West,1020,2013-11-22,47 -Region,South West,1054,2013-11-29,48 -Region,South West,1102,2013-12-06,49 -Region,South West,1126,2013-12-13,50 -Region,South West,1101,2013-12-20,51 -Region,South West,692,2013-12-27,52 -Region,Wales,725,2013-01-04,1 -Region,Wales,755,2013-01-11,2 -Region,Wales,647,2013-01-18,3 -Region,Wales,738,2013-01-25,4 -Region,Wales,749,2013-02-01,5 -Region,Wales,682,2013-02-08,6 -Region,Wales,697,2013-02-15,7 -Region,Wales,688,2013-02-22,8 -Region,Wales,642,2013-03-01,9 -Region,Wales,719,2013-03-08,10 -Region,Wales,720,2013-03-15,11 -Region,Wales,729,2013-03-22,12 -Region,Wales,617,2013-03-29,13 -Region,Wales,736,2013-04-05,14 -Region,Wales,792,2013-04-12,15 -Region,Wales,770,2013-04-19,16 -Region,Wales,708,2013-04-26,17 -Region,Wales,657,2013-05-03,18 -Region,Wales,547,2013-05-10,19 -Region,Wales,603,2013-05-17,20 -Region,Wales,606,2013-05-24,21 -Region,Wales,557,2013-05-31,22 -Region,Wales,603,2013-06-07,23 -Region,Wales,556,2013-06-14,24 -Region,Wales,583,2013-06-21,25 -Region,Wales,533,2013-06-28,26 -Region,Wales,520,2013-07-05,27 -Region,Wales,534,2013-07-12,28 -Region,Wales,513,2013-07-19,29 -Region,Wales,553,2013-07-26,30 -Region,Wales,518,2013-08-02,31 -Region,Wales,516,2013-08-09,32 -Region,Wales,524,2013-08-16,33 -Region,Wales,524,2013-08-23,34 -Region,Wales,511,2013-08-30,35 -Region,Wales,569,2013-09-06,36 -Region,Wales,530,2013-09-13,37 -Region,Wales,543,2013-09-20,38 -Region,Wales,558,2013-09-27,39 -Region,Wales,589,2013-10-04,40 -Region,Wales,555,2013-10-11,41 -Region,Wales,594,2013-10-18,42 -Region,Wales,551,2013-10-25,43 -Region,Wales,559,2013-11-01,44 -Region,Wales,591,2013-11-08,45 -Region,Wales,597,2013-11-15,46 -Region,Wales,609,2013-11-22,47 -Region,Wales,627,2013-11-29,48 -Region,Wales,621,2013-12-06,49 -Region,Wales,654,2013-12-13,50 -Region,Wales,644,2013-12-20,51 -Region,Wales,404,2013-12-27,52 -Total deaths,all ages,11448,2014-01-03,1 -Total deaths,all ages,11847,2014-01-10,2 -Total deaths,all ages,11061,2014-01-17,3 -Total deaths,all ages,10374,2014-01-24,4 -Total deaths,all ages,10258,2014-01-31,5 -Total deaths,all ages,10147,2014-02-07,6 -Total deaths,all ages,10198,2014-02-14,7 -Total deaths,all ages,10427,2014-02-21,8 -Total deaths,all ages,10377,2014-02-28,9 -Total deaths,all ages,9828,2014-03-07,10 -Total deaths,all ages,10005,2014-03-14,11 -Total deaths,all ages,9832,2014-03-21,12 -Total deaths,all ages,9622,2014-03-28,13 -Total deaths,all ages,9944,2014-04-04,14 -Total deaths,all ages,9504,2014-04-11,15 -Total deaths,all ages,8000,2014-04-18,16 -Total deaths,all ages,9359,2014-04-25,17 -Total deaths,all ages,10527,2014-05-02,18 -Total deaths,all ages,8613,2014-05-09,19 -Total deaths,all ages,9513,2014-05-16,20 -Total deaths,all ages,9313,2014-05-23,21 -Total deaths,all ages,8034,2014-05-30,22 -Total deaths,all ages,9557,2014-06-06,23 -Total deaths,all ages,9414,2014-06-13,24 -Total deaths,all ages,8946,2014-06-20,25 -Total deaths,all ages,8931,2014-06-27,26 -Total deaths,all ages,8763,2014-07-04,27 -Total deaths,all ages,8784,2014-07-11,28 -Total deaths,all ages,9119,2014-07-18,29 -Total deaths,all ages,8965,2014-07-25,30 -Total deaths,all ages,8916,2014-08-01,31 -Total deaths,all ages,8755,2014-08-08,32 -Total deaths,all ages,8792,2014-08-15,33 -Total deaths,all ages,8769,2014-08-22,34 -Total deaths,all ages,8027,2014-08-29,35 -Total deaths,all ages,9671,2014-09-05,36 -Total deaths,all ages,9284,2014-09-12,37 -Total deaths,all ages,9107,2014-09-19,38 -Total deaths,all ages,9048,2014-09-26,39 -Total deaths,all ages,9271,2014-10-03,40 -Total deaths,all ages,9173,2014-10-10,41 -Total deaths,all ages,9464,2014-10-17,42 -Total deaths,all ages,9603,2014-10-24,43 -Total deaths,all ages,9586,2014-10-31,44 -Total deaths,all ages,9753,2014-11-07,45 -Total deaths,all ages,10036,2014-11-14,46 -Total deaths,all ages,9472,2014-11-21,47 -Total deaths,all ages,9928,2014-11-28,48 -Total deaths,all ages,10267,2014-12-05,49 -Total deaths,all ages,10550,2014-12-12,50 -Total deaths,all ages,11681,2014-12-19,51 -Total deaths,all ages,7837,2014-12-26,52 -Total deaths,average of same week over 5 years,12328,2014-01-03,1 -Total deaths,average of same week over 5 years,12938.8,2014-01-10,2 -Total deaths,average of same week over 5 years,11586.4,2014-01-17,3 -Total deaths,average of same week over 5 years,11115.4,2014-01-24,4 -Total deaths,average of same week over 5 years,10710.4,2014-01-31,5 -Total deaths,average of same week over 5 years,10363.4,2014-02-07,6 -Total deaths,average of same week over 5 years,10455.8,2014-02-14,7 -Total deaths,average of same week over 5 years,10410.6,2014-02-21,8 -Total deaths,average of same week over 5 years,10207.6,2014-02-28,9 -Total deaths,average of same week over 5 years,10173.8,2014-03-07,10 -Total deaths,average of same week over 5 years,10102,2014-03-14,11 -Total deaths,average of same week over 5 years,9905.8,2014-03-21,12 -Total deaths,average of same week over 5 years,9121,2014-03-28,13 -Total deaths,average of same week over 5 years,9639.4,2014-04-04,14 -Total deaths,average of same week over 5 years,9940.6,2014-04-11,15 -Total deaths,average of same week over 5 years,9999.8,2014-04-18,16 -Total deaths,average of same week over 5 years,9610.4,2014-04-25,17 -Total deaths,average of same week over 5 years,9519.8,2014-05-02,18 -Total deaths,average of same week over 5 years,9122.6,2014-05-09,19 -Total deaths,average of same week over 5 years,9395,2014-05-16,20 -Total deaths,average of same week over 5 years,9367.2,2014-05-23,21 -Total deaths,average of same week over 5 years,8472.6,2014-05-30,22 -Total deaths,average of same week over 5 years,8762.4,2014-06-06,23 -Total deaths,average of same week over 5 years,9046,2014-06-13,24 -Total deaths,average of same week over 5 years,8771.6,2014-06-20,25 -Total deaths,average of same week over 5 years,8711.6,2014-06-27,26 -Total deaths,average of same week over 5 years,8742.4,2014-07-04,27 -Total deaths,average of same week over 5 years,8513,2014-07-11,28 -Total deaths,average of same week over 5 years,8510,2014-07-18,29 -Total deaths,average of same week over 5 years,8490.8,2014-07-25,30 -Total deaths,average of same week over 5 years,8521.4,2014-08-01,31 -Total deaths,average of same week over 5 years,8481.8,2014-08-08,32 -Total deaths,average of same week over 5 years,8512.6,2014-08-15,33 -Total deaths,average of same week over 5 years,8605,2014-08-22,34 -Total deaths,average of same week over 5 years,7795.4,2014-08-29,35 -Total deaths,average of same week over 5 years,8628.4,2014-09-05,36 -Total deaths,average of same week over 5 years,8603,2014-09-12,37 -Total deaths,average of same week over 5 years,8663,2014-09-19,38 -Total deaths,average of same week over 5 years,8911.2,2014-09-26,39 -Total deaths,average of same week over 5 years,8976,2014-10-03,40 -Total deaths,average of same week over 5 years,9056.2,2014-10-10,41 -Total deaths,average of same week over 5 years,9136.4,2014-10-17,42 -Total deaths,average of same week over 5 years,9321,2014-10-24,43 -Total deaths,average of same week over 5 years,9439.2,2014-10-31,44 -Total deaths,average of same week over 5 years,9414.4,2014-11-07,45 -Total deaths,average of same week over 5 years,9535.6,2014-11-14,46 -Total deaths,average of same week over 5 years,9492.4,2014-11-21,47 -Total deaths,average of same week over 5 years,9398.8,2014-11-28,48 -Total deaths,average of same week over 5 years,10111.8,2014-12-05,49 -Total deaths,average of same week over 5 years,10323.6,2014-12-12,50 -Total deaths,average of same week over 5 years,10886.4,2014-12-19,51 -Total deaths,average of same week over 5 years,8310,2014-12-26,52 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),NA,2014-01-03,1 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1783,2014-01-10,2 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1676,2014-01-17,3 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1512,2014-01-24,4 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1492,2014-01-31,5 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1418,2014-02-07,6 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1442,2014-02-14,7 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1607,2014-02-21,8 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1519,2014-02-28,9 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1497,2014-03-07,10 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1412,2014-03-14,11 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1312,2014-03-21,12 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1296,2014-03-28,13 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1363,2014-04-04,14 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1320,2014-04-11,15 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1042,2014-04-18,16 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1279,2014-04-25,17 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1434,2014-05-02,18 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1165,2014-05-09,19 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1185,2014-05-16,20 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1190,2014-05-23,21 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1049,2014-05-30,22 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1211,2014-06-06,23 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1150,2014-06-13,24 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1033,2014-06-20,25 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1162,2014-06-27,26 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1032,2014-07-04,27 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1038,2014-07-11,28 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1042,2014-07-18,29 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1066,2014-07-25,30 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1051,2014-08-01,31 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1023,2014-08-08,32 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1018,2014-08-15,33 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),924,2014-08-22,34 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),979,2014-08-29,35 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1139,2014-09-05,36 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1082,2014-09-12,37 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1051,2014-09-19,38 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1080,2014-09-26,39 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1075,2014-10-03,40 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1069,2014-10-10,41 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1091,2014-10-17,42 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1203,2014-10-24,43 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1180,2014-10-31,44 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1244,2014-11-07,45 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1277,2014-11-14,46 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1135,2014-11-21,47 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1213,2014-11-28,48 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1463,2014-12-05,49 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1552,2014-12-12,50 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1950,2014-12-19,51 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1366,2014-12-26,52 -NA,NA,1779,2014-01-03,1 -NA,NA,1925,2014-01-10,2 -NA,NA,NA,2014-01-17,3 -NA,NA,NA,2014-01-24,4 -NA,NA,NA,2014-01-31,5 -NA,NA,NA,2014-02-07,6 -NA,NA,NA,2014-02-14,7 -NA,NA,NA,2014-02-21,8 -NA,NA,NA,2014-02-28,9 -NA,NA,NA,2014-03-07,10 -NA,NA,NA,2014-03-14,11 -NA,NA,NA,2014-03-21,12 -NA,NA,NA,2014-03-28,13 -NA,NA,NA,2014-04-04,14 -NA,NA,NA,2014-04-11,15 -NA,NA,NA,2014-04-18,16 -NA,NA,NA,2014-04-25,17 -NA,NA,NA,2014-05-02,18 -NA,NA,NA,2014-05-09,19 -NA,NA,NA,2014-05-16,20 -NA,NA,NA,2014-05-23,21 -NA,NA,NA,2014-05-30,22 -NA,NA,NA,2014-06-06,23 -NA,NA,NA,2014-06-13,24 -NA,NA,NA,2014-06-20,25 -NA,NA,NA,2014-06-27,26 -NA,NA,NA,2014-07-04,27 -NA,NA,NA,2014-07-11,28 -NA,NA,NA,2014-07-18,29 -NA,NA,NA,2014-07-25,30 -NA,NA,NA,2014-08-01,31 -NA,NA,NA,2014-08-08,32 -NA,NA,NA,2014-08-15,33 -NA,NA,NA,2014-08-22,34 -NA,NA,NA,2014-08-29,35 -NA,NA,NA,2014-09-05,36 -NA,NA,NA,2014-09-12,37 -NA,NA,NA,2014-09-19,38 -NA,NA,NA,2014-09-26,39 -NA,NA,NA,2014-10-03,40 -NA,NA,NA,2014-10-10,41 -NA,NA,NA,2014-10-17,42 -NA,NA,NA,2014-10-24,43 -NA,NA,NA,2014-10-31,44 -NA,NA,NA,2014-11-07,45 -NA,NA,NA,2014-11-14,46 -NA,NA,NA,2014-11-21,47 -NA,NA,NA,2014-11-28,48 -NA,NA,NA,2014-12-05,49 -NA,NA,NA,2014-12-12,50 -NA,NA,NA,2014-12-19,51 -NA,NA,NA,2014-12-26,52 -Persons,Under 1 year,36,2014-01-03,1 -Persons,Under 1 year,47,2014-01-10,2 -Persons,Under 1 year,67,2014-01-17,3 -Persons,Under 1 year,48,2014-01-24,4 -Persons,Under 1 year,54,2014-01-31,5 -Persons,Under 1 year,47,2014-02-07,6 -Persons,Under 1 year,58,2014-02-14,7 -Persons,Under 1 year,58,2014-02-21,8 -Persons,Under 1 year,70,2014-02-28,9 -Persons,Under 1 year,44,2014-03-07,10 -Persons,Under 1 year,52,2014-03-14,11 -Persons,Under 1 year,54,2014-03-21,12 -Persons,Under 1 year,76,2014-03-28,13 -Persons,Under 1 year,45,2014-04-04,14 -Persons,Under 1 year,59,2014-04-11,15 -Persons,Under 1 year,49,2014-04-18,16 -Persons,Under 1 year,55,2014-04-25,17 -Persons,Under 1 year,49,2014-05-02,18 -Persons,Under 1 year,40,2014-05-09,19 -Persons,Under 1 year,48,2014-05-16,20 -Persons,Under 1 year,65,2014-05-23,21 -Persons,Under 1 year,45,2014-05-30,22 -Persons,Under 1 year,56,2014-06-06,23 -Persons,Under 1 year,58,2014-06-13,24 -Persons,Under 1 year,52,2014-06-20,25 -Persons,Under 1 year,51,2014-06-27,26 -Persons,Under 1 year,38,2014-07-04,27 -Persons,Under 1 year,44,2014-07-11,28 -Persons,Under 1 year,42,2014-07-18,29 -Persons,Under 1 year,57,2014-07-25,30 -Persons,Under 1 year,52,2014-08-01,31 -Persons,Under 1 year,58,2014-08-08,32 -Persons,Under 1 year,57,2014-08-15,33 -Persons,Under 1 year,58,2014-08-22,34 -Persons,Under 1 year,40,2014-08-29,35 -Persons,Under 1 year,50,2014-09-05,36 -Persons,Under 1 year,57,2014-09-12,37 -Persons,Under 1 year,57,2014-09-19,38 -Persons,Under 1 year,56,2014-09-26,39 -Persons,Under 1 year,54,2014-10-03,40 -Persons,Under 1 year,66,2014-10-10,41 -Persons,Under 1 year,49,2014-10-17,42 -Persons,Under 1 year,56,2014-10-24,43 -Persons,Under 1 year,51,2014-10-31,44 -Persons,Under 1 year,47,2014-11-07,45 -Persons,Under 1 year,60,2014-11-14,46 -Persons,Under 1 year,49,2014-11-21,47 -Persons,Under 1 year,64,2014-11-28,48 -Persons,Under 1 year,62,2014-12-05,49 -Persons,Under 1 year,40,2014-12-12,50 -Persons,Under 1 year,50,2014-12-19,51 -Persons,Under 1 year,37,2014-12-26,52 -Persons,01-14,16,2014-01-03,1 -Persons,01-14,25,2014-01-10,2 -Persons,01-14,15,2014-01-17,3 -Persons,01-14,18,2014-01-24,4 -Persons,01-14,21,2014-01-31,5 -Persons,01-14,24,2014-02-07,6 -Persons,01-14,27,2014-02-14,7 -Persons,01-14,28,2014-02-21,8 -Persons,01-14,22,2014-02-28,9 -Persons,01-14,20,2014-03-07,10 -Persons,01-14,26,2014-03-14,11 -Persons,01-14,15,2014-03-21,12 -Persons,01-14,19,2014-03-28,13 -Persons,01-14,18,2014-04-04,14 -Persons,01-14,23,2014-04-11,15 -Persons,01-14,18,2014-04-18,16 -Persons,01-14,20,2014-04-25,17 -Persons,01-14,23,2014-05-02,18 -Persons,01-14,17,2014-05-09,19 -Persons,01-14,20,2014-05-16,20 -Persons,01-14,17,2014-05-23,21 -Persons,01-14,21,2014-05-30,22 -Persons,01-14,32,2014-06-06,23 -Persons,01-14,22,2014-06-13,24 -Persons,01-14,15,2014-06-20,25 -Persons,01-14,17,2014-06-27,26 -Persons,01-14,26,2014-07-04,27 -Persons,01-14,32,2014-07-11,28 -Persons,01-14,24,2014-07-18,29 -Persons,01-14,19,2014-07-25,30 -Persons,01-14,20,2014-08-01,31 -Persons,01-14,22,2014-08-08,32 -Persons,01-14,18,2014-08-15,33 -Persons,01-14,15,2014-08-22,34 -Persons,01-14,15,2014-08-29,35 -Persons,01-14,13,2014-09-05,36 -Persons,01-14,23,2014-09-12,37 -Persons,01-14,13,2014-09-19,38 -Persons,01-14,17,2014-09-26,39 -Persons,01-14,22,2014-10-03,40 -Persons,01-14,21,2014-10-10,41 -Persons,01-14,19,2014-10-17,42 -Persons,01-14,19,2014-10-24,43 -Persons,01-14,25,2014-10-31,44 -Persons,01-14,16,2014-11-07,45 -Persons,01-14,12,2014-11-14,46 -Persons,01-14,16,2014-11-21,47 -Persons,01-14,18,2014-11-28,48 -Persons,01-14,26,2014-12-05,49 -Persons,01-14,24,2014-12-12,50 -Persons,01-14,24,2014-12-19,51 -Persons,01-14,16,2014-12-26,52 -Persons,15-44,213,2014-01-03,1 -Persons,15-44,276,2014-01-10,2 -Persons,15-44,278,2014-01-17,3 -Persons,15-44,301,2014-01-24,4 -Persons,15-44,313,2014-01-31,5 -Persons,15-44,303,2014-02-07,6 -Persons,15-44,328,2014-02-14,7 -Persons,15-44,310,2014-02-21,8 -Persons,15-44,312,2014-02-28,9 -Persons,15-44,329,2014-03-07,10 -Persons,15-44,332,2014-03-14,11 -Persons,15-44,330,2014-03-21,12 -Persons,15-44,270,2014-03-28,13 -Persons,15-44,310,2014-04-04,14 -Persons,15-44,299,2014-04-11,15 -Persons,15-44,243,2014-04-18,16 -Persons,15-44,277,2014-04-25,17 -Persons,15-44,356,2014-05-02,18 -Persons,15-44,226,2014-05-09,19 -Persons,15-44,291,2014-05-16,20 -Persons,15-44,319,2014-05-23,21 -Persons,15-44,210,2014-05-30,22 -Persons,15-44,301,2014-06-06,23 -Persons,15-44,292,2014-06-13,24 -Persons,15-44,313,2014-06-20,25 -Persons,15-44,285,2014-06-27,26 -Persons,15-44,251,2014-07-04,27 -Persons,15-44,296,2014-07-11,28 -Persons,15-44,276,2014-07-18,29 -Persons,15-44,234,2014-07-25,30 -Persons,15-44,312,2014-08-01,31 -Persons,15-44,248,2014-08-08,32 -Persons,15-44,293,2014-08-15,33 -Persons,15-44,268,2014-08-22,34 -Persons,15-44,246,2014-08-29,35 -Persons,15-44,247,2014-09-05,36 -Persons,15-44,300,2014-09-12,37 -Persons,15-44,262,2014-09-19,38 -Persons,15-44,292,2014-09-26,39 -Persons,15-44,288,2014-10-03,40 -Persons,15-44,270,2014-10-10,41 -Persons,15-44,273,2014-10-17,42 -Persons,15-44,285,2014-10-24,43 -Persons,15-44,312,2014-10-31,44 -Persons,15-44,289,2014-11-07,45 -Persons,15-44,300,2014-11-14,46 -Persons,15-44,288,2014-11-21,47 -Persons,15-44,321,2014-11-28,48 -Persons,15-44,339,2014-12-05,49 -Persons,15-44,300,2014-12-12,50 -Persons,15-44,285,2014-12-19,51 -Persons,15-44,189,2014-12-26,52 -Persons,45-64,1269,2014-01-03,1 -Persons,45-64,1391,2014-01-10,2 -Persons,45-64,1326,2014-01-17,3 -Persons,45-64,1228,2014-01-24,4 -Persons,45-64,1249,2014-01-31,5 -Persons,45-64,1246,2014-02-07,6 -Persons,45-64,1196,2014-02-14,7 -Persons,45-64,1191,2014-02-21,8 -Persons,45-64,1240,2014-02-28,9 -Persons,45-64,1170,2014-03-07,10 -Persons,45-64,1276,2014-03-14,11 -Persons,45-64,1225,2014-03-21,12 -Persons,45-64,1206,2014-03-28,13 -Persons,45-64,1174,2014-04-04,14 -Persons,45-64,1160,2014-04-11,15 -Persons,45-64,951,2014-04-18,16 -Persons,45-64,1087,2014-04-25,17 -Persons,45-64,1283,2014-05-02,18 -Persons,45-64,1015,2014-05-09,19 -Persons,45-64,1162,2014-05-16,20 -Persons,45-64,1144,2014-05-23,21 -Persons,45-64,986,2014-05-30,22 -Persons,45-64,1170,2014-06-06,23 -Persons,45-64,1136,2014-06-13,24 -Persons,45-64,1144,2014-06-20,25 -Persons,45-64,1173,2014-06-27,26 -Persons,45-64,1143,2014-07-04,27 -Persons,45-64,1098,2014-07-11,28 -Persons,45-64,1180,2014-07-18,29 -Persons,45-64,1109,2014-07-25,30 -Persons,45-64,1114,2014-08-01,31 -Persons,45-64,1155,2014-08-08,32 -Persons,45-64,1151,2014-08-15,33 -Persons,45-64,1128,2014-08-22,34 -Persons,45-64,988,2014-08-29,35 -Persons,45-64,1167,2014-09-05,36 -Persons,45-64,1146,2014-09-12,37 -Persons,45-64,1137,2014-09-19,38 -Persons,45-64,1097,2014-09-26,39 -Persons,45-64,1113,2014-10-03,40 -Persons,45-64,1158,2014-10-10,41 -Persons,45-64,1158,2014-10-17,42 -Persons,45-64,1122,2014-10-24,43 -Persons,45-64,1119,2014-10-31,44 -Persons,45-64,1153,2014-11-07,45 -Persons,45-64,1156,2014-11-14,46 -Persons,45-64,1092,2014-11-21,47 -Persons,45-64,1224,2014-11-28,48 -Persons,45-64,1194,2014-12-05,49 -Persons,45-64,1202,2014-12-12,50 -Persons,45-64,1258,2014-12-19,51 -Persons,45-64,782,2014-12-26,52 -Persons,65-74,1868,2014-01-03,1 -Persons,65-74,1885,2014-01-10,2 -Persons,65-74,1727,2014-01-17,3 -Persons,65-74,1696,2014-01-24,4 -Persons,65-74,1656,2014-01-31,5 -Persons,65-74,1566,2014-02-07,6 -Persons,65-74,1652,2014-02-14,7 -Persons,65-74,1634,2014-02-21,8 -Persons,65-74,1744,2014-02-28,9 -Persons,65-74,1607,2014-03-07,10 -Persons,65-74,1629,2014-03-14,11 -Persons,65-74,1612,2014-03-21,12 -Persons,65-74,1529,2014-03-28,13 -Persons,65-74,1645,2014-04-04,14 -Persons,65-74,1627,2014-04-11,15 -Persons,65-74,1344,2014-04-18,16 -Persons,65-74,1573,2014-04-25,17 -Persons,65-74,1722,2014-05-02,18 -Persons,65-74,1468,2014-05-09,19 -Persons,65-74,1592,2014-05-16,20 -Persons,65-74,1628,2014-05-23,21 -Persons,65-74,1409,2014-05-30,22 -Persons,65-74,1639,2014-06-06,23 -Persons,65-74,1575,2014-06-13,24 -Persons,65-74,1472,2014-06-20,25 -Persons,65-74,1536,2014-06-27,26 -Persons,65-74,1498,2014-07-04,27 -Persons,65-74,1428,2014-07-11,28 -Persons,65-74,1546,2014-07-18,29 -Persons,65-74,1507,2014-07-25,30 -Persons,65-74,1520,2014-08-01,31 -Persons,65-74,1455,2014-08-08,32 -Persons,65-74,1420,2014-08-15,33 -Persons,65-74,1453,2014-08-22,34 -Persons,65-74,1346,2014-08-29,35 -Persons,65-74,1641,2014-09-05,36 -Persons,65-74,1487,2014-09-12,37 -Persons,65-74,1510,2014-09-19,38 -Persons,65-74,1501,2014-09-26,39 -Persons,65-74,1481,2014-10-03,40 -Persons,65-74,1483,2014-10-10,41 -Persons,65-74,1551,2014-10-17,42 -Persons,65-74,1571,2014-10-24,43 -Persons,65-74,1593,2014-10-31,44 -Persons,65-74,1537,2014-11-07,45 -Persons,65-74,1631,2014-11-14,46 -Persons,65-74,1547,2014-11-21,47 -Persons,65-74,1642,2014-11-28,48 -Persons,65-74,1674,2014-12-05,49 -Persons,65-74,1715,2014-12-12,50 -Persons,65-74,1835,2014-12-19,51 -Persons,65-74,1238,2014-12-26,52 -Persons,75-84,3308,2014-01-03,1 -Persons,75-84,3482,2014-01-10,2 -Persons,75-84,3215,2014-01-17,3 -Persons,75-84,3008,2014-01-24,4 -Persons,75-84,2951,2014-01-31,5 -Persons,75-84,2937,2014-02-07,6 -Persons,75-84,2959,2014-02-14,7 -Persons,75-84,2985,2014-02-21,8 -Persons,75-84,2989,2014-02-28,9 -Persons,75-84,2867,2014-03-07,10 -Persons,75-84,2867,2014-03-14,11 -Persons,75-84,2895,2014-03-21,12 -Persons,75-84,2852,2014-03-28,13 -Persons,75-84,2915,2014-04-04,14 -Persons,75-84,2631,2014-04-11,15 -Persons,75-84,2362,2014-04-18,16 -Persons,75-84,2801,2014-04-25,17 -Persons,75-84,3043,2014-05-02,18 -Persons,75-84,2543,2014-05-09,19 -Persons,75-84,2690,2014-05-16,20 -Persons,75-84,2669,2014-05-23,21 -Persons,75-84,2279,2014-05-30,22 -Persons,75-84,2748,2014-06-06,23 -Persons,75-84,2725,2014-06-13,24 -Persons,75-84,2663,2014-06-20,25 -Persons,75-84,2558,2014-06-27,26 -Persons,75-84,2495,2014-07-04,27 -Persons,75-84,2545,2014-07-11,28 -Persons,75-84,2622,2014-07-18,29 -Persons,75-84,2628,2014-07-25,30 -Persons,75-84,2556,2014-08-01,31 -Persons,75-84,2514,2014-08-08,32 -Persons,75-84,2533,2014-08-15,33 -Persons,75-84,2515,2014-08-22,34 -Persons,75-84,2360,2014-08-29,35 -Persons,75-84,2858,2014-09-05,36 -Persons,75-84,2701,2014-09-12,37 -Persons,75-84,2667,2014-09-19,38 -Persons,75-84,2637,2014-09-26,39 -Persons,75-84,2680,2014-10-03,40 -Persons,75-84,2640,2014-10-10,41 -Persons,75-84,2732,2014-10-17,42 -Persons,75-84,2808,2014-10-24,43 -Persons,75-84,2771,2014-10-31,44 -Persons,75-84,2875,2014-11-07,45 -Persons,75-84,2933,2014-11-14,46 -Persons,75-84,2733,2014-11-21,47 -Persons,75-84,2894,2014-11-28,48 -Persons,75-84,2935,2014-12-05,49 -Persons,75-84,3085,2014-12-12,50 -Persons,75-84,3279,2014-12-19,51 -Persons,75-84,2247,2014-12-26,52 -Persons,85+,4738,2014-01-03,1 -Persons,85+,4739,2014-01-10,2 -Persons,85+,4433,2014-01-17,3 -Persons,85+,4075,2014-01-24,4 -Persons,85+,4014,2014-01-31,5 -Persons,85+,4021,2014-02-07,6 -Persons,85+,3966,2014-02-14,7 -Persons,85+,4220,2014-02-21,8 -Persons,85+,4000,2014-02-28,9 -Persons,85+,3790,2014-03-07,10 -Persons,85+,3816,2014-03-14,11 -Persons,85+,3696,2014-03-21,12 -Persons,85+,3670,2014-03-28,13 -Persons,85+,3823,2014-04-04,14 -Persons,85+,3701,2014-04-11,15 -Persons,85+,3029,2014-04-18,16 -Persons,85+,3544,2014-04-25,17 -Persons,85+,4049,2014-05-02,18 -Persons,85+,3304,2014-05-09,19 -Persons,85+,3709,2014-05-16,20 -Persons,85+,3469,2014-05-23,21 -Persons,85+,3078,2014-05-30,22 -Persons,85+,3608,2014-06-06,23 -Persons,85+,3602,2014-06-13,24 -Persons,85+,3287,2014-06-20,25 -Persons,85+,3311,2014-06-27,26 -Persons,85+,3312,2014-07-04,27 -Persons,85+,3339,2014-07-11,28 -Persons,85+,3424,2014-07-18,29 -Persons,85+,3409,2014-07-25,30 -Persons,85+,3339,2014-08-01,31 -Persons,85+,3302,2014-08-08,32 -Persons,85+,3318,2014-08-15,33 -Persons,85+,3332,2014-08-22,34 -Persons,85+,3032,2014-08-29,35 -Persons,85+,3695,2014-09-05,36 -Persons,85+,3570,2014-09-12,37 -Persons,85+,3459,2014-09-19,38 -Persons,85+,3447,2014-09-26,39 -Persons,85+,3631,2014-10-03,40 -Persons,85+,3535,2014-10-10,41 -Persons,85+,3681,2014-10-17,42 -Persons,85+,3742,2014-10-24,43 -Persons,85+,3715,2014-10-31,44 -Persons,85+,3834,2014-11-07,45 -Persons,85+,3937,2014-11-14,46 -Persons,85+,3729,2014-11-21,47 -Persons,85+,3757,2014-11-28,48 -Persons,85+,4037,2014-12-05,49 -Persons,85+,4180,2014-12-12,50 -Persons,85+,4950,2014-12-19,51 -Persons,85+,3327,2014-12-26,52 -Males,Under 1 year,20,2014-01-03,1 -Males,Under 1 year,26,2014-01-10,2 -Males,Under 1 year,27,2014-01-17,3 -Males,Under 1 year,29,2014-01-24,4 -Males,Under 1 year,27,2014-01-31,5 -Males,Under 1 year,28,2014-02-07,6 -Males,Under 1 year,33,2014-02-14,7 -Males,Under 1 year,31,2014-02-21,8 -Males,Under 1 year,34,2014-02-28,9 -Males,Under 1 year,24,2014-03-07,10 -Males,Under 1 year,27,2014-03-14,11 -Males,Under 1 year,33,2014-03-21,12 -Males,Under 1 year,39,2014-03-28,13 -Males,Under 1 year,19,2014-04-04,14 -Males,Under 1 year,39,2014-04-11,15 -Males,Under 1 year,29,2014-04-18,16 -Males,Under 1 year,33,2014-04-25,17 -Males,Under 1 year,29,2014-05-02,18 -Males,Under 1 year,23,2014-05-09,19 -Males,Under 1 year,23,2014-05-16,20 -Males,Under 1 year,38,2014-05-23,21 -Males,Under 1 year,29,2014-05-30,22 -Males,Under 1 year,36,2014-06-06,23 -Males,Under 1 year,34,2014-06-13,24 -Males,Under 1 year,24,2014-06-20,25 -Males,Under 1 year,23,2014-06-27,26 -Males,Under 1 year,21,2014-07-04,27 -Males,Under 1 year,20,2014-07-11,28 -Males,Under 1 year,21,2014-07-18,29 -Males,Under 1 year,29,2014-07-25,30 -Males,Under 1 year,29,2014-08-01,31 -Males,Under 1 year,28,2014-08-08,32 -Males,Under 1 year,27,2014-08-15,33 -Males,Under 1 year,26,2014-08-22,34 -Males,Under 1 year,25,2014-08-29,35 -Males,Under 1 year,20,2014-09-05,36 -Males,Under 1 year,35,2014-09-12,37 -Males,Under 1 year,37,2014-09-19,38 -Males,Under 1 year,34,2014-09-26,39 -Males,Under 1 year,33,2014-10-03,40 -Males,Under 1 year,32,2014-10-10,41 -Males,Under 1 year,21,2014-10-17,42 -Males,Under 1 year,30,2014-10-24,43 -Males,Under 1 year,34,2014-10-31,44 -Males,Under 1 year,29,2014-11-07,45 -Males,Under 1 year,32,2014-11-14,46 -Males,Under 1 year,24,2014-11-21,47 -Males,Under 1 year,36,2014-11-28,48 -Males,Under 1 year,35,2014-12-05,49 -Males,Under 1 year,21,2014-12-12,50 -Males,Under 1 year,23,2014-12-19,51 -Males,Under 1 year,22,2014-12-26,52 -Males,01-14,12,2014-01-03,1 -Males,01-14,17,2014-01-10,2 -Males,01-14,6,2014-01-17,3 -Males,01-14,12,2014-01-24,4 -Males,01-14,11,2014-01-31,5 -Males,01-14,17,2014-02-07,6 -Males,01-14,15,2014-02-14,7 -Males,01-14,18,2014-02-21,8 -Males,01-14,11,2014-02-28,9 -Males,01-14,11,2014-03-07,10 -Males,01-14,8,2014-03-14,11 -Males,01-14,9,2014-03-21,12 -Males,01-14,9,2014-03-28,13 -Males,01-14,10,2014-04-04,14 -Males,01-14,15,2014-04-11,15 -Males,01-14,12,2014-04-18,16 -Males,01-14,11,2014-04-25,17 -Males,01-14,10,2014-05-02,18 -Males,01-14,10,2014-05-09,19 -Males,01-14,12,2014-05-16,20 -Males,01-14,10,2014-05-23,21 -Males,01-14,11,2014-05-30,22 -Males,01-14,23,2014-06-06,23 -Males,01-14,18,2014-06-13,24 -Males,01-14,9,2014-06-20,25 -Males,01-14,13,2014-06-27,26 -Males,01-14,16,2014-07-04,27 -Males,01-14,19,2014-07-11,28 -Males,01-14,12,2014-07-18,29 -Males,01-14,12,2014-07-25,30 -Males,01-14,10,2014-08-01,31 -Males,01-14,13,2014-08-08,32 -Males,01-14,11,2014-08-15,33 -Males,01-14,10,2014-08-22,34 -Males,01-14,12,2014-08-29,35 -Males,01-14,7,2014-09-05,36 -Males,01-14,13,2014-09-12,37 -Males,01-14,5,2014-09-19,38 -Males,01-14,11,2014-09-26,39 -Males,01-14,15,2014-10-03,40 -Males,01-14,9,2014-10-10,41 -Males,01-14,10,2014-10-17,42 -Males,01-14,8,2014-10-24,43 -Males,01-14,17,2014-10-31,44 -Males,01-14,10,2014-11-07,45 -Males,01-14,4,2014-11-14,46 -Males,01-14,8,2014-11-21,47 -Males,01-14,8,2014-11-28,48 -Males,01-14,10,2014-12-05,49 -Males,01-14,16,2014-12-12,50 -Males,01-14,15,2014-12-19,51 -Males,01-14,10,2014-12-26,52 -Males,15-44,125,2014-01-03,1 -Males,15-44,152,2014-01-10,2 -Males,15-44,175,2014-01-17,3 -Males,15-44,194,2014-01-24,4 -Males,15-44,200,2014-01-31,5 -Males,15-44,193,2014-02-07,6 -Males,15-44,218,2014-02-14,7 -Males,15-44,200,2014-02-21,8 -Males,15-44,196,2014-02-28,9 -Males,15-44,210,2014-03-07,10 -Males,15-44,209,2014-03-14,11 -Males,15-44,215,2014-03-21,12 -Males,15-44,175,2014-03-28,13 -Males,15-44,184,2014-04-04,14 -Males,15-44,203,2014-04-11,15 -Males,15-44,153,2014-04-18,16 -Males,15-44,178,2014-04-25,17 -Males,15-44,220,2014-05-02,18 -Males,15-44,149,2014-05-09,19 -Males,15-44,165,2014-05-16,20 -Males,15-44,199,2014-05-23,21 -Males,15-44,130,2014-05-30,22 -Males,15-44,192,2014-06-06,23 -Males,15-44,194,2014-06-13,24 -Males,15-44,194,2014-06-20,25 -Males,15-44,173,2014-06-27,26 -Males,15-44,162,2014-07-04,27 -Males,15-44,182,2014-07-11,28 -Males,15-44,167,2014-07-18,29 -Males,15-44,145,2014-07-25,30 -Males,15-44,203,2014-08-01,31 -Males,15-44,164,2014-08-08,32 -Males,15-44,190,2014-08-15,33 -Males,15-44,170,2014-08-22,34 -Males,15-44,153,2014-08-29,35 -Males,15-44,145,2014-09-05,36 -Males,15-44,203,2014-09-12,37 -Males,15-44,168,2014-09-19,38 -Males,15-44,190,2014-09-26,39 -Males,15-44,191,2014-10-03,40 -Males,15-44,175,2014-10-10,41 -Males,15-44,172,2014-10-17,42 -Males,15-44,175,2014-10-24,43 -Males,15-44,197,2014-10-31,44 -Males,15-44,183,2014-11-07,45 -Males,15-44,185,2014-11-14,46 -Males,15-44,193,2014-11-21,47 -Males,15-44,212,2014-11-28,48 -Males,15-44,220,2014-12-05,49 -Males,15-44,208,2014-12-12,50 -Males,15-44,184,2014-12-19,51 -Males,15-44,128,2014-12-26,52 -Males,45-64,731,2014-01-03,1 -Males,45-64,831,2014-01-10,2 -Males,45-64,782,2014-01-17,3 -Males,45-64,742,2014-01-24,4 -Males,45-64,765,2014-01-31,5 -Males,45-64,770,2014-02-07,6 -Males,45-64,698,2014-02-14,7 -Males,45-64,705,2014-02-21,8 -Males,45-64,718,2014-02-28,9 -Males,45-64,702,2014-03-07,10 -Males,45-64,771,2014-03-14,11 -Males,45-64,729,2014-03-21,12 -Males,45-64,722,2014-03-28,13 -Males,45-64,700,2014-04-04,14 -Males,45-64,717,2014-04-11,15 -Males,45-64,582,2014-04-18,16 -Males,45-64,633,2014-04-25,17 -Males,45-64,763,2014-05-02,18 -Males,45-64,603,2014-05-09,19 -Males,45-64,694,2014-05-16,20 -Males,45-64,701,2014-05-23,21 -Males,45-64,591,2014-05-30,22 -Males,45-64,698,2014-06-06,23 -Males,45-64,706,2014-06-13,24 -Males,45-64,673,2014-06-20,25 -Males,45-64,719,2014-06-27,26 -Males,45-64,682,2014-07-04,27 -Males,45-64,677,2014-07-11,28 -Males,45-64,713,2014-07-18,29 -Males,45-64,637,2014-07-25,30 -Males,45-64,687,2014-08-01,31 -Males,45-64,691,2014-08-08,32 -Males,45-64,720,2014-08-15,33 -Males,45-64,665,2014-08-22,34 -Males,45-64,566,2014-08-29,35 -Males,45-64,686,2014-09-05,36 -Males,45-64,689,2014-09-12,37 -Males,45-64,665,2014-09-19,38 -Males,45-64,693,2014-09-26,39 -Males,45-64,647,2014-10-03,40 -Males,45-64,701,2014-10-10,41 -Males,45-64,711,2014-10-17,42 -Males,45-64,676,2014-10-24,43 -Males,45-64,649,2014-10-31,44 -Males,45-64,684,2014-11-07,45 -Males,45-64,673,2014-11-14,46 -Males,45-64,651,2014-11-21,47 -Males,45-64,719,2014-11-28,48 -Males,45-64,743,2014-12-05,49 -Males,45-64,689,2014-12-12,50 -Males,45-64,750,2014-12-19,51 -Males,45-64,447,2014-12-26,52 -Males,65-74,1043,2014-01-03,1 -Males,65-74,1089,2014-01-10,2 -Males,65-74,1002,2014-01-17,3 -Males,65-74,977,2014-01-24,4 -Males,65-74,980,2014-01-31,5 -Males,65-74,892,2014-02-07,6 -Males,65-74,981,2014-02-14,7 -Males,65-74,949,2014-02-21,8 -Males,65-74,1043,2014-02-28,9 -Males,65-74,922,2014-03-07,10 -Males,65-74,959,2014-03-14,11 -Males,65-74,955,2014-03-21,12 -Males,65-74,904,2014-03-28,13 -Males,65-74,961,2014-04-04,14 -Males,65-74,922,2014-04-11,15 -Males,65-74,750,2014-04-18,16 -Males,65-74,922,2014-04-25,17 -Males,65-74,1003,2014-05-02,18 -Males,65-74,886,2014-05-09,19 -Males,65-74,940,2014-05-16,20 -Males,65-74,964,2014-05-23,21 -Males,65-74,820,2014-05-30,22 -Males,65-74,977,2014-06-06,23 -Males,65-74,918,2014-06-13,24 -Males,65-74,868,2014-06-20,25 -Males,65-74,897,2014-06-27,26 -Males,65-74,927,2014-07-04,27 -Males,65-74,840,2014-07-11,28 -Males,65-74,924,2014-07-18,29 -Males,65-74,888,2014-07-25,30 -Males,65-74,869,2014-08-01,31 -Males,65-74,842,2014-08-08,32 -Males,65-74,826,2014-08-15,33 -Males,65-74,830,2014-08-22,34 -Males,65-74,761,2014-08-29,35 -Males,65-74,992,2014-09-05,36 -Males,65-74,911,2014-09-12,37 -Males,65-74,931,2014-09-19,38 -Males,65-74,911,2014-09-26,39 -Males,65-74,828,2014-10-03,40 -Males,65-74,854,2014-10-10,41 -Males,65-74,912,2014-10-17,42 -Males,65-74,926,2014-10-24,43 -Males,65-74,952,2014-10-31,44 -Males,65-74,880,2014-11-07,45 -Males,65-74,980,2014-11-14,46 -Males,65-74,919,2014-11-21,47 -Males,65-74,956,2014-11-28,48 -Males,65-74,952,2014-12-05,49 -Males,65-74,959,2014-12-12,50 -Males,65-74,1100,2014-12-19,51 -Males,65-74,690,2014-12-26,52 -Males,75-84,1700,2014-01-03,1 -Males,75-84,1835,2014-01-10,2 -Males,75-84,1659,2014-01-17,3 -Males,75-84,1586,2014-01-24,4 -Males,75-84,1555,2014-01-31,5 -Males,75-84,1518,2014-02-07,6 -Males,75-84,1535,2014-02-14,7 -Males,75-84,1547,2014-02-21,8 -Males,75-84,1588,2014-02-28,9 -Males,75-84,1478,2014-03-07,10 -Males,75-84,1454,2014-03-14,11 -Males,75-84,1479,2014-03-21,12 -Males,75-84,1501,2014-03-28,13 -Males,75-84,1568,2014-04-04,14 -Males,75-84,1402,2014-04-11,15 -Males,75-84,1270,2014-04-18,16 -Males,75-84,1464,2014-04-25,17 -Males,75-84,1583,2014-05-02,18 -Males,75-84,1362,2014-05-09,19 -Males,75-84,1420,2014-05-16,20 -Males,75-84,1415,2014-05-23,21 -Males,75-84,1217,2014-05-30,22 -Males,75-84,1455,2014-06-06,23 -Males,75-84,1481,2014-06-13,24 -Males,75-84,1421,2014-06-20,25 -Males,75-84,1378,2014-06-27,26 -Males,75-84,1310,2014-07-04,27 -Males,75-84,1377,2014-07-11,28 -Males,75-84,1383,2014-07-18,29 -Males,75-84,1374,2014-07-25,30 -Males,75-84,1322,2014-08-01,31 -Males,75-84,1304,2014-08-08,32 -Males,75-84,1354,2014-08-15,33 -Males,75-84,1358,2014-08-22,34 -Males,75-84,1212,2014-08-29,35 -Males,75-84,1498,2014-09-05,36 -Males,75-84,1429,2014-09-12,37 -Males,75-84,1381,2014-09-19,38 -Males,75-84,1364,2014-09-26,39 -Males,75-84,1420,2014-10-03,40 -Males,75-84,1383,2014-10-10,41 -Males,75-84,1447,2014-10-17,42 -Males,75-84,1495,2014-10-24,43 -Males,75-84,1405,2014-10-31,44 -Males,75-84,1568,2014-11-07,45 -Males,75-84,1529,2014-11-14,46 -Males,75-84,1440,2014-11-21,47 -Males,75-84,1515,2014-11-28,48 -Males,75-84,1549,2014-12-05,49 -Males,75-84,1662,2014-12-12,50 -Males,75-84,1679,2014-12-19,51 -Males,75-84,1145,2014-12-26,52 -Males,85+,1767,2014-01-03,1 -Males,85+,1753,2014-01-10,2 -Males,85+,1648,2014-01-17,3 -Males,85+,1524,2014-01-24,4 -Males,85+,1439,2014-01-31,5 -Males,85+,1542,2014-02-07,6 -Males,85+,1505,2014-02-14,7 -Males,85+,1684,2014-02-21,8 -Males,85+,1427,2014-02-28,9 -Males,85+,1407,2014-03-07,10 -Males,85+,1396,2014-03-14,11 -Males,85+,1391,2014-03-21,12 -Males,85+,1392,2014-03-28,13 -Males,85+,1465,2014-04-04,14 -Males,85+,1421,2014-04-11,15 -Males,85+,1145,2014-04-18,16 -Males,85+,1381,2014-04-25,17 -Males,85+,1496,2014-05-02,18 -Males,85+,1264,2014-05-09,19 -Males,85+,1386,2014-05-16,20 -Males,85+,1246,2014-05-23,21 -Males,85+,1153,2014-05-30,22 -Males,85+,1399,2014-06-06,23 -Males,85+,1392,2014-06-13,24 -Males,85+,1278,2014-06-20,25 -Males,85+,1203,2014-06-27,26 -Males,85+,1246,2014-07-04,27 -Males,85+,1256,2014-07-11,28 -Males,85+,1295,2014-07-18,29 -Males,85+,1266,2014-07-25,30 -Males,85+,1261,2014-08-01,31 -Males,85+,1175,2014-08-08,32 -Males,85+,1280,2014-08-15,33 -Males,85+,1221,2014-08-22,34 -Males,85+,1162,2014-08-29,35 -Males,85+,1348,2014-09-05,36 -Males,85+,1378,2014-09-12,37 -Males,85+,1247,2014-09-19,38 -Males,85+,1266,2014-09-26,39 -Males,85+,1379,2014-10-03,40 -Males,85+,1358,2014-10-10,41 -Males,85+,1390,2014-10-17,42 -Males,85+,1387,2014-10-24,43 -Males,85+,1398,2014-10-31,44 -Males,85+,1427,2014-11-07,45 -Males,85+,1467,2014-11-14,46 -Males,85+,1398,2014-11-21,47 -Males,85+,1413,2014-11-28,48 -Males,85+,1512,2014-12-05,49 -Males,85+,1529,2014-12-12,50 -Males,85+,1856,2014-12-19,51 -Males,85+,1205,2014-12-26,52 -Females,Under 1 year,16,2014-01-03,1 -Females,Under 1 year,21,2014-01-10,2 -Females,Under 1 year,40,2014-01-17,3 -Females,Under 1 year,19,2014-01-24,4 -Females,Under 1 year,27,2014-01-31,5 -Females,Under 1 year,19,2014-02-07,6 -Females,Under 1 year,25,2014-02-14,7 -Females,Under 1 year,27,2014-02-21,8 -Females,Under 1 year,36,2014-02-28,9 -Females,Under 1 year,20,2014-03-07,10 -Females,Under 1 year,25,2014-03-14,11 -Females,Under 1 year,21,2014-03-21,12 -Females,Under 1 year,37,2014-03-28,13 -Females,Under 1 year,26,2014-04-04,14 -Females,Under 1 year,20,2014-04-11,15 -Females,Under 1 year,20,2014-04-18,16 -Females,Under 1 year,22,2014-04-25,17 -Females,Under 1 year,20,2014-05-02,18 -Females,Under 1 year,17,2014-05-09,19 -Females,Under 1 year,25,2014-05-16,20 -Females,Under 1 year,27,2014-05-23,21 -Females,Under 1 year,16,2014-05-30,22 -Females,Under 1 year,20,2014-06-06,23 -Females,Under 1 year,24,2014-06-13,24 -Females,Under 1 year,28,2014-06-20,25 -Females,Under 1 year,28,2014-06-27,26 -Females,Under 1 year,17,2014-07-04,27 -Females,Under 1 year,24,2014-07-11,28 -Females,Under 1 year,21,2014-07-18,29 -Females,Under 1 year,28,2014-07-25,30 -Females,Under 1 year,23,2014-08-01,31 -Females,Under 1 year,30,2014-08-08,32 -Females,Under 1 year,30,2014-08-15,33 -Females,Under 1 year,32,2014-08-22,34 -Females,Under 1 year,15,2014-08-29,35 -Females,Under 1 year,30,2014-09-05,36 -Females,Under 1 year,22,2014-09-12,37 -Females,Under 1 year,20,2014-09-19,38 -Females,Under 1 year,22,2014-09-26,39 -Females,Under 1 year,21,2014-10-03,40 -Females,Under 1 year,34,2014-10-10,41 -Females,Under 1 year,28,2014-10-17,42 -Females,Under 1 year,26,2014-10-24,43 -Females,Under 1 year,17,2014-10-31,44 -Females,Under 1 year,18,2014-11-07,45 -Females,Under 1 year,28,2014-11-14,46 -Females,Under 1 year,25,2014-11-21,47 -Females,Under 1 year,28,2014-11-28,48 -Females,Under 1 year,27,2014-12-05,49 -Females,Under 1 year,19,2014-12-12,50 -Females,Under 1 year,27,2014-12-19,51 -Females,Under 1 year,15,2014-12-26,52 -Females,01-14,4,2014-01-03,1 -Females,01-14,8,2014-01-10,2 -Females,01-14,9,2014-01-17,3 -Females,01-14,6,2014-01-24,4 -Females,01-14,10,2014-01-31,5 -Females,01-14,7,2014-02-07,6 -Females,01-14,12,2014-02-14,7 -Females,01-14,10,2014-02-21,8 -Females,01-14,11,2014-02-28,9 -Females,01-14,9,2014-03-07,10 -Females,01-14,18,2014-03-14,11 -Females,01-14,6,2014-03-21,12 -Females,01-14,10,2014-03-28,13 -Females,01-14,8,2014-04-04,14 -Females,01-14,8,2014-04-11,15 -Females,01-14,6,2014-04-18,16 -Females,01-14,9,2014-04-25,17 -Females,01-14,13,2014-05-02,18 -Females,01-14,7,2014-05-09,19 -Females,01-14,8,2014-05-16,20 -Females,01-14,7,2014-05-23,21 -Females,01-14,10,2014-05-30,22 -Females,01-14,9,2014-06-06,23 -Females,01-14,4,2014-06-13,24 -Females,01-14,6,2014-06-20,25 -Females,01-14,4,2014-06-27,26 -Females,01-14,10,2014-07-04,27 -Females,01-14,13,2014-07-11,28 -Females,01-14,12,2014-07-18,29 -Females,01-14,7,2014-07-25,30 -Females,01-14,10,2014-08-01,31 -Females,01-14,9,2014-08-08,32 -Females,01-14,7,2014-08-15,33 -Females,01-14,5,2014-08-22,34 -Females,01-14,3,2014-08-29,35 -Females,01-14,6,2014-09-05,36 -Females,01-14,10,2014-09-12,37 -Females,01-14,8,2014-09-19,38 -Females,01-14,6,2014-09-26,39 -Females,01-14,7,2014-10-03,40 -Females,01-14,12,2014-10-10,41 -Females,01-14,9,2014-10-17,42 -Females,01-14,11,2014-10-24,43 -Females,01-14,8,2014-10-31,44 -Females,01-14,6,2014-11-07,45 -Females,01-14,8,2014-11-14,46 -Females,01-14,8,2014-11-21,47 -Females,01-14,10,2014-11-28,48 -Females,01-14,16,2014-12-05,49 -Females,01-14,8,2014-12-12,50 -Females,01-14,9,2014-12-19,51 -Females,01-14,6,2014-12-26,52 -Females,15-44,88,2014-01-03,1 -Females,15-44,124,2014-01-10,2 -Females,15-44,103,2014-01-17,3 -Females,15-44,107,2014-01-24,4 -Females,15-44,113,2014-01-31,5 -Females,15-44,110,2014-02-07,6 -Females,15-44,110,2014-02-14,7 -Females,15-44,110,2014-02-21,8 -Females,15-44,116,2014-02-28,9 -Females,15-44,119,2014-03-07,10 -Females,15-44,123,2014-03-14,11 -Females,15-44,115,2014-03-21,12 -Females,15-44,95,2014-03-28,13 -Females,15-44,126,2014-04-04,14 -Females,15-44,96,2014-04-11,15 -Females,15-44,90,2014-04-18,16 -Females,15-44,99,2014-04-25,17 -Females,15-44,136,2014-05-02,18 -Females,15-44,77,2014-05-09,19 -Females,15-44,126,2014-05-16,20 -Females,15-44,120,2014-05-23,21 -Females,15-44,80,2014-05-30,22 -Females,15-44,109,2014-06-06,23 -Females,15-44,98,2014-06-13,24 -Females,15-44,119,2014-06-20,25 -Females,15-44,112,2014-06-27,26 -Females,15-44,89,2014-07-04,27 -Females,15-44,114,2014-07-11,28 -Females,15-44,109,2014-07-18,29 -Females,15-44,89,2014-07-25,30 -Females,15-44,109,2014-08-01,31 -Females,15-44,84,2014-08-08,32 -Females,15-44,103,2014-08-15,33 -Females,15-44,98,2014-08-22,34 -Females,15-44,93,2014-08-29,35 -Females,15-44,102,2014-09-05,36 -Females,15-44,97,2014-09-12,37 -Females,15-44,94,2014-09-19,38 -Females,15-44,102,2014-09-26,39 -Females,15-44,97,2014-10-03,40 -Females,15-44,95,2014-10-10,41 -Females,15-44,101,2014-10-17,42 -Females,15-44,110,2014-10-24,43 -Females,15-44,115,2014-10-31,44 -Females,15-44,106,2014-11-07,45 -Females,15-44,115,2014-11-14,46 -Females,15-44,95,2014-11-21,47 -Females,15-44,109,2014-11-28,48 -Females,15-44,119,2014-12-05,49 -Females,15-44,92,2014-12-12,50 -Females,15-44,101,2014-12-19,51 -Females,15-44,61,2014-12-26,52 -Females,45-64,538,2014-01-03,1 -Females,45-64,560,2014-01-10,2 -Females,45-64,544,2014-01-17,3 -Females,45-64,486,2014-01-24,4 -Females,45-64,484,2014-01-31,5 -Females,45-64,476,2014-02-07,6 -Females,45-64,498,2014-02-14,7 -Females,45-64,486,2014-02-21,8 -Females,45-64,522,2014-02-28,9 -Females,45-64,468,2014-03-07,10 -Females,45-64,505,2014-03-14,11 -Females,45-64,496,2014-03-21,12 -Females,45-64,484,2014-03-28,13 -Females,45-64,474,2014-04-04,14 -Females,45-64,443,2014-04-11,15 -Females,45-64,369,2014-04-18,16 -Females,45-64,454,2014-04-25,17 -Females,45-64,520,2014-05-02,18 -Females,45-64,412,2014-05-09,19 -Females,45-64,468,2014-05-16,20 -Females,45-64,443,2014-05-23,21 -Females,45-64,395,2014-05-30,22 -Females,45-64,472,2014-06-06,23 -Females,45-64,430,2014-06-13,24 -Females,45-64,471,2014-06-20,25 -Females,45-64,454,2014-06-27,26 -Females,45-64,461,2014-07-04,27 -Females,45-64,421,2014-07-11,28 -Females,45-64,467,2014-07-18,29 -Females,45-64,472,2014-07-25,30 -Females,45-64,427,2014-08-01,31 -Females,45-64,464,2014-08-08,32 -Females,45-64,431,2014-08-15,33 -Females,45-64,463,2014-08-22,34 -Females,45-64,422,2014-08-29,35 -Females,45-64,481,2014-09-05,36 -Females,45-64,457,2014-09-12,37 -Females,45-64,472,2014-09-19,38 -Females,45-64,404,2014-09-26,39 -Females,45-64,466,2014-10-03,40 -Females,45-64,457,2014-10-10,41 -Females,45-64,447,2014-10-17,42 -Females,45-64,446,2014-10-24,43 -Females,45-64,470,2014-10-31,44 -Females,45-64,469,2014-11-07,45 -Females,45-64,483,2014-11-14,46 -Females,45-64,441,2014-11-21,47 -Females,45-64,505,2014-11-28,48 -Females,45-64,451,2014-12-05,49 -Females,45-64,513,2014-12-12,50 -Females,45-64,508,2014-12-19,51 -Females,45-64,335,2014-12-26,52 -Females,65-74,825,2014-01-03,1 -Females,65-74,796,2014-01-10,2 -Females,65-74,725,2014-01-17,3 -Females,65-74,719,2014-01-24,4 -Females,65-74,676,2014-01-31,5 -Females,65-74,674,2014-02-07,6 -Females,65-74,671,2014-02-14,7 -Females,65-74,685,2014-02-21,8 -Females,65-74,701,2014-02-28,9 -Females,65-74,685,2014-03-07,10 -Females,65-74,670,2014-03-14,11 -Females,65-74,657,2014-03-21,12 -Females,65-74,625,2014-03-28,13 -Females,65-74,684,2014-04-04,14 -Females,65-74,705,2014-04-11,15 -Females,65-74,594,2014-04-18,16 -Females,65-74,651,2014-04-25,17 -Females,65-74,719,2014-05-02,18 -Females,65-74,582,2014-05-09,19 -Females,65-74,652,2014-05-16,20 -Females,65-74,664,2014-05-23,21 -Females,65-74,589,2014-05-30,22 -Females,65-74,662,2014-06-06,23 -Females,65-74,657,2014-06-13,24 -Females,65-74,604,2014-06-20,25 -Females,65-74,639,2014-06-27,26 -Females,65-74,571,2014-07-04,27 -Females,65-74,588,2014-07-11,28 -Females,65-74,622,2014-07-18,29 -Females,65-74,619,2014-07-25,30 -Females,65-74,651,2014-08-01,31 -Females,65-74,613,2014-08-08,32 -Females,65-74,594,2014-08-15,33 -Females,65-74,623,2014-08-22,34 -Females,65-74,585,2014-08-29,35 -Females,65-74,649,2014-09-05,36 -Females,65-74,576,2014-09-12,37 -Females,65-74,579,2014-09-19,38 -Females,65-74,590,2014-09-26,39 -Females,65-74,653,2014-10-03,40 -Females,65-74,629,2014-10-10,41 -Females,65-74,639,2014-10-17,42 -Females,65-74,645,2014-10-24,43 -Females,65-74,641,2014-10-31,44 -Females,65-74,657,2014-11-07,45 -Females,65-74,651,2014-11-14,46 -Females,65-74,628,2014-11-21,47 -Females,65-74,686,2014-11-28,48 -Females,65-74,722,2014-12-05,49 -Females,65-74,756,2014-12-12,50 -Females,65-74,735,2014-12-19,51 -Females,65-74,548,2014-12-26,52 -Females,75-84,1608,2014-01-03,1 -Females,75-84,1647,2014-01-10,2 -Females,75-84,1556,2014-01-17,3 -Females,75-84,1422,2014-01-24,4 -Females,75-84,1396,2014-01-31,5 -Females,75-84,1419,2014-02-07,6 -Females,75-84,1424,2014-02-14,7 -Females,75-84,1438,2014-02-21,8 -Females,75-84,1401,2014-02-28,9 -Females,75-84,1389,2014-03-07,10 -Females,75-84,1413,2014-03-14,11 -Females,75-84,1416,2014-03-21,12 -Females,75-84,1351,2014-03-28,13 -Females,75-84,1347,2014-04-04,14 -Females,75-84,1229,2014-04-11,15 -Females,75-84,1092,2014-04-18,16 -Females,75-84,1337,2014-04-25,17 -Females,75-84,1460,2014-05-02,18 -Females,75-84,1181,2014-05-09,19 -Females,75-84,1270,2014-05-16,20 -Females,75-84,1254,2014-05-23,21 -Females,75-84,1062,2014-05-30,22 -Females,75-84,1293,2014-06-06,23 -Females,75-84,1244,2014-06-13,24 -Females,75-84,1242,2014-06-20,25 -Females,75-84,1180,2014-06-27,26 -Females,75-84,1185,2014-07-04,27 -Females,75-84,1168,2014-07-11,28 -Females,75-84,1239,2014-07-18,29 -Females,75-84,1254,2014-07-25,30 -Females,75-84,1234,2014-08-01,31 -Females,75-84,1210,2014-08-08,32 -Females,75-84,1179,2014-08-15,33 -Females,75-84,1157,2014-08-22,34 -Females,75-84,1148,2014-08-29,35 -Females,75-84,1360,2014-09-05,36 -Females,75-84,1272,2014-09-12,37 -Females,75-84,1286,2014-09-19,38 -Females,75-84,1273,2014-09-26,39 -Females,75-84,1260,2014-10-03,40 -Females,75-84,1257,2014-10-10,41 -Females,75-84,1285,2014-10-17,42 -Females,75-84,1313,2014-10-24,43 -Females,75-84,1366,2014-10-31,44 -Females,75-84,1307,2014-11-07,45 -Females,75-84,1404,2014-11-14,46 -Females,75-84,1293,2014-11-21,47 -Females,75-84,1379,2014-11-28,48 -Females,75-84,1386,2014-12-05,49 -Females,75-84,1423,2014-12-12,50 -Females,75-84,1600,2014-12-19,51 -Females,75-84,1102,2014-12-26,52 -Females,85+,2971,2014-01-03,1 -Females,85+,2986,2014-01-10,2 -Females,85+,2785,2014-01-17,3 -Females,85+,2551,2014-01-24,4 -Females,85+,2575,2014-01-31,5 -Females,85+,2479,2014-02-07,6 -Females,85+,2461,2014-02-14,7 -Females,85+,2536,2014-02-21,8 -Females,85+,2573,2014-02-28,9 -Females,85+,2383,2014-03-07,10 -Females,85+,2420,2014-03-14,11 -Females,85+,2305,2014-03-21,12 -Females,85+,2278,2014-03-28,13 -Females,85+,2358,2014-04-04,14 -Females,85+,2280,2014-04-11,15 -Females,85+,1884,2014-04-18,16 -Females,85+,2163,2014-04-25,17 -Females,85+,2553,2014-05-02,18 -Females,85+,2040,2014-05-09,19 -Females,85+,2323,2014-05-16,20 -Females,85+,2223,2014-05-23,21 -Females,85+,1925,2014-05-30,22 -Females,85+,2209,2014-06-06,23 -Females,85+,2210,2014-06-13,24 -Females,85+,2009,2014-06-20,25 -Females,85+,2108,2014-06-27,26 -Females,85+,2066,2014-07-04,27 -Females,85+,2083,2014-07-11,28 -Females,85+,2129,2014-07-18,29 -Females,85+,2143,2014-07-25,30 -Females,85+,2078,2014-08-01,31 -Females,85+,2127,2014-08-08,32 -Females,85+,2038,2014-08-15,33 -Females,85+,2111,2014-08-22,34 -Females,85+,1870,2014-08-29,35 -Females,85+,2347,2014-09-05,36 -Females,85+,2192,2014-09-12,37 -Females,85+,2212,2014-09-19,38 -Females,85+,2181,2014-09-26,39 -Females,85+,2252,2014-10-03,40 -Females,85+,2177,2014-10-10,41 -Females,85+,2291,2014-10-17,42 -Females,85+,2355,2014-10-24,43 -Females,85+,2317,2014-10-31,44 -Females,85+,2407,2014-11-07,45 -Females,85+,2470,2014-11-14,46 -Females,85+,2331,2014-11-21,47 -Females,85+,2344,2014-11-28,48 -Females,85+,2525,2014-12-05,49 -Females,85+,2651,2014-12-12,50 -Females,85+,3094,2014-12-19,51 -Females,85+,2122,2014-12-26,52 -Region,North East,554,2014-01-03,1 -Region,North East,615,2014-01-10,2 -Region,North East,547,2014-01-17,3 -Region,North East,573,2014-01-24,4 -Region,North East,550,2014-01-31,5 -Region,North East,537,2014-02-07,6 -Region,North East,538,2014-02-14,7 -Region,North East,590,2014-02-21,8 -Region,North East,526,2014-02-28,9 -Region,North East,536,2014-03-07,10 -Region,North East,522,2014-03-14,11 -Region,North East,516,2014-03-21,12 -Region,North East,516,2014-03-28,13 -Region,North East,562,2014-04-04,14 -Region,North East,502,2014-04-11,15 -Region,North East,443,2014-04-18,16 -Region,North East,458,2014-04-25,17 -Region,North East,589,2014-05-02,18 -Region,North East,456,2014-05-09,19 -Region,North East,482,2014-05-16,20 -Region,North East,505,2014-05-23,21 -Region,North East,465,2014-05-30,22 -Region,North East,463,2014-06-06,23 -Region,North East,471,2014-06-13,24 -Region,North East,485,2014-06-20,25 -Region,North East,505,2014-06-27,26 -Region,North East,451,2014-07-04,27 -Region,North East,487,2014-07-11,28 -Region,North East,514,2014-07-18,29 -Region,North East,477,2014-07-25,30 -Region,North East,482,2014-08-01,31 -Region,North East,440,2014-08-08,32 -Region,North East,505,2014-08-15,33 -Region,North East,497,2014-08-22,34 -Region,North East,468,2014-08-29,35 -Region,North East,530,2014-09-05,36 -Region,North East,487,2014-09-12,37 -Region,North East,505,2014-09-19,38 -Region,North East,525,2014-09-26,39 -Region,North East,525,2014-10-03,40 -Region,North East,568,2014-10-10,41 -Region,North East,498,2014-10-17,42 -Region,North East,472,2014-10-24,43 -Region,North East,496,2014-10-31,44 -Region,North East,488,2014-11-07,45 -Region,North East,523,2014-11-14,46 -Region,North East,471,2014-11-21,47 -Region,North East,517,2014-11-28,48 -Region,North East,520,2014-12-05,49 -Region,North East,575,2014-12-12,50 -Region,North East,633,2014-12-19,51 -Region,North East,438,2014-12-26,52 -Region,North West,1581,2014-01-03,1 -Region,North West,1549,2014-01-10,2 -Region,North West,1520,2014-01-17,3 -Region,North West,1377,2014-01-24,4 -Region,North West,1385,2014-01-31,5 -Region,North West,1431,2014-02-07,6 -Region,North West,1453,2014-02-14,7 -Region,North West,1408,2014-02-21,8 -Region,North West,1428,2014-02-28,9 -Region,North West,1342,2014-03-07,10 -Region,North West,1400,2014-03-14,11 -Region,North West,1312,2014-03-21,12 -Region,North West,1352,2014-03-28,13 -Region,North West,1354,2014-04-04,14 -Region,North West,1279,2014-04-11,15 -Region,North West,1078,2014-04-18,16 -Region,North West,1348,2014-04-25,17 -Region,North West,1367,2014-05-02,18 -Region,North West,1163,2014-05-09,19 -Region,North West,1235,2014-05-16,20 -Region,North West,1276,2014-05-23,21 -Region,North West,1158,2014-05-30,22 -Region,North West,1263,2014-06-06,23 -Region,North West,1282,2014-06-13,24 -Region,North West,1241,2014-06-20,25 -Region,North West,1201,2014-06-27,26 -Region,North West,1189,2014-07-04,27 -Region,North West,1235,2014-07-11,28 -Region,North West,1242,2014-07-18,29 -Region,North West,1220,2014-07-25,30 -Region,North West,1176,2014-08-01,31 -Region,North West,1179,2014-08-08,32 -Region,North West,1174,2014-08-15,33 -Region,North West,1220,2014-08-22,34 -Region,North West,1149,2014-08-29,35 -Region,North West,1299,2014-09-05,36 -Region,North West,1229,2014-09-12,37 -Region,North West,1241,2014-09-19,38 -Region,North West,1171,2014-09-26,39 -Region,North West,1261,2014-10-03,40 -Region,North West,1187,2014-10-10,41 -Region,North West,1290,2014-10-17,42 -Region,North West,1259,2014-10-24,43 -Region,North West,1300,2014-10-31,44 -Region,North West,1290,2014-11-07,45 -Region,North West,1395,2014-11-14,46 -Region,North West,1261,2014-11-21,47 -Region,North West,1330,2014-11-28,48 -Region,North West,1443,2014-12-05,49 -Region,North West,1475,2014-12-12,50 -Region,North West,1591,2014-12-19,51 -Region,North West,1101,2014-12-26,52 -Region,Yorkshire and The Humber,1139,2014-01-03,1 -Region,Yorkshire and The Humber,1151,2014-01-10,2 -Region,Yorkshire and The Humber,1077,2014-01-17,3 -Region,Yorkshire and The Humber,1058,2014-01-24,4 -Region,Yorkshire and The Humber,1020,2014-01-31,5 -Region,Yorkshire and The Humber,976,2014-02-07,6 -Region,Yorkshire and The Humber,999,2014-02-14,7 -Region,Yorkshire and The Humber,1016,2014-02-21,8 -Region,Yorkshire and The Humber,983,2014-02-28,9 -Region,Yorkshire and The Humber,962,2014-03-07,10 -Region,Yorkshire and The Humber,1000,2014-03-14,11 -Region,Yorkshire and The Humber,959,2014-03-21,12 -Region,Yorkshire and The Humber,896,2014-03-28,13 -Region,Yorkshire and The Humber,940,2014-04-04,14 -Region,Yorkshire and The Humber,921,2014-04-11,15 -Region,Yorkshire and The Humber,775,2014-04-18,16 -Region,Yorkshire and The Humber,919,2014-04-25,17 -Region,Yorkshire and The Humber,1049,2014-05-02,18 -Region,Yorkshire and The Humber,835,2014-05-09,19 -Region,Yorkshire and The Humber,960,2014-05-16,20 -Region,Yorkshire and The Humber,898,2014-05-23,21 -Region,Yorkshire and The Humber,791,2014-05-30,22 -Region,Yorkshire and The Humber,925,2014-06-06,23 -Region,Yorkshire and The Humber,888,2014-06-13,24 -Region,Yorkshire and The Humber,826,2014-06-20,25 -Region,Yorkshire and The Humber,904,2014-06-27,26 -Region,Yorkshire and The Humber,906,2014-07-04,27 -Region,Yorkshire and The Humber,829,2014-07-11,28 -Region,Yorkshire and The Humber,905,2014-07-18,29 -Region,Yorkshire and The Humber,806,2014-07-25,30 -Region,Yorkshire and The Humber,870,2014-08-01,31 -Region,Yorkshire and The Humber,854,2014-08-08,32 -Region,Yorkshire and The Humber,862,2014-08-15,33 -Region,Yorkshire and The Humber,877,2014-08-22,34 -Region,Yorkshire and The Humber,831,2014-08-29,35 -Region,Yorkshire and The Humber,1003,2014-09-05,36 -Region,Yorkshire and The Humber,899,2014-09-12,37 -Region,Yorkshire and The Humber,901,2014-09-19,38 -Region,Yorkshire and The Humber,897,2014-09-26,39 -Region,Yorkshire and The Humber,888,2014-10-03,40 -Region,Yorkshire and The Humber,891,2014-10-10,41 -Region,Yorkshire and The Humber,979,2014-10-17,42 -Region,Yorkshire and The Humber,937,2014-10-24,43 -Region,Yorkshire and The Humber,940,2014-10-31,44 -Region,Yorkshire and The Humber,960,2014-11-07,45 -Region,Yorkshire and The Humber,948,2014-11-14,46 -Region,Yorkshire and The Humber,949,2014-11-21,47 -Region,Yorkshire and The Humber,982,2014-11-28,48 -Region,Yorkshire and The Humber,1018,2014-12-05,49 -Region,Yorkshire and The Humber,1069,2014-12-12,50 -Region,Yorkshire and The Humber,1176,2014-12-19,51 -Region,Yorkshire and The Humber,833,2014-12-26,52 -Region,East Midlands,952,2014-01-03,1 -Region,East Midlands,989,2014-01-10,2 -Region,East Midlands,894,2014-01-17,3 -Region,East Midlands,872,2014-01-24,4 -Region,East Midlands,869,2014-01-31,5 -Region,East Midlands,839,2014-02-07,6 -Region,East Midlands,862,2014-02-14,7 -Region,East Midlands,864,2014-02-21,8 -Region,East Midlands,912,2014-02-28,9 -Region,East Midlands,801,2014-03-07,10 -Region,East Midlands,872,2014-03-14,11 -Region,East Midlands,833,2014-03-21,12 -Region,East Midlands,836,2014-03-28,13 -Region,East Midlands,851,2014-04-04,14 -Region,East Midlands,772,2014-04-11,15 -Region,East Midlands,654,2014-04-18,16 -Region,East Midlands,818,2014-04-25,17 -Region,East Midlands,832,2014-05-02,18 -Region,East Midlands,752,2014-05-09,19 -Region,East Midlands,793,2014-05-16,20 -Region,East Midlands,745,2014-05-23,21 -Region,East Midlands,686,2014-05-30,22 -Region,East Midlands,826,2014-06-06,23 -Region,East Midlands,792,2014-06-13,24 -Region,East Midlands,794,2014-06-20,25 -Region,East Midlands,774,2014-06-27,26 -Region,East Midlands,748,2014-07-04,27 -Region,East Midlands,771,2014-07-11,28 -Region,East Midlands,789,2014-07-18,29 -Region,East Midlands,719,2014-07-25,30 -Region,East Midlands,705,2014-08-01,31 -Region,East Midlands,720,2014-08-08,32 -Region,East Midlands,761,2014-08-15,33 -Region,East Midlands,777,2014-08-22,34 -Region,East Midlands,623,2014-08-29,35 -Region,East Midlands,745,2014-09-05,36 -Region,East Midlands,762,2014-09-12,37 -Region,East Midlands,747,2014-09-19,38 -Region,East Midlands,736,2014-09-26,39 -Region,East Midlands,769,2014-10-03,40 -Region,East Midlands,809,2014-10-10,41 -Region,East Midlands,785,2014-10-17,42 -Region,East Midlands,775,2014-10-24,43 -Region,East Midlands,782,2014-10-31,44 -Region,East Midlands,856,2014-11-07,45 -Region,East Midlands,833,2014-11-14,46 -Region,East Midlands,802,2014-11-21,47 -Region,East Midlands,804,2014-11-28,48 -Region,East Midlands,797,2014-12-05,49 -Region,East Midlands,899,2014-12-12,50 -Region,East Midlands,1003,2014-12-19,51 -Region,East Midlands,660,2014-12-26,52 -Region,West Midlands,1212,2014-01-03,1 -Region,West Midlands,1304,2014-01-10,2 -Region,West Midlands,1181,2014-01-17,3 -Region,West Midlands,1084,2014-01-24,4 -Region,West Midlands,1114,2014-01-31,5 -Region,West Midlands,1039,2014-02-07,6 -Region,West Midlands,1105,2014-02-14,7 -Region,West Midlands,1024,2014-02-21,8 -Region,West Midlands,1098,2014-02-28,9 -Region,West Midlands,1049,2014-03-07,10 -Region,West Midlands,998,2014-03-14,11 -Region,West Midlands,1057,2014-03-21,12 -Region,West Midlands,964,2014-03-28,13 -Region,West Midlands,1024,2014-04-04,14 -Region,West Midlands,1000,2014-04-11,15 -Region,West Midlands,862,2014-04-18,16 -Region,West Midlands,919,2014-04-25,17 -Region,West Midlands,1081,2014-05-02,18 -Region,West Midlands,860,2014-05-09,19 -Region,West Midlands,1002,2014-05-16,20 -Region,West Midlands,919,2014-05-23,21 -Region,West Midlands,748,2014-05-30,22 -Region,West Midlands,997,2014-06-06,23 -Region,West Midlands,982,2014-06-13,24 -Region,West Midlands,893,2014-06-20,25 -Region,West Midlands,927,2014-06-27,26 -Region,West Midlands,898,2014-07-04,27 -Region,West Midlands,848,2014-07-11,28 -Region,West Midlands,927,2014-07-18,29 -Region,West Midlands,897,2014-07-25,30 -Region,West Midlands,939,2014-08-01,31 -Region,West Midlands,954,2014-08-08,32 -Region,West Midlands,865,2014-08-15,33 -Region,West Midlands,885,2014-08-22,34 -Region,West Midlands,824,2014-08-29,35 -Region,West Midlands,1026,2014-09-05,36 -Region,West Midlands,963,2014-09-12,37 -Region,West Midlands,962,2014-09-19,38 -Region,West Midlands,941,2014-09-26,39 -Region,West Midlands,969,2014-10-03,40 -Region,West Midlands,975,2014-10-10,41 -Region,West Midlands,920,2014-10-17,42 -Region,West Midlands,1014,2014-10-24,43 -Region,West Midlands,974,2014-10-31,44 -Region,West Midlands,992,2014-11-07,45 -Region,West Midlands,1054,2014-11-14,46 -Region,West Midlands,963,2014-11-21,47 -Region,West Midlands,1025,2014-11-28,48 -Region,West Midlands,1034,2014-12-05,49 -Region,West Midlands,1065,2014-12-12,50 -Region,West Midlands,1204,2014-12-19,51 -Region,West Midlands,743,2014-12-26,52 -Region,East,1164,2014-01-03,1 -Region,East,1297,2014-01-10,2 -Region,East,1183,2014-01-17,3 -Region,East,1076,2014-01-24,4 -Region,East,1057,2014-01-31,5 -Region,East,1121,2014-02-07,6 -Region,East,1081,2014-02-14,7 -Region,East,1118,2014-02-21,8 -Region,East,1115,2014-02-28,9 -Region,East,1042,2014-03-07,10 -Region,East,1005,2014-03-14,11 -Region,East,997,2014-03-21,12 -Region,East,1040,2014-03-28,13 -Region,East,1100,2014-04-04,14 -Region,East,985,2014-04-11,15 -Region,East,876,2014-04-18,16 -Region,East,950,2014-04-25,17 -Region,East,1095,2014-05-02,18 -Region,East,951,2014-05-09,19 -Region,East,1051,2014-05-16,20 -Region,East,912,2014-05-23,21 -Region,East,775,2014-05-30,22 -Region,East,1064,2014-06-06,23 -Region,East,961,2014-06-13,24 -Region,East,1010,2014-06-20,25 -Region,East,955,2014-06-27,26 -Region,East,898,2014-07-04,27 -Region,East,1013,2014-07-11,28 -Region,East,933,2014-07-18,29 -Region,East,1006,2014-07-25,30 -Region,East,970,2014-08-01,31 -Region,East,917,2014-08-08,32 -Region,East,943,2014-08-15,33 -Region,East,920,2014-08-22,34 -Region,East,809,2014-08-29,35 -Region,East,1054,2014-09-05,36 -Region,East,999,2014-09-12,37 -Region,East,968,2014-09-19,38 -Region,East,983,2014-09-26,39 -Region,East,989,2014-10-03,40 -Region,East,983,2014-10-10,41 -Region,East,1023,2014-10-17,42 -Region,East,1024,2014-10-24,43 -Region,East,950,2014-10-31,44 -Region,East,1118,2014-11-07,45 -Region,East,1095,2014-11-14,46 -Region,East,992,2014-11-21,47 -Region,East,1056,2014-11-28,48 -Region,East,1128,2014-12-05,49 -Region,East,1080,2014-12-12,50 -Region,East,1215,2014-12-19,51 -Region,East,804,2014-12-26,52 -Region,London,1129,2014-01-03,1 -Region,London,1103,2014-01-10,2 -Region,London,962,2014-01-17,3 -Region,London,982,2014-01-24,4 -Region,London,967,2014-01-31,5 -Region,London,941,2014-02-07,6 -Region,London,952,2014-02-14,7 -Region,London,950,2014-02-21,8 -Region,London,982,2014-02-28,9 -Region,London,949,2014-03-07,10 -Region,London,985,2014-03-14,11 -Region,London,953,2014-03-21,12 -Region,London,937,2014-03-28,13 -Region,London,969,2014-04-04,14 -Region,London,884,2014-04-11,15 -Region,London,727,2014-04-18,16 -Region,London,910,2014-04-25,17 -Region,London,975,2014-05-02,18 -Region,London,810,2014-05-09,19 -Region,London,887,2014-05-16,20 -Region,London,946,2014-05-23,21 -Region,London,804,2014-05-30,22 -Region,London,890,2014-06-06,23 -Region,London,869,2014-06-13,24 -Region,London,825,2014-06-20,25 -Region,London,839,2014-06-27,26 -Region,London,807,2014-07-04,27 -Region,London,804,2014-07-11,28 -Region,London,826,2014-07-18,29 -Region,London,884,2014-07-25,30 -Region,London,875,2014-08-01,31 -Region,London,836,2014-08-08,32 -Region,London,836,2014-08-15,33 -Region,London,847,2014-08-22,34 -Region,London,717,2014-08-29,35 -Region,London,923,2014-09-05,36 -Region,London,893,2014-09-12,37 -Region,London,873,2014-09-19,38 -Region,London,832,2014-09-26,39 -Region,London,871,2014-10-03,40 -Region,London,804,2014-10-10,41 -Region,London,869,2014-10-17,42 -Region,London,893,2014-10-24,43 -Region,London,1016,2014-10-31,44 -Region,London,884,2014-11-07,45 -Region,London,973,2014-11-14,46 -Region,London,860,2014-11-21,47 -Region,London,995,2014-11-28,48 -Region,London,1001,2014-12-05,49 -Region,London,1016,2014-12-12,50 -Region,London,1139,2014-12-19,51 -Region,London,773,2014-12-26,52 -Region,South East,1739,2014-01-03,1 -Region,South East,1897,2014-01-10,2 -Region,South East,1732,2014-01-17,3 -Region,South East,1589,2014-01-24,4 -Region,South East,1603,2014-01-31,5 -Region,South East,1517,2014-02-07,6 -Region,South East,1497,2014-02-14,7 -Region,South East,1629,2014-02-21,8 -Region,South East,1608,2014-02-28,9 -Region,South East,1495,2014-03-07,10 -Region,South East,1487,2014-03-14,11 -Region,South East,1580,2014-03-21,12 -Region,South East,1466,2014-03-28,13 -Region,South East,1484,2014-04-04,14 -Region,South East,1510,2014-04-11,15 -Region,South East,1188,2014-04-18,16 -Region,South East,1441,2014-04-25,17 -Region,South East,1670,2014-05-02,18 -Region,South East,1312,2014-05-09,19 -Region,South East,1511,2014-05-16,20 -Region,South East,1416,2014-05-23,21 -Region,South East,1261,2014-05-30,22 -Region,South East,1536,2014-06-06,23 -Region,South East,1522,2014-06-13,24 -Region,South East,1341,2014-06-20,25 -Region,South East,1314,2014-06-27,26 -Region,South East,1391,2014-07-04,27 -Region,South East,1311,2014-07-11,28 -Region,South East,1419,2014-07-18,29 -Region,South East,1381,2014-07-25,30 -Region,South East,1399,2014-08-01,31 -Region,South East,1360,2014-08-08,32 -Region,South East,1338,2014-08-15,33 -Region,South East,1277,2014-08-22,34 -Region,South East,1220,2014-08-29,35 -Region,South East,1467,2014-09-05,36 -Region,South East,1448,2014-09-12,37 -Region,South East,1315,2014-09-19,38 -Region,South East,1431,2014-09-26,39 -Region,South East,1435,2014-10-03,40 -Region,South East,1396,2014-10-10,41 -Region,South East,1397,2014-10-17,42 -Region,South East,1525,2014-10-24,43 -Region,South East,1399,2014-10-31,44 -Region,South East,1541,2014-11-07,45 -Region,South East,1571,2014-11-14,46 -Region,South East,1521,2014-11-21,47 -Region,South East,1578,2014-11-28,48 -Region,South East,1573,2014-12-05,49 -Region,South East,1541,2014-12-12,50 -Region,South East,1707,2014-12-19,51 -Region,South East,1155,2014-12-26,52 -Region,South West,1208,2014-01-03,1 -Region,South West,1187,2014-01-10,2 -Region,South West,1235,2014-01-17,3 -Region,South West,1118,2014-01-24,4 -Region,South West,1053,2014-01-31,5 -Region,South West,1055,2014-02-07,6 -Region,South West,1095,2014-02-14,7 -Region,South West,1128,2014-02-21,8 -Region,South West,1071,2014-02-28,9 -Region,South West,1026,2014-03-07,10 -Region,South West,1086,2014-03-14,11 -Region,South West,1000,2014-03-21,12 -Region,South West,978,2014-03-28,13 -Region,South West,1018,2014-04-04,14 -Region,South West,1039,2014-04-11,15 -Region,South West,855,2014-04-18,16 -Region,South West,945,2014-04-25,17 -Region,South West,1159,2014-05-02,18 -Region,South West,944,2014-05-09,19 -Region,South West,988,2014-05-16,20 -Region,South West,1066,2014-05-23,21 -Region,South West,807,2014-05-30,22 -Region,South West,979,2014-06-06,23 -Region,South West,1045,2014-06-13,24 -Region,South West,957,2014-06-20,25 -Region,South West,946,2014-06-27,26 -Region,South West,886,2014-07-04,27 -Region,South West,912,2014-07-11,28 -Region,South West,930,2014-07-18,29 -Region,South West,961,2014-07-25,30 -Region,South West,930,2014-08-01,31 -Region,South West,923,2014-08-08,32 -Region,South West,956,2014-08-15,33 -Region,South West,911,2014-08-22,34 -Region,South West,848,2014-08-29,35 -Region,South West,1012,2014-09-05,36 -Region,South West,1004,2014-09-12,37 -Region,South West,1005,2014-09-19,38 -Region,South West,936,2014-09-26,39 -Region,South West,967,2014-10-03,40 -Region,South West,958,2014-10-10,41 -Region,South West,1039,2014-10-17,42 -Region,South West,1010,2014-10-24,43 -Region,South West,1030,2014-10-31,44 -Region,South West,1020,2014-11-07,45 -Region,South West,1024,2014-11-14,46 -Region,South West,999,2014-11-21,47 -Region,South West,988,2014-11-28,48 -Region,South West,1080,2014-12-05,49 -Region,South West,1076,2014-12-12,50 -Region,South West,1266,2014-12-19,51 -Region,South West,812,2014-12-26,52 -Region,Wales,751,2014-01-03,1 -Region,Wales,725,2014-01-10,2 -Region,Wales,690,2014-01-17,3 -Region,Wales,604,2014-01-24,4 -Region,Wales,622,2014-01-31,5 -Region,Wales,655,2014-02-07,6 -Region,Wales,590,2014-02-14,7 -Region,Wales,681,2014-02-21,8 -Region,Wales,621,2014-02-28,9 -Region,Wales,605,2014-03-07,10 -Region,Wales,617,2014-03-14,11 -Region,Wales,607,2014-03-21,12 -Region,Wales,604,2014-03-28,13 -Region,Wales,626,2014-04-04,14 -Region,Wales,589,2014-04-11,15 -Region,Wales,527,2014-04-18,16 -Region,Wales,634,2014-04-25,17 -Region,Wales,686,2014-05-02,18 -Region,Wales,515,2014-05-09,19 -Region,Wales,576,2014-05-16,20 -Region,Wales,602,2014-05-23,21 -Region,Wales,514,2014-05-30,22 -Region,Wales,588,2014-06-06,23 -Region,Wales,574,2014-06-13,24 -Region,Wales,552,2014-06-20,25 -Region,Wales,541,2014-06-27,26 -Region,Wales,568,2014-07-04,27 -Region,Wales,551,2014-07-11,28 -Region,Wales,601,2014-07-18,29 -Region,Wales,590,2014-07-25,30 -Region,Wales,545,2014-08-01,31 -Region,Wales,545,2014-08-08,32 -Region,Wales,526,2014-08-15,33 -Region,Wales,526,2014-08-22,34 -Region,Wales,515,2014-08-29,35 -Region,Wales,582,2014-09-05,36 -Region,Wales,562,2014-09-12,37 -Region,Wales,568,2014-09-19,38 -Region,Wales,571,2014-09-26,39 -Region,Wales,569,2014-10-03,40 -Region,Wales,556,2014-10-10,41 -Region,Wales,627,2014-10-17,42 -Region,Wales,670,2014-10-24,43 -Region,Wales,673,2014-10-31,44 -Region,Wales,573,2014-11-07,45 -Region,Wales,592,2014-11-14,46 -Region,Wales,612,2014-11-21,47 -Region,Wales,622,2014-11-28,48 -Region,Wales,650,2014-12-05,49 -Region,Wales,731,2014-12-12,50 -Region,Wales,723,2014-12-19,51 -Region,Wales,503,2014-12-26,52 -Total deaths,all ages,12286,2015-01-02,1 -Total deaths,all ages,16237,2015-01-09,2 -Total deaths,all ages,14866,2015-01-16,3 -Total deaths,all ages,13934,2015-01-23,4 -Total deaths,all ages,12900,2015-01-30,5 -Total deaths,all ages,12039,2015-02-06,6 -Total deaths,all ages,11822,2015-02-13,7 -Total deaths,all ages,11434,2015-02-20,8 -Total deaths,all ages,11472,2015-02-27,9 -Total deaths,all ages,11469,2015-03-06,10 -Total deaths,all ages,10951,2015-03-13,11 -Total deaths,all ages,10568,2015-03-20,12 -Total deaths,all ages,10493,2015-03-27,13 -Total deaths,all ages,9062,2015-04-03,14 -Total deaths,all ages,10089,2015-04-10,15 -Total deaths,all ages,11639,2015-04-17,16 -Total deaths,all ages,10599,2015-04-24,17 -Total deaths,all ages,10134,2015-05-01,18 -Total deaths,all ages,8862,2015-05-08,19 -Total deaths,all ages,10290,2015-05-15,20 -Total deaths,all ages,10005,2015-05-22,21 -Total deaths,all ages,8213,2015-05-29,22 -Total deaths,all ages,10157,2015-06-05,23 -Total deaths,all ages,9548,2015-06-12,24 -Total deaths,all ages,9312,2015-06-19,25 -Total deaths,all ages,9190,2015-06-26,26 -Total deaths,all ages,9205,2015-07-03,27 -Total deaths,all ages,9015,2015-07-10,28 -Total deaths,all ages,8802,2015-07-17,29 -Total deaths,all ages,8791,2015-07-24,30 -Total deaths,all ages,8617,2015-07-31,31 -Total deaths,all ages,8862,2015-08-07,32 -Total deaths,all ages,9148,2015-08-14,33 -Total deaths,all ages,9121,2015-08-21,34 -Total deaths,all ages,9026,2015-08-28,35 -Total deaths,all ages,7878,2015-09-04,36 -Total deaths,all ages,9258,2015-09-11,37 -Total deaths,all ages,9097,2015-09-18,38 -Total deaths,all ages,9529,2015-09-25,39 -Total deaths,all ages,9410,2015-10-02,40 -Total deaths,all ages,9776,2015-10-09,41 -Total deaths,all ages,9511,2015-10-16,42 -Total deaths,all ages,9711,2015-10-23,43 -Total deaths,all ages,9618,2015-10-30,44 -Total deaths,all ages,9994,2015-11-06,45 -Total deaths,all ages,9938,2015-11-13,46 -Total deaths,all ages,9830,2015-11-20,47 -Total deaths,all ages,9822,2015-11-27,48 -Total deaths,all ages,10365,2015-12-04,49 -Total deaths,all ages,10269,2015-12-11,50 -Total deaths,all ages,10689,2015-12-18,51 -Total deaths,all ages,8630,2015-12-25,52 -Total deaths,all ages,7524,2016-01-01,53 -Total deaths,average of same week over 5 years,11837.6,2015-01-02,1 -Total deaths,average of same week over 5 years,12277,2015-01-09,2 -Total deaths,average of same week over 5 years,11145,2015-01-16,3 -Total deaths,average of same week over 5 years,10714,2015-01-23,4 -Total deaths,average of same week over 5 years,10492,2015-01-30,5 -Total deaths,average of same week over 5 years,10320.4,2015-02-06,6 -Total deaths,average of same week over 5 years,10325,2015-02-13,7 -Total deaths,average of same week over 5 years,10429.8,2015-02-20,8 -Total deaths,average of same week over 5 years,10313.8,2015-02-27,9 -Total deaths,average of same week over 5 years,10203.6,2015-03-06,10 -Total deaths,average of same week over 5 years,10160.2,2015-03-13,11 -Total deaths,average of same week over 5 years,10020.6,2015-03-20,12 -Total deaths,average of same week over 5 years,9169.4,2015-03-27,13 -Total deaths,average of same week over 5 years,9734,2015-04-03,14 -Total deaths,average of same week over 5 years,10172.6,2015-04-10,15 -Total deaths,average of same week over 5 years,9666.2,2015-04-17,16 -Total deaths,average of same week over 5 years,9557.6,2015-04-24,17 -Total deaths,average of same week over 5 years,9771,2015-05-01,18 -Total deaths,average of same week over 5 years,9182.8,2015-05-08,19 -Total deaths,average of same week over 5 years,9479.4,2015-05-15,20 -Total deaths,average of same week over 5 years,9414.4,2015-05-22,21 -Total deaths,average of same week over 5 years,8410.4,2015-05-29,22 -Total deaths,average of same week over 5 years,8867.4,2015-06-05,23 -Total deaths,average of same week over 5 years,9181.8,2015-06-12,24 -Total deaths,average of same week over 5 years,8815.4,2015-06-19,25 -Total deaths,average of same week over 5 years,8811.8,2015-06-26,26 -Total deaths,average of same week over 5 years,8758,2015-07-03,27 -Total deaths,average of same week over 5 years,8610.6,2015-07-10,28 -Total deaths,average of same week over 5 years,8667.6,2015-07-17,29 -Total deaths,average of same week over 5 years,8606,2015-07-24,30 -Total deaths,average of same week over 5 years,8652.2,2015-07-31,31 -Total deaths,average of same week over 5 years,8543,2015-08-07,32 -Total deaths,average of same week over 5 years,8560.2,2015-08-14,33 -Total deaths,average of same week over 5 years,8689,2015-08-21,34 -Total deaths,average of same week over 5 years,7755.4,2015-08-28,35 -Total deaths,average of same week over 5 years,9031.4,2015-09-04,36 -Total deaths,average of same week over 5 years,8719.8,2015-09-11,37 -Total deaths,average of same week over 5 years,8807.6,2015-09-18,38 -Total deaths,average of same week over 5 years,8954.6,2015-09-25,39 -Total deaths,average of same week over 5 years,9091.4,2015-10-02,40 -Total deaths,average of same week over 5 years,9098.2,2015-10-09,41 -Total deaths,average of same week over 5 years,9181,2015-10-16,42 -Total deaths,average of same week over 5 years,9357.6,2015-10-23,43 -Total deaths,average of same week over 5 years,9468.4,2015-10-30,44 -Total deaths,average of same week over 5 years,9466.8,2015-11-06,45 -Total deaths,average of same week over 5 years,9650.8,2015-11-13,46 -Total deaths,average of same week over 5 years,9498,2015-11-20,47 -Total deaths,average of same week over 5 years,9496.8,2015-11-27,48 -Total deaths,average of same week over 5 years,10208.2,2015-12-04,49 -Total deaths,average of same week over 5 years,10440.4,2015-12-11,50 -Total deaths,average of same week over 5 years,11221,2015-12-18,51 -Total deaths,average of same week over 5 years,8139.2,2015-12-25,52 -Total deaths,average of same week over 5 years,8139,2016-01-01,53 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),2418,2015-01-02,1 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),3521,2015-01-09,2 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),3251,2015-01-16,3 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),2734,2015-01-23,4 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),2278,2015-01-30,5 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),2115,2015-02-06,6 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1985,2015-02-13,7 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1994,2015-02-20,8 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1931,2015-02-27,9 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1806,2015-03-06,10 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1744,2015-03-13,11 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1642,2015-03-20,12 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1550,2015-03-27,13 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1393,2015-04-03,14 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1525,2015-04-10,15 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1730,2015-04-17,16 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1550,2015-04-24,17 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1469,2015-05-01,18 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1250,2015-05-08,19 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1404,2015-05-15,20 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1325,2015-05-22,21 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1074,2015-05-29,22 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1256,2015-06-05,23 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1242,2015-06-12,24 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1234,2015-06-19,25 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1168,2015-06-26,26 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1121,2015-07-03,27 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1022,2015-07-10,28 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),977,2015-07-17,29 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),960,2015-07-24,30 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),940,2015-07-31,31 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1006,2015-08-07,32 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1055,2015-08-14,33 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),978,2015-08-21,34 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1074,2015-08-28,35 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),900,2015-09-04,36 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1062,2015-09-11,37 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1032,2015-09-18,38 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1117,2015-09-25,39 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1149,2015-10-02,40 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1198,2015-10-09,41 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1165,2015-10-16,42 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1183,2015-10-23,43 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1237,2015-10-30,44 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1247,2015-11-06,45 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1235,2015-11-13,46 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1317,2015-11-20,47 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1156,2015-11-27,48 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1345,2015-12-04,49 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1413,2015-12-11,50 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1437,2015-12-18,51 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1233,2015-12-25,52 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1128,2016-01-01,53 -Persons,Under 1 year,56,2015-01-02,1 -Persons,Under 1 year,80,2015-01-09,2 -Persons,Under 1 year,46,2015-01-16,3 -Persons,Under 1 year,61,2015-01-23,4 -Persons,Under 1 year,66,2015-01-30,5 -Persons,Under 1 year,66,2015-02-06,6 -Persons,Under 1 year,66,2015-02-13,7 -Persons,Under 1 year,47,2015-02-20,8 -Persons,Under 1 year,48,2015-02-27,9 -Persons,Under 1 year,44,2015-03-06,10 -Persons,Under 1 year,38,2015-03-13,11 -Persons,Under 1 year,44,2015-03-20,12 -Persons,Under 1 year,45,2015-03-27,13 -Persons,Under 1 year,47,2015-04-03,14 -Persons,Under 1 year,57,2015-04-10,15 -Persons,Under 1 year,47,2015-04-17,16 -Persons,Under 1 year,56,2015-04-24,17 -Persons,Under 1 year,55,2015-05-01,18 -Persons,Under 1 year,35,2015-05-08,19 -Persons,Under 1 year,50,2015-05-15,20 -Persons,Under 1 year,57,2015-05-22,21 -Persons,Under 1 year,53,2015-05-29,22 -Persons,Under 1 year,48,2015-06-05,23 -Persons,Under 1 year,52,2015-06-12,24 -Persons,Under 1 year,54,2015-06-19,25 -Persons,Under 1 year,51,2015-06-26,26 -Persons,Under 1 year,49,2015-07-03,27 -Persons,Under 1 year,65,2015-07-10,28 -Persons,Under 1 year,58,2015-07-17,29 -Persons,Under 1 year,57,2015-07-24,30 -Persons,Under 1 year,51,2015-07-31,31 -Persons,Under 1 year,54,2015-08-07,32 -Persons,Under 1 year,51,2015-08-14,33 -Persons,Under 1 year,66,2015-08-21,34 -Persons,Under 1 year,54,2015-08-28,35 -Persons,Under 1 year,48,2015-09-04,36 -Persons,Under 1 year,54,2015-09-11,37 -Persons,Under 1 year,40,2015-09-18,38 -Persons,Under 1 year,56,2015-09-25,39 -Persons,Under 1 year,65,2015-10-02,40 -Persons,Under 1 year,43,2015-10-09,41 -Persons,Under 1 year,59,2015-10-16,42 -Persons,Under 1 year,60,2015-10-23,43 -Persons,Under 1 year,50,2015-10-30,44 -Persons,Under 1 year,48,2015-11-06,45 -Persons,Under 1 year,53,2015-11-13,46 -Persons,Under 1 year,56,2015-11-20,47 -Persons,Under 1 year,33,2015-11-27,48 -Persons,Under 1 year,59,2015-12-04,49 -Persons,Under 1 year,37,2015-12-11,50 -Persons,Under 1 year,66,2015-12-18,51 -Persons,Under 1 year,49,2015-12-25,52 -Persons,Under 1 year,39,2016-01-01,53 -Persons,01-14,16,2015-01-02,1 -Persons,01-14,28,2015-01-09,2 -Persons,01-14,28,2015-01-16,3 -Persons,01-14,20,2015-01-23,4 -Persons,01-14,20,2015-01-30,5 -Persons,01-14,30,2015-02-06,6 -Persons,01-14,18,2015-02-13,7 -Persons,01-14,18,2015-02-20,8 -Persons,01-14,25,2015-02-27,9 -Persons,01-14,19,2015-03-06,10 -Persons,01-14,17,2015-03-13,11 -Persons,01-14,20,2015-03-20,12 -Persons,01-14,21,2015-03-27,13 -Persons,01-14,17,2015-04-03,14 -Persons,01-14,18,2015-04-10,15 -Persons,01-14,22,2015-04-17,16 -Persons,01-14,20,2015-04-24,17 -Persons,01-14,21,2015-05-01,18 -Persons,01-14,19,2015-05-08,19 -Persons,01-14,20,2015-05-15,20 -Persons,01-14,14,2015-05-22,21 -Persons,01-14,22,2015-05-29,22 -Persons,01-14,23,2015-06-05,23 -Persons,01-14,10,2015-06-12,24 -Persons,01-14,22,2015-06-19,25 -Persons,01-14,19,2015-06-26,26 -Persons,01-14,19,2015-07-03,27 -Persons,01-14,18,2015-07-10,28 -Persons,01-14,14,2015-07-17,29 -Persons,01-14,14,2015-07-24,30 -Persons,01-14,20,2015-07-31,31 -Persons,01-14,21,2015-08-07,32 -Persons,01-14,15,2015-08-14,33 -Persons,01-14,21,2015-08-21,34 -Persons,01-14,11,2015-08-28,35 -Persons,01-14,12,2015-09-04,36 -Persons,01-14,14,2015-09-11,37 -Persons,01-14,18,2015-09-18,38 -Persons,01-14,15,2015-09-25,39 -Persons,01-14,18,2015-10-02,40 -Persons,01-14,13,2015-10-09,41 -Persons,01-14,26,2015-10-16,42 -Persons,01-14,22,2015-10-23,43 -Persons,01-14,14,2015-10-30,44 -Persons,01-14,24,2015-11-06,45 -Persons,01-14,26,2015-11-13,46 -Persons,01-14,21,2015-11-20,47 -Persons,01-14,21,2015-11-27,48 -Persons,01-14,25,2015-12-04,49 -Persons,01-14,25,2015-12-11,50 -Persons,01-14,28,2015-12-18,51 -Persons,01-14,26,2015-12-25,52 -Persons,01-14,12,2016-01-01,53 -Persons,15-44,198,2015-01-02,1 -Persons,15-44,298,2015-01-09,2 -Persons,15-44,316,2015-01-16,3 -Persons,15-44,318,2015-01-23,4 -Persons,15-44,329,2015-01-30,5 -Persons,15-44,286,2015-02-06,6 -Persons,15-44,312,2015-02-13,7 -Persons,15-44,303,2015-02-20,8 -Persons,15-44,296,2015-02-27,9 -Persons,15-44,291,2015-03-06,10 -Persons,15-44,272,2015-03-13,11 -Persons,15-44,302,2015-03-20,12 -Persons,15-44,286,2015-03-27,13 -Persons,15-44,214,2015-04-03,14 -Persons,15-44,271,2015-04-10,15 -Persons,15-44,321,2015-04-17,16 -Persons,15-44,298,2015-04-24,17 -Persons,15-44,277,2015-05-01,18 -Persons,15-44,224,2015-05-08,19 -Persons,15-44,309,2015-05-15,20 -Persons,15-44,304,2015-05-22,21 -Persons,15-44,213,2015-05-29,22 -Persons,15-44,295,2015-06-05,23 -Persons,15-44,270,2015-06-12,24 -Persons,15-44,279,2015-06-19,25 -Persons,15-44,298,2015-06-26,26 -Persons,15-44,288,2015-07-03,27 -Persons,15-44,272,2015-07-10,28 -Persons,15-44,268,2015-07-17,29 -Persons,15-44,288,2015-07-24,30 -Persons,15-44,299,2015-07-31,31 -Persons,15-44,264,2015-08-07,32 -Persons,15-44,286,2015-08-14,33 -Persons,15-44,298,2015-08-21,34 -Persons,15-44,314,2015-08-28,35 -Persons,15-44,224,2015-09-04,36 -Persons,15-44,278,2015-09-11,37 -Persons,15-44,287,2015-09-18,38 -Persons,15-44,295,2015-09-25,39 -Persons,15-44,299,2015-10-02,40 -Persons,15-44,297,2015-10-09,41 -Persons,15-44,256,2015-10-16,42 -Persons,15-44,292,2015-10-23,43 -Persons,15-44,277,2015-10-30,44 -Persons,15-44,304,2015-11-06,45 -Persons,15-44,261,2015-11-13,46 -Persons,15-44,295,2015-11-20,47 -Persons,15-44,317,2015-11-27,48 -Persons,15-44,295,2015-12-04,49 -Persons,15-44,286,2015-12-11,50 -Persons,15-44,365,2015-12-18,51 -Persons,15-44,246,2015-12-25,52 -Persons,15-44,146,2016-01-01,53 -Persons,45-64,1229,2015-01-02,1 -Persons,45-64,1552,2015-01-09,2 -Persons,45-64,1393,2015-01-16,3 -Persons,45-64,1387,2015-01-23,4 -Persons,45-64,1368,2015-01-30,5 -Persons,45-64,1280,2015-02-06,6 -Persons,45-64,1281,2015-02-13,7 -Persons,45-64,1225,2015-02-20,8 -Persons,45-64,1267,2015-02-27,9 -Persons,45-64,1225,2015-03-06,10 -Persons,45-64,1228,2015-03-13,11 -Persons,45-64,1254,2015-03-20,12 -Persons,45-64,1181,2015-03-27,13 -Persons,45-64,976,2015-04-03,14 -Persons,45-64,1133,2015-04-10,15 -Persons,45-64,1342,2015-04-17,16 -Persons,45-64,1274,2015-04-24,17 -Persons,45-64,1162,2015-05-01,18 -Persons,45-64,954,2015-05-08,19 -Persons,45-64,1227,2015-05-15,20 -Persons,45-64,1176,2015-05-22,21 -Persons,45-64,1014,2015-05-29,22 -Persons,45-64,1224,2015-06-05,23 -Persons,45-64,1188,2015-06-12,24 -Persons,45-64,1163,2015-06-19,25 -Persons,45-64,1135,2015-06-26,26 -Persons,45-64,1065,2015-07-03,27 -Persons,45-64,1151,2015-07-10,28 -Persons,45-64,1128,2015-07-17,29 -Persons,45-64,1096,2015-07-24,30 -Persons,45-64,1084,2015-07-31,31 -Persons,45-64,1095,2015-08-07,32 -Persons,45-64,1169,2015-08-14,33 -Persons,45-64,1159,2015-08-21,34 -Persons,45-64,1100,2015-08-28,35 -Persons,45-64,981,2015-09-04,36 -Persons,45-64,1177,2015-09-11,37 -Persons,45-64,1098,2015-09-18,38 -Persons,45-64,1156,2015-09-25,39 -Persons,45-64,1133,2015-10-02,40 -Persons,45-64,1196,2015-10-09,41 -Persons,45-64,1133,2015-10-16,42 -Persons,45-64,1158,2015-10-23,43 -Persons,45-64,1137,2015-10-30,44 -Persons,45-64,1275,2015-11-06,45 -Persons,45-64,1258,2015-11-13,46 -Persons,45-64,1172,2015-11-20,47 -Persons,45-64,1219,2015-11-27,48 -Persons,45-64,1216,2015-12-04,49 -Persons,45-64,1196,2015-12-11,50 -Persons,45-64,1255,2015-12-18,51 -Persons,45-64,1010,2015-12-25,52 -Persons,45-64,882,2016-01-01,53 -Persons,65-74,1845,2015-01-02,1 -Persons,65-74,2387,2015-01-09,2 -Persons,65-74,2107,2015-01-16,3 -Persons,65-74,2019,2015-01-23,4 -Persons,65-74,1869,2015-01-30,5 -Persons,65-74,1774,2015-02-06,6 -Persons,65-74,1798,2015-02-13,7 -Persons,65-74,1714,2015-02-20,8 -Persons,65-74,1749,2015-02-27,9 -Persons,65-74,1850,2015-03-06,10 -Persons,65-74,1725,2015-03-13,11 -Persons,65-74,1621,2015-03-20,12 -Persons,65-74,1650,2015-03-27,13 -Persons,65-74,1405,2015-04-03,14 -Persons,65-74,1601,2015-04-10,15 -Persons,65-74,1849,2015-04-17,16 -Persons,65-74,1682,2015-04-24,17 -Persons,65-74,1628,2015-05-01,18 -Persons,65-74,1499,2015-05-08,19 -Persons,65-74,1703,2015-05-15,20 -Persons,65-74,1680,2015-05-22,21 -Persons,65-74,1365,2015-05-29,22 -Persons,65-74,1692,2015-06-05,23 -Persons,65-74,1586,2015-06-12,24 -Persons,65-74,1536,2015-06-19,25 -Persons,65-74,1573,2015-06-26,26 -Persons,65-74,1615,2015-07-03,27 -Persons,65-74,1548,2015-07-10,28 -Persons,65-74,1438,2015-07-17,29 -Persons,65-74,1583,2015-07-24,30 -Persons,65-74,1446,2015-07-31,31 -Persons,65-74,1471,2015-08-07,32 -Persons,65-74,1523,2015-08-14,33 -Persons,65-74,1543,2015-08-21,34 -Persons,65-74,1530,2015-08-28,35 -Persons,65-74,1318,2015-09-04,36 -Persons,65-74,1537,2015-09-11,37 -Persons,65-74,1549,2015-09-18,38 -Persons,65-74,1531,2015-09-25,39 -Persons,65-74,1569,2015-10-02,40 -Persons,65-74,1599,2015-10-09,41 -Persons,65-74,1585,2015-10-16,42 -Persons,65-74,1603,2015-10-23,43 -Persons,65-74,1565,2015-10-30,44 -Persons,65-74,1654,2015-11-06,45 -Persons,65-74,1607,2015-11-13,46 -Persons,65-74,1648,2015-11-20,47 -Persons,65-74,1621,2015-11-27,48 -Persons,65-74,1707,2015-12-04,49 -Persons,65-74,1632,2015-12-11,50 -Persons,65-74,1782,2015-12-18,51 -Persons,65-74,1387,2015-12-25,52 -Persons,65-74,1259,2016-01-01,53 -Persons,75-84,3548,2015-01-02,1 -Persons,75-84,4505,2015-01-09,2 -Persons,75-84,4191,2015-01-16,3 -Persons,75-84,3964,2015-01-23,4 -Persons,75-84,3685,2015-01-30,5 -Persons,75-84,3425,2015-02-06,6 -Persons,75-84,3398,2015-02-13,7 -Persons,75-84,3309,2015-02-20,8 -Persons,75-84,3355,2015-02-27,9 -Persons,75-84,3279,2015-03-06,10 -Persons,75-84,3122,2015-03-13,11 -Persons,75-84,3029,2015-03-20,12 -Persons,75-84,3020,2015-03-27,13 -Persons,75-84,2642,2015-04-03,14 -Persons,75-84,2913,2015-04-10,15 -Persons,75-84,3323,2015-04-17,16 -Persons,75-84,3061,2015-04-24,17 -Persons,75-84,2928,2015-05-01,18 -Persons,75-84,2625,2015-05-08,19 -Persons,75-84,2998,2015-05-15,20 -Persons,75-84,2926,2015-05-22,21 -Persons,75-84,2464,2015-05-29,22 -Persons,75-84,2895,2015-06-05,23 -Persons,75-84,2781,2015-06-12,24 -Persons,75-84,2652,2015-06-19,25 -Persons,75-84,2682,2015-06-26,26 -Persons,75-84,2560,2015-07-03,27 -Persons,75-84,2568,2015-07-10,28 -Persons,75-84,2486,2015-07-17,29 -Persons,75-84,2520,2015-07-24,30 -Persons,75-84,2493,2015-07-31,31 -Persons,75-84,2576,2015-08-07,32 -Persons,75-84,2577,2015-08-14,33 -Persons,75-84,2655,2015-08-21,34 -Persons,75-84,2621,2015-08-28,35 -Persons,75-84,2310,2015-09-04,36 -Persons,75-84,2571,2015-09-11,37 -Persons,75-84,2627,2015-09-18,38 -Persons,75-84,2791,2015-09-25,39 -Persons,75-84,2636,2015-10-02,40 -Persons,75-84,2820,2015-10-09,41 -Persons,75-84,2781,2015-10-16,42 -Persons,75-84,2786,2015-10-23,43 -Persons,75-84,2671,2015-10-30,44 -Persons,75-84,2853,2015-11-06,45 -Persons,75-84,2804,2015-11-13,46 -Persons,75-84,2835,2015-11-20,47 -Persons,75-84,2759,2015-11-27,48 -Persons,75-84,3003,2015-12-04,49 -Persons,75-84,2928,2015-12-11,50 -Persons,75-84,3023,2015-12-18,51 -Persons,75-84,2451,2015-12-25,52 -Persons,75-84,2197,2016-01-01,53 -Persons,85+,5392,2015-01-02,1 -Persons,85+,7387,2015-01-09,2 -Persons,85+,6785,2015-01-16,3 -Persons,85+,6165,2015-01-23,4 -Persons,85+,5563,2015-01-30,5 -Persons,85+,5178,2015-02-06,6 -Persons,85+,4949,2015-02-13,7 -Persons,85+,4817,2015-02-20,8 -Persons,85+,4731,2015-02-27,9 -Persons,85+,4759,2015-03-06,10 -Persons,85+,4547,2015-03-13,11 -Persons,85+,4298,2015-03-20,12 -Persons,85+,4289,2015-03-27,13 -Persons,85+,3760,2015-04-03,14 -Persons,85+,4096,2015-04-10,15 -Persons,85+,4735,2015-04-17,16 -Persons,85+,4206,2015-04-24,17 -Persons,85+,4040,2015-05-01,18 -Persons,85+,3505,2015-05-08,19 -Persons,85+,3983,2015-05-15,20 -Persons,85+,3839,2015-05-22,21 -Persons,85+,3082,2015-05-29,22 -Persons,85+,3968,2015-06-05,23 -Persons,85+,3660,2015-06-12,24 -Persons,85+,3602,2015-06-19,25 -Persons,85+,3425,2015-06-26,26 -Persons,85+,3603,2015-07-03,27 -Persons,85+,3393,2015-07-10,28 -Persons,85+,3405,2015-07-17,29 -Persons,85+,3233,2015-07-24,30 -Persons,85+,3223,2015-07-31,31 -Persons,85+,3379,2015-08-07,32 -Persons,85+,3525,2015-08-14,33 -Persons,85+,3379,2015-08-21,34 -Persons,85+,3393,2015-08-28,35 -Persons,85+,2985,2015-09-04,36 -Persons,85+,3623,2015-09-11,37 -Persons,85+,3478,2015-09-18,38 -Persons,85+,3682,2015-09-25,39 -Persons,85+,3690,2015-10-02,40 -Persons,85+,3807,2015-10-09,41 -Persons,85+,3668,2015-10-16,42 -Persons,85+,3789,2015-10-23,43 -Persons,85+,3879,2015-10-30,44 -Persons,85+,3826,2015-11-06,45 -Persons,85+,3926,2015-11-13,46 -Persons,85+,3802,2015-11-20,47 -Persons,85+,3850,2015-11-27,48 -Persons,85+,4056,2015-12-04,49 -Persons,85+,4153,2015-12-11,50 -Persons,85+,4169,2015-12-18,51 -Persons,85+,3461,2015-12-25,52 -Persons,85+,2988,2016-01-01,53 -Males,Under 1 year,29,2015-01-02,1 -Males,Under 1 year,45,2015-01-09,2 -Males,Under 1 year,25,2015-01-16,3 -Males,Under 1 year,34,2015-01-23,4 -Males,Under 1 year,42,2015-01-30,5 -Males,Under 1 year,37,2015-02-06,6 -Males,Under 1 year,31,2015-02-13,7 -Males,Under 1 year,25,2015-02-20,8 -Males,Under 1 year,28,2015-02-27,9 -Males,Under 1 year,29,2015-03-06,10 -Males,Under 1 year,27,2015-03-13,11 -Males,Under 1 year,17,2015-03-20,12 -Males,Under 1 year,29,2015-03-27,13 -Males,Under 1 year,27,2015-04-03,14 -Males,Under 1 year,39,2015-04-10,15 -Males,Under 1 year,24,2015-04-17,16 -Males,Under 1 year,36,2015-04-24,17 -Males,Under 1 year,36,2015-05-01,18 -Males,Under 1 year,18,2015-05-08,19 -Males,Under 1 year,32,2015-05-15,20 -Males,Under 1 year,35,2015-05-22,21 -Males,Under 1 year,34,2015-05-29,22 -Males,Under 1 year,24,2015-06-05,23 -Males,Under 1 year,35,2015-06-12,24 -Males,Under 1 year,38,2015-06-19,25 -Males,Under 1 year,31,2015-06-26,26 -Males,Under 1 year,30,2015-07-03,27 -Males,Under 1 year,29,2015-07-10,28 -Males,Under 1 year,34,2015-07-17,29 -Males,Under 1 year,38,2015-07-24,30 -Males,Under 1 year,30,2015-07-31,31 -Males,Under 1 year,25,2015-08-07,32 -Males,Under 1 year,35,2015-08-14,33 -Males,Under 1 year,33,2015-08-21,34 -Males,Under 1 year,37,2015-08-28,35 -Males,Under 1 year,27,2015-09-04,36 -Males,Under 1 year,25,2015-09-11,37 -Males,Under 1 year,25,2015-09-18,38 -Males,Under 1 year,29,2015-09-25,39 -Males,Under 1 year,35,2015-10-02,40 -Males,Under 1 year,22,2015-10-09,41 -Males,Under 1 year,38,2015-10-16,42 -Males,Under 1 year,37,2015-10-23,43 -Males,Under 1 year,23,2015-10-30,44 -Males,Under 1 year,22,2015-11-06,45 -Males,Under 1 year,34,2015-11-13,46 -Males,Under 1 year,35,2015-11-20,47 -Males,Under 1 year,19,2015-11-27,48 -Males,Under 1 year,40,2015-12-04,49 -Males,Under 1 year,14,2015-12-11,50 -Males,Under 1 year,37,2015-12-18,51 -Males,Under 1 year,33,2015-12-25,52 -Males,Under 1 year,25,2016-01-01,53 -Males,01-14,9,2015-01-02,1 -Males,01-14,15,2015-01-09,2 -Males,01-14,13,2015-01-16,3 -Males,01-14,15,2015-01-23,4 -Males,01-14,11,2015-01-30,5 -Males,01-14,18,2015-02-06,6 -Males,01-14,13,2015-02-13,7 -Males,01-14,7,2015-02-20,8 -Males,01-14,14,2015-02-27,9 -Males,01-14,11,2015-03-06,10 -Males,01-14,7,2015-03-13,11 -Males,01-14,15,2015-03-20,12 -Males,01-14,11,2015-03-27,13 -Males,01-14,12,2015-04-03,14 -Males,01-14,10,2015-04-10,15 -Males,01-14,17,2015-04-17,16 -Males,01-14,12,2015-04-24,17 -Males,01-14,11,2015-05-01,18 -Males,01-14,11,2015-05-08,19 -Males,01-14,11,2015-05-15,20 -Males,01-14,7,2015-05-22,21 -Males,01-14,11,2015-05-29,22 -Males,01-14,17,2015-06-05,23 -Males,01-14,5,2015-06-12,24 -Males,01-14,13,2015-06-19,25 -Males,01-14,10,2015-06-26,26 -Males,01-14,10,2015-07-03,27 -Males,01-14,9,2015-07-10,28 -Males,01-14,6,2015-07-17,29 -Males,01-14,10,2015-07-24,30 -Males,01-14,12,2015-07-31,31 -Males,01-14,13,2015-08-07,32 -Males,01-14,10,2015-08-14,33 -Males,01-14,14,2015-08-21,34 -Males,01-14,8,2015-08-28,35 -Males,01-14,7,2015-09-04,36 -Males,01-14,5,2015-09-11,37 -Males,01-14,10,2015-09-18,38 -Males,01-14,11,2015-09-25,39 -Males,01-14,8,2015-10-02,40 -Males,01-14,7,2015-10-09,41 -Males,01-14,12,2015-10-16,42 -Males,01-14,12,2015-10-23,43 -Males,01-14,8,2015-10-30,44 -Males,01-14,9,2015-11-06,45 -Males,01-14,15,2015-11-13,46 -Males,01-14,15,2015-11-20,47 -Males,01-14,11,2015-11-27,48 -Males,01-14,14,2015-12-04,49 -Males,01-14,10,2015-12-11,50 -Males,01-14,10,2015-12-18,51 -Males,01-14,7,2015-12-25,52 -Males,01-14,6,2016-01-01,53 -Males,15-44,108,2015-01-02,1 -Males,15-44,192,2015-01-09,2 -Males,15-44,212,2015-01-16,3 -Males,15-44,211,2015-01-23,4 -Males,15-44,215,2015-01-30,5 -Males,15-44,173,2015-02-06,6 -Males,15-44,204,2015-02-13,7 -Males,15-44,187,2015-02-20,8 -Males,15-44,184,2015-02-27,9 -Males,15-44,181,2015-03-06,10 -Males,15-44,158,2015-03-13,11 -Males,15-44,194,2015-03-20,12 -Males,15-44,177,2015-03-27,13 -Males,15-44,137,2015-04-03,14 -Males,15-44,160,2015-04-10,15 -Males,15-44,209,2015-04-17,16 -Males,15-44,197,2015-04-24,17 -Males,15-44,176,2015-05-01,18 -Males,15-44,156,2015-05-08,19 -Males,15-44,207,2015-05-15,20 -Males,15-44,198,2015-05-22,21 -Males,15-44,125,2015-05-29,22 -Males,15-44,175,2015-06-05,23 -Males,15-44,165,2015-06-12,24 -Males,15-44,181,2015-06-19,25 -Males,15-44,188,2015-06-26,26 -Males,15-44,207,2015-07-03,27 -Males,15-44,190,2015-07-10,28 -Males,15-44,155,2015-07-17,29 -Males,15-44,177,2015-07-24,30 -Males,15-44,183,2015-07-31,31 -Males,15-44,186,2015-08-07,32 -Males,15-44,185,2015-08-14,33 -Males,15-44,194,2015-08-21,34 -Males,15-44,204,2015-08-28,35 -Males,15-44,148,2015-09-04,36 -Males,15-44,175,2015-09-11,37 -Males,15-44,182,2015-09-18,38 -Males,15-44,184,2015-09-25,39 -Males,15-44,184,2015-10-02,40 -Males,15-44,183,2015-10-09,41 -Males,15-44,177,2015-10-16,42 -Males,15-44,188,2015-10-23,43 -Males,15-44,185,2015-10-30,44 -Males,15-44,200,2015-11-06,45 -Males,15-44,179,2015-11-13,46 -Males,15-44,202,2015-11-20,47 -Males,15-44,206,2015-11-27,48 -Males,15-44,194,2015-12-04,49 -Males,15-44,192,2015-12-11,50 -Males,15-44,234,2015-12-18,51 -Males,15-44,151,2015-12-25,52 -Males,15-44,85,2016-01-01,53 -Males,45-64,689,2015-01-02,1 -Males,45-64,912,2015-01-09,2 -Males,45-64,813,2015-01-16,3 -Males,45-64,837,2015-01-23,4 -Males,45-64,799,2015-01-30,5 -Males,45-64,753,2015-02-06,6 -Males,45-64,749,2015-02-13,7 -Males,45-64,733,2015-02-20,8 -Males,45-64,760,2015-02-27,9 -Males,45-64,763,2015-03-06,10 -Males,45-64,707,2015-03-13,11 -Males,45-64,755,2015-03-20,12 -Males,45-64,709,2015-03-27,13 -Males,45-64,589,2015-04-03,14 -Males,45-64,667,2015-04-10,15 -Males,45-64,803,2015-04-17,16 -Males,45-64,759,2015-04-24,17 -Males,45-64,696,2015-05-01,18 -Males,45-64,554,2015-05-08,19 -Males,45-64,714,2015-05-15,20 -Males,45-64,705,2015-05-22,21 -Males,45-64,595,2015-05-29,22 -Males,45-64,732,2015-06-05,23 -Males,45-64,722,2015-06-12,24 -Males,45-64,695,2015-06-19,25 -Males,45-64,700,2015-06-26,26 -Males,45-64,619,2015-07-03,27 -Males,45-64,682,2015-07-10,28 -Males,45-64,688,2015-07-17,29 -Males,45-64,651,2015-07-24,30 -Males,45-64,627,2015-07-31,31 -Males,45-64,680,2015-08-07,32 -Males,45-64,715,2015-08-14,33 -Males,45-64,667,2015-08-21,34 -Males,45-64,668,2015-08-28,35 -Males,45-64,612,2015-09-04,36 -Males,45-64,678,2015-09-11,37 -Males,45-64,680,2015-09-18,38 -Males,45-64,704,2015-09-25,39 -Males,45-64,680,2015-10-02,40 -Males,45-64,711,2015-10-09,41 -Males,45-64,678,2015-10-16,42 -Males,45-64,706,2015-10-23,43 -Males,45-64,695,2015-10-30,44 -Males,45-64,760,2015-11-06,45 -Males,45-64,795,2015-11-13,46 -Males,45-64,720,2015-11-20,47 -Males,45-64,719,2015-11-27,48 -Males,45-64,711,2015-12-04,49 -Males,45-64,722,2015-12-11,50 -Males,45-64,726,2015-12-18,51 -Males,45-64,625,2015-12-25,52 -Males,45-64,510,2016-01-01,53 -Males,65-74,1042,2015-01-02,1 -Males,65-74,1347,2015-01-09,2 -Males,65-74,1205,2015-01-16,3 -Males,65-74,1105,2015-01-23,4 -Males,65-74,1100,2015-01-30,5 -Males,65-74,1052,2015-02-06,6 -Males,65-74,1059,2015-02-13,7 -Males,65-74,973,2015-02-20,8 -Males,65-74,997,2015-02-27,9 -Males,65-74,1087,2015-03-06,10 -Males,65-74,981,2015-03-13,11 -Males,65-74,929,2015-03-20,12 -Males,65-74,926,2015-03-27,13 -Males,65-74,819,2015-04-03,14 -Males,65-74,921,2015-04-10,15 -Males,65-74,1095,2015-04-17,16 -Males,65-74,978,2015-04-24,17 -Males,65-74,962,2015-05-01,18 -Males,65-74,890,2015-05-08,19 -Males,65-74,1024,2015-05-15,20 -Males,65-74,987,2015-05-22,21 -Males,65-74,791,2015-05-29,22 -Males,65-74,986,2015-06-05,23 -Males,65-74,934,2015-06-12,24 -Males,65-74,872,2015-06-19,25 -Males,65-74,945,2015-06-26,26 -Males,65-74,909,2015-07-03,27 -Males,65-74,909,2015-07-10,28 -Males,65-74,828,2015-07-17,29 -Males,65-74,912,2015-07-24,30 -Males,65-74,839,2015-07-31,31 -Males,65-74,886,2015-08-07,32 -Males,65-74,893,2015-08-14,33 -Males,65-74,896,2015-08-21,34 -Males,65-74,879,2015-08-28,35 -Males,65-74,778,2015-09-04,36 -Males,65-74,917,2015-09-11,37 -Males,65-74,889,2015-09-18,38 -Males,65-74,922,2015-09-25,39 -Males,65-74,896,2015-10-02,40 -Males,65-74,931,2015-10-09,41 -Males,65-74,937,2015-10-16,42 -Males,65-74,943,2015-10-23,43 -Males,65-74,914,2015-10-30,44 -Males,65-74,956,2015-11-06,45 -Males,65-74,980,2015-11-13,46 -Males,65-74,950,2015-11-20,47 -Males,65-74,922,2015-11-27,48 -Males,65-74,1021,2015-12-04,49 -Males,65-74,916,2015-12-11,50 -Males,65-74,1036,2015-12-18,51 -Males,65-74,797,2015-12-25,52 -Males,65-74,737,2016-01-01,53 -Males,75-84,1865,2015-01-02,1 -Males,75-84,2306,2015-01-09,2 -Males,75-84,2104,2015-01-16,3 -Males,75-84,2030,2015-01-23,4 -Males,75-84,1908,2015-01-30,5 -Males,75-84,1821,2015-02-06,6 -Males,75-84,1826,2015-02-13,7 -Males,75-84,1713,2015-02-20,8 -Males,75-84,1749,2015-02-27,9 -Males,75-84,1689,2015-03-06,10 -Males,75-84,1623,2015-03-13,11 -Males,75-84,1570,2015-03-20,12 -Males,75-84,1576,2015-03-27,13 -Males,75-84,1364,2015-04-03,14 -Males,75-84,1477,2015-04-10,15 -Males,75-84,1721,2015-04-17,16 -Males,75-84,1620,2015-04-24,17 -Males,75-84,1574,2015-05-01,18 -Males,75-84,1417,2015-05-08,19 -Males,75-84,1565,2015-05-15,20 -Males,75-84,1605,2015-05-22,21 -Males,75-84,1303,2015-05-29,22 -Males,75-84,1485,2015-06-05,23 -Males,75-84,1475,2015-06-12,24 -Males,75-84,1332,2015-06-19,25 -Males,75-84,1439,2015-06-26,26 -Males,75-84,1301,2015-07-03,27 -Males,75-84,1403,2015-07-10,28 -Males,75-84,1323,2015-07-17,29 -Males,75-84,1346,2015-07-24,30 -Males,75-84,1350,2015-07-31,31 -Males,75-84,1349,2015-08-07,32 -Males,75-84,1365,2015-08-14,33 -Males,75-84,1434,2015-08-21,34 -Males,75-84,1372,2015-08-28,35 -Males,75-84,1219,2015-09-04,36 -Males,75-84,1396,2015-09-11,37 -Males,75-84,1394,2015-09-18,38 -Males,75-84,1475,2015-09-25,39 -Males,75-84,1411,2015-10-02,40 -Males,75-84,1471,2015-10-09,41 -Males,75-84,1464,2015-10-16,42 -Males,75-84,1496,2015-10-23,43 -Males,75-84,1414,2015-10-30,44 -Males,75-84,1454,2015-11-06,45 -Males,75-84,1499,2015-11-13,46 -Males,75-84,1554,2015-11-20,47 -Males,75-84,1510,2015-11-27,48 -Males,75-84,1558,2015-12-04,49 -Males,75-84,1562,2015-12-11,50 -Males,75-84,1602,2015-12-18,51 -Males,75-84,1260,2015-12-25,52 -Males,75-84,1139,2016-01-01,53 -Males,85+,1915,2015-01-02,1 -Males,85+,2596,2015-01-09,2 -Males,85+,2443,2015-01-16,3 -Males,85+,2215,2015-01-23,4 -Males,85+,1986,2015-01-30,5 -Males,85+,1912,2015-02-06,6 -Males,85+,1850,2015-02-13,7 -Males,85+,1809,2015-02-20,8 -Males,85+,1749,2015-02-27,9 -Males,85+,1696,2015-03-06,10 -Males,85+,1590,2015-03-13,11 -Males,85+,1600,2015-03-20,12 -Males,85+,1595,2015-03-27,13 -Males,85+,1410,2015-04-03,14 -Males,85+,1560,2015-04-10,15 -Males,85+,1757,2015-04-17,16 -Males,85+,1523,2015-04-24,17 -Males,85+,1511,2015-05-01,18 -Males,85+,1316,2015-05-08,19 -Males,85+,1502,2015-05-15,20 -Males,85+,1419,2015-05-22,21 -Males,85+,1184,2015-05-29,22 -Males,85+,1450,2015-06-05,23 -Males,85+,1391,2015-06-12,24 -Males,85+,1372,2015-06-19,25 -Males,85+,1297,2015-06-26,26 -Males,85+,1372,2015-07-03,27 -Males,85+,1313,2015-07-10,28 -Males,85+,1293,2015-07-17,29 -Males,85+,1249,2015-07-24,30 -Males,85+,1195,2015-07-31,31 -Males,85+,1340,2015-08-07,32 -Males,85+,1339,2015-08-14,33 -Males,85+,1289,2015-08-21,34 -Males,85+,1271,2015-08-28,35 -Males,85+,1165,2015-09-04,36 -Males,85+,1396,2015-09-11,37 -Males,85+,1273,2015-09-18,38 -Males,85+,1399,2015-09-25,39 -Males,85+,1400,2015-10-02,40 -Males,85+,1416,2015-10-09,41 -Males,85+,1410,2015-10-16,42 -Males,85+,1479,2015-10-23,43 -Males,85+,1476,2015-10-30,44 -Males,85+,1405,2015-11-06,45 -Males,85+,1479,2015-11-13,46 -Males,85+,1445,2015-11-20,47 -Males,85+,1445,2015-11-27,48 -Males,85+,1572,2015-12-04,49 -Males,85+,1552,2015-12-11,50 -Males,85+,1502,2015-12-18,51 -Males,85+,1315,2015-12-25,52 -Males,85+,1185,2016-01-01,53 -Females,Under 1 year,27,2015-01-02,1 -Females,Under 1 year,35,2015-01-09,2 -Females,Under 1 year,21,2015-01-16,3 -Females,Under 1 year,27,2015-01-23,4 -Females,Under 1 year,24,2015-01-30,5 -Females,Under 1 year,29,2015-02-06,6 -Females,Under 1 year,35,2015-02-13,7 -Females,Under 1 year,22,2015-02-20,8 -Females,Under 1 year,20,2015-02-27,9 -Females,Under 1 year,15,2015-03-06,10 -Females,Under 1 year,11,2015-03-13,11 -Females,Under 1 year,27,2015-03-20,12 -Females,Under 1 year,16,2015-03-27,13 -Females,Under 1 year,20,2015-04-03,14 -Females,Under 1 year,18,2015-04-10,15 -Females,Under 1 year,23,2015-04-17,16 -Females,Under 1 year,20,2015-04-24,17 -Females,Under 1 year,19,2015-05-01,18 -Females,Under 1 year,17,2015-05-08,19 -Females,Under 1 year,18,2015-05-15,20 -Females,Under 1 year,22,2015-05-22,21 -Females,Under 1 year,19,2015-05-29,22 -Females,Under 1 year,24,2015-06-05,23 -Females,Under 1 year,17,2015-06-12,24 -Females,Under 1 year,16,2015-06-19,25 -Females,Under 1 year,20,2015-06-26,26 -Females,Under 1 year,19,2015-07-03,27 -Females,Under 1 year,36,2015-07-10,28 -Females,Under 1 year,24,2015-07-17,29 -Females,Under 1 year,19,2015-07-24,30 -Females,Under 1 year,21,2015-07-31,31 -Females,Under 1 year,29,2015-08-07,32 -Females,Under 1 year,16,2015-08-14,33 -Females,Under 1 year,33,2015-08-21,34 -Females,Under 1 year,17,2015-08-28,35 -Females,Under 1 year,21,2015-09-04,36 -Females,Under 1 year,29,2015-09-11,37 -Females,Under 1 year,15,2015-09-18,38 -Females,Under 1 year,27,2015-09-25,39 -Females,Under 1 year,30,2015-10-02,40 -Females,Under 1 year,21,2015-10-09,41 -Females,Under 1 year,21,2015-10-16,42 -Females,Under 1 year,23,2015-10-23,43 -Females,Under 1 year,27,2015-10-30,44 -Females,Under 1 year,26,2015-11-06,45 -Females,Under 1 year,19,2015-11-13,46 -Females,Under 1 year,21,2015-11-20,47 -Females,Under 1 year,14,2015-11-27,48 -Females,Under 1 year,19,2015-12-04,49 -Females,Under 1 year,23,2015-12-11,50 -Females,Under 1 year,29,2015-12-18,51 -Females,Under 1 year,16,2015-12-25,52 -Females,Under 1 year,14,2016-01-01,53 -Females,01-14,7,2015-01-02,1 -Females,01-14,13,2015-01-09,2 -Females,01-14,15,2015-01-16,3 -Females,01-14,5,2015-01-23,4 -Females,01-14,9,2015-01-30,5 -Females,01-14,12,2015-02-06,6 -Females,01-14,5,2015-02-13,7 -Females,01-14,11,2015-02-20,8 -Females,01-14,11,2015-02-27,9 -Females,01-14,8,2015-03-06,10 -Females,01-14,10,2015-03-13,11 -Females,01-14,5,2015-03-20,12 -Females,01-14,10,2015-03-27,13 -Females,01-14,5,2015-04-03,14 -Females,01-14,8,2015-04-10,15 -Females,01-14,5,2015-04-17,16 -Females,01-14,8,2015-04-24,17 -Females,01-14,10,2015-05-01,18 -Females,01-14,8,2015-05-08,19 -Females,01-14,9,2015-05-15,20 -Females,01-14,7,2015-05-22,21 -Females,01-14,11,2015-05-29,22 -Females,01-14,6,2015-06-05,23 -Females,01-14,5,2015-06-12,24 -Females,01-14,9,2015-06-19,25 -Females,01-14,9,2015-06-26,26 -Females,01-14,9,2015-07-03,27 -Females,01-14,9,2015-07-10,28 -Females,01-14,8,2015-07-17,29 -Females,01-14,4,2015-07-24,30 -Females,01-14,8,2015-07-31,31 -Females,01-14,8,2015-08-07,32 -Females,01-14,5,2015-08-14,33 -Females,01-14,7,2015-08-21,34 -Females,01-14,3,2015-08-28,35 -Females,01-14,5,2015-09-04,36 -Females,01-14,9,2015-09-11,37 -Females,01-14,8,2015-09-18,38 -Females,01-14,4,2015-09-25,39 -Females,01-14,10,2015-10-02,40 -Females,01-14,6,2015-10-09,41 -Females,01-14,14,2015-10-16,42 -Females,01-14,10,2015-10-23,43 -Females,01-14,6,2015-10-30,44 -Females,01-14,15,2015-11-06,45 -Females,01-14,11,2015-11-13,46 -Females,01-14,6,2015-11-20,47 -Females,01-14,10,2015-11-27,48 -Females,01-14,11,2015-12-04,49 -Females,01-14,15,2015-12-11,50 -Females,01-14,18,2015-12-18,51 -Females,01-14,19,2015-12-25,52 -Females,01-14,6,2016-01-01,53 -Females,15-44,90,2015-01-02,1 -Females,15-44,106,2015-01-09,2 -Females,15-44,104,2015-01-16,3 -Females,15-44,107,2015-01-23,4 -Females,15-44,114,2015-01-30,5 -Females,15-44,113,2015-02-06,6 -Females,15-44,108,2015-02-13,7 -Females,15-44,116,2015-02-20,8 -Females,15-44,112,2015-02-27,9 -Females,15-44,110,2015-03-06,10 -Females,15-44,114,2015-03-13,11 -Females,15-44,108,2015-03-20,12 -Females,15-44,109,2015-03-27,13 -Females,15-44,77,2015-04-03,14 -Females,15-44,111,2015-04-10,15 -Females,15-44,112,2015-04-17,16 -Females,15-44,101,2015-04-24,17 -Females,15-44,101,2015-05-01,18 -Females,15-44,68,2015-05-08,19 -Females,15-44,102,2015-05-15,20 -Females,15-44,106,2015-05-22,21 -Females,15-44,88,2015-05-29,22 -Females,15-44,120,2015-06-05,23 -Females,15-44,105,2015-06-12,24 -Females,15-44,98,2015-06-19,25 -Females,15-44,110,2015-06-26,26 -Females,15-44,81,2015-07-03,27 -Females,15-44,82,2015-07-10,28 -Females,15-44,113,2015-07-17,29 -Females,15-44,111,2015-07-24,30 -Females,15-44,116,2015-07-31,31 -Females,15-44,78,2015-08-07,32 -Females,15-44,101,2015-08-14,33 -Females,15-44,104,2015-08-21,34 -Females,15-44,110,2015-08-28,35 -Females,15-44,76,2015-09-04,36 -Females,15-44,103,2015-09-11,37 -Females,15-44,105,2015-09-18,38 -Females,15-44,111,2015-09-25,39 -Females,15-44,115,2015-10-02,40 -Females,15-44,114,2015-10-09,41 -Females,15-44,79,2015-10-16,42 -Females,15-44,104,2015-10-23,43 -Females,15-44,92,2015-10-30,44 -Females,15-44,104,2015-11-06,45 -Females,15-44,82,2015-11-13,46 -Females,15-44,93,2015-11-20,47 -Females,15-44,111,2015-11-27,48 -Females,15-44,101,2015-12-04,49 -Females,15-44,94,2015-12-11,50 -Females,15-44,131,2015-12-18,51 -Females,15-44,95,2015-12-25,52 -Females,15-44,61,2016-01-01,53 -Females,45-64,540,2015-01-02,1 -Females,45-64,640,2015-01-09,2 -Females,45-64,580,2015-01-16,3 -Females,45-64,550,2015-01-23,4 -Females,45-64,569,2015-01-30,5 -Females,45-64,527,2015-02-06,6 -Females,45-64,532,2015-02-13,7 -Females,45-64,492,2015-02-20,8 -Females,45-64,507,2015-02-27,9 -Females,45-64,462,2015-03-06,10 -Females,45-64,521,2015-03-13,11 -Females,45-64,499,2015-03-20,12 -Females,45-64,472,2015-03-27,13 -Females,45-64,387,2015-04-03,14 -Females,45-64,466,2015-04-10,15 -Females,45-64,539,2015-04-17,16 -Females,45-64,515,2015-04-24,17 -Females,45-64,466,2015-05-01,18 -Females,45-64,400,2015-05-08,19 -Females,45-64,513,2015-05-15,20 -Females,45-64,471,2015-05-22,21 -Females,45-64,419,2015-05-29,22 -Females,45-64,492,2015-06-05,23 -Females,45-64,466,2015-06-12,24 -Females,45-64,468,2015-06-19,25 -Females,45-64,435,2015-06-26,26 -Females,45-64,446,2015-07-03,27 -Females,45-64,469,2015-07-10,28 -Females,45-64,440,2015-07-17,29 -Females,45-64,445,2015-07-24,30 -Females,45-64,457,2015-07-31,31 -Females,45-64,415,2015-08-07,32 -Females,45-64,454,2015-08-14,33 -Females,45-64,492,2015-08-21,34 -Females,45-64,432,2015-08-28,35 -Females,45-64,369,2015-09-04,36 -Females,45-64,499,2015-09-11,37 -Females,45-64,418,2015-09-18,38 -Females,45-64,452,2015-09-25,39 -Females,45-64,453,2015-10-02,40 -Females,45-64,485,2015-10-09,41 -Females,45-64,455,2015-10-16,42 -Females,45-64,452,2015-10-23,43 -Females,45-64,442,2015-10-30,44 -Females,45-64,515,2015-11-06,45 -Females,45-64,463,2015-11-13,46 -Females,45-64,452,2015-11-20,47 -Females,45-64,500,2015-11-27,48 -Females,45-64,505,2015-12-04,49 -Females,45-64,474,2015-12-11,50 -Females,45-64,529,2015-12-18,51 -Females,45-64,385,2015-12-25,52 -Females,45-64,372,2016-01-01,53 -Females,65-74,803,2015-01-02,1 -Females,65-74,1040,2015-01-09,2 -Females,65-74,902,2015-01-16,3 -Females,65-74,914,2015-01-23,4 -Females,65-74,769,2015-01-30,5 -Females,65-74,722,2015-02-06,6 -Females,65-74,739,2015-02-13,7 -Females,65-74,741,2015-02-20,8 -Females,65-74,752,2015-02-27,9 -Females,65-74,763,2015-03-06,10 -Females,65-74,744,2015-03-13,11 -Females,65-74,692,2015-03-20,12 -Females,65-74,724,2015-03-27,13 -Females,65-74,586,2015-04-03,14 -Females,65-74,680,2015-04-10,15 -Females,65-74,754,2015-04-17,16 -Females,65-74,704,2015-04-24,17 -Females,65-74,666,2015-05-01,18 -Females,65-74,609,2015-05-08,19 -Females,65-74,679,2015-05-15,20 -Females,65-74,693,2015-05-22,21 -Females,65-74,574,2015-05-29,22 -Females,65-74,706,2015-06-05,23 -Females,65-74,652,2015-06-12,24 -Females,65-74,664,2015-06-19,25 -Females,65-74,628,2015-06-26,26 -Females,65-74,706,2015-07-03,27 -Females,65-74,639,2015-07-10,28 -Females,65-74,610,2015-07-17,29 -Females,65-74,671,2015-07-24,30 -Females,65-74,607,2015-07-31,31 -Females,65-74,585,2015-08-07,32 -Females,65-74,630,2015-08-14,33 -Females,65-74,647,2015-08-21,34 -Females,65-74,651,2015-08-28,35 -Females,65-74,540,2015-09-04,36 -Females,65-74,620,2015-09-11,37 -Females,65-74,660,2015-09-18,38 -Females,65-74,609,2015-09-25,39 -Females,65-74,673,2015-10-02,40 -Females,65-74,668,2015-10-09,41 -Females,65-74,648,2015-10-16,42 -Females,65-74,660,2015-10-23,43 -Females,65-74,651,2015-10-30,44 -Females,65-74,698,2015-11-06,45 -Females,65-74,627,2015-11-13,46 -Females,65-74,698,2015-11-20,47 -Females,65-74,699,2015-11-27,48 -Females,65-74,686,2015-12-04,49 -Females,65-74,716,2015-12-11,50 -Females,65-74,746,2015-12-18,51 -Females,65-74,590,2015-12-25,52 -Females,65-74,522,2016-01-01,53 -Females,75-84,1683,2015-01-02,1 -Females,75-84,2199,2015-01-09,2 -Females,75-84,2087,2015-01-16,3 -Females,75-84,1934,2015-01-23,4 -Females,75-84,1777,2015-01-30,5 -Females,75-84,1604,2015-02-06,6 -Females,75-84,1572,2015-02-13,7 -Females,75-84,1596,2015-02-20,8 -Females,75-84,1606,2015-02-27,9 -Females,75-84,1590,2015-03-06,10 -Females,75-84,1499,2015-03-13,11 -Females,75-84,1459,2015-03-20,12 -Females,75-84,1444,2015-03-27,13 -Females,75-84,1278,2015-04-03,14 -Females,75-84,1436,2015-04-10,15 -Females,75-84,1602,2015-04-17,16 -Females,75-84,1441,2015-04-24,17 -Females,75-84,1354,2015-05-01,18 -Females,75-84,1208,2015-05-08,19 -Females,75-84,1433,2015-05-15,20 -Females,75-84,1321,2015-05-22,21 -Females,75-84,1161,2015-05-29,22 -Females,75-84,1410,2015-06-05,23 -Females,75-84,1306,2015-06-12,24 -Females,75-84,1320,2015-06-19,25 -Females,75-84,1243,2015-06-26,26 -Females,75-84,1259,2015-07-03,27 -Females,75-84,1165,2015-07-10,28 -Females,75-84,1163,2015-07-17,29 -Females,75-84,1174,2015-07-24,30 -Females,75-84,1143,2015-07-31,31 -Females,75-84,1227,2015-08-07,32 -Females,75-84,1212,2015-08-14,33 -Females,75-84,1221,2015-08-21,34 -Females,75-84,1249,2015-08-28,35 -Females,75-84,1091,2015-09-04,36 -Females,75-84,1175,2015-09-11,37 -Females,75-84,1233,2015-09-18,38 -Females,75-84,1316,2015-09-25,39 -Females,75-84,1225,2015-10-02,40 -Females,75-84,1349,2015-10-09,41 -Females,75-84,1317,2015-10-16,42 -Females,75-84,1290,2015-10-23,43 -Females,75-84,1257,2015-10-30,44 -Females,75-84,1399,2015-11-06,45 -Females,75-84,1305,2015-11-13,46 -Females,75-84,1281,2015-11-20,47 -Females,75-84,1249,2015-11-27,48 -Females,75-84,1445,2015-12-04,49 -Females,75-84,1366,2015-12-11,50 -Females,75-84,1421,2015-12-18,51 -Females,75-84,1191,2015-12-25,52 -Females,75-84,1058,2016-01-01,53 -Females,85+,3477,2015-01-02,1 -Females,85+,4791,2015-01-09,2 -Females,85+,4342,2015-01-16,3 -Females,85+,3950,2015-01-23,4 -Females,85+,3577,2015-01-30,5 -Females,85+,3266,2015-02-06,6 -Females,85+,3099,2015-02-13,7 -Females,85+,3008,2015-02-20,8 -Females,85+,2982,2015-02-27,9 -Females,85+,3063,2015-03-06,10 -Females,85+,2957,2015-03-13,11 -Females,85+,2698,2015-03-20,12 -Females,85+,2694,2015-03-27,13 -Females,85+,2350,2015-04-03,14 -Females,85+,2536,2015-04-10,15 -Females,85+,2978,2015-04-17,16 -Females,85+,2683,2015-04-24,17 -Females,85+,2529,2015-05-01,18 -Females,85+,2189,2015-05-08,19 -Females,85+,2481,2015-05-15,20 -Females,85+,2420,2015-05-22,21 -Females,85+,1898,2015-05-29,22 -Females,85+,2518,2015-06-05,23 -Females,85+,2269,2015-06-12,24 -Females,85+,2230,2015-06-19,25 -Females,85+,2128,2015-06-26,26 -Females,85+,2231,2015-07-03,27 -Females,85+,2080,2015-07-10,28 -Females,85+,2112,2015-07-17,29 -Females,85+,1984,2015-07-24,30 -Females,85+,2028,2015-07-31,31 -Females,85+,2039,2015-08-07,32 -Females,85+,2186,2015-08-14,33 -Females,85+,2090,2015-08-21,34 -Females,85+,2122,2015-08-28,35 -Females,85+,1820,2015-09-04,36 -Females,85+,2227,2015-09-11,37 -Females,85+,2205,2015-09-18,38 -Females,85+,2283,2015-09-25,39 -Females,85+,2290,2015-10-02,40 -Females,85+,2391,2015-10-09,41 -Females,85+,2258,2015-10-16,42 -Females,85+,2310,2015-10-23,43 -Females,85+,2403,2015-10-30,44 -Females,85+,2421,2015-11-06,45 -Females,85+,2447,2015-11-13,46 -Females,85+,2357,2015-11-20,47 -Females,85+,2405,2015-11-27,48 -Females,85+,2484,2015-12-04,49 -Females,85+,2601,2015-12-11,50 -Females,85+,2667,2015-12-18,51 -Females,85+,2146,2015-12-25,52 -Females,85+,1803,2016-01-01,53 -Region,North East,699,2015-01-02,1 -Region,North East,753,2015-01-09,2 -Region,North East,799,2015-01-16,3 -Region,North East,798,2015-01-23,4 -Region,North East,717,2015-01-30,5 -Region,North East,669,2015-02-06,6 -Region,North East,661,2015-02-13,7 -Region,North East,669,2015-02-20,8 -Region,North East,606,2015-02-27,9 -Region,North East,622,2015-03-06,10 -Region,North East,573,2015-03-13,11 -Region,North East,566,2015-03-20,12 -Region,North East,512,2015-03-27,13 -Region,North East,490,2015-04-03,14 -Region,North East,533,2015-04-10,15 -Region,North East,626,2015-04-17,16 -Region,North East,601,2015-04-24,17 -Region,North East,516,2015-05-01,18 -Region,North East,503,2015-05-08,19 -Region,North East,544,2015-05-15,20 -Region,North East,514,2015-05-22,21 -Region,North East,457,2015-05-29,22 -Region,North East,472,2015-06-05,23 -Region,North East,528,2015-06-12,24 -Region,North East,459,2015-06-19,25 -Region,North East,514,2015-06-26,26 -Region,North East,489,2015-07-03,27 -Region,North East,491,2015-07-10,28 -Region,North East,466,2015-07-17,29 -Region,North East,459,2015-07-24,30 -Region,North East,437,2015-07-31,31 -Region,North East,462,2015-08-07,32 -Region,North East,458,2015-08-14,33 -Region,North East,475,2015-08-21,34 -Region,North East,445,2015-08-28,35 -Region,North East,438,2015-09-04,36 -Region,North East,471,2015-09-11,37 -Region,North East,462,2015-09-18,38 -Region,North East,476,2015-09-25,39 -Region,North East,495,2015-10-02,40 -Region,North East,505,2015-10-09,41 -Region,North East,494,2015-10-16,42 -Region,North East,480,2015-10-23,43 -Region,North East,523,2015-10-30,44 -Region,North East,524,2015-11-06,45 -Region,North East,530,2015-11-13,46 -Region,North East,527,2015-11-20,47 -Region,North East,512,2015-11-27,48 -Region,North East,534,2015-12-04,49 -Region,North East,540,2015-12-11,50 -Region,North East,618,2015-12-18,51 -Region,North East,480,2015-12-25,52 -Region,North East,407,2016-01-01,53 -Region,North West,1718,2015-01-02,1 -Region,North West,2282,2015-01-09,2 -Region,North West,1968,2015-01-16,3 -Region,North West,1806,2015-01-23,4 -Region,North West,1669,2015-01-30,5 -Region,North West,1586,2015-02-06,6 -Region,North West,1608,2015-02-13,7 -Region,North West,1466,2015-02-20,8 -Region,North West,1466,2015-02-27,9 -Region,North West,1559,2015-03-06,10 -Region,North West,1462,2015-03-13,11 -Region,North West,1401,2015-03-20,12 -Region,North West,1392,2015-03-27,13 -Region,North West,1251,2015-04-03,14 -Region,North West,1384,2015-04-10,15 -Region,North West,1521,2015-04-17,16 -Region,North West,1405,2015-04-24,17 -Region,North West,1385,2015-05-01,18 -Region,North West,1166,2015-05-08,19 -Region,North West,1404,2015-05-15,20 -Region,North West,1367,2015-05-22,21 -Region,North West,1116,2015-05-29,22 -Region,North West,1337,2015-06-05,23 -Region,North West,1262,2015-06-12,24 -Region,North West,1248,2015-06-19,25 -Region,North West,1254,2015-06-26,26 -Region,North West,1293,2015-07-03,27 -Region,North West,1238,2015-07-10,28 -Region,North West,1127,2015-07-17,29 -Region,North West,1196,2015-07-24,30 -Region,North West,1195,2015-07-31,31 -Region,North West,1227,2015-08-07,32 -Region,North West,1250,2015-08-14,33 -Region,North West,1223,2015-08-21,34 -Region,North West,1262,2015-08-28,35 -Region,North West,1044,2015-09-04,36 -Region,North West,1262,2015-09-11,37 -Region,North West,1175,2015-09-18,38 -Region,North West,1267,2015-09-25,39 -Region,North West,1260,2015-10-02,40 -Region,North West,1283,2015-10-09,41 -Region,North West,1291,2015-10-16,42 -Region,North West,1276,2015-10-23,43 -Region,North West,1299,2015-10-30,44 -Region,North West,1409,2015-11-06,45 -Region,North West,1376,2015-11-13,46 -Region,North West,1317,2015-11-20,47 -Region,North West,1322,2015-11-27,48 -Region,North West,1425,2015-12-04,49 -Region,North West,1400,2015-12-11,50 -Region,North West,1526,2015-12-18,51 -Region,North West,1167,2015-12-25,52 -Region,North West,1074,2016-01-01,53 -Region,Yorkshire and The Humber,1261,2015-01-02,1 -Region,Yorkshire and The Humber,1607,2015-01-09,2 -Region,Yorkshire and The Humber,1442,2015-01-16,3 -Region,Yorkshire and The Humber,1386,2015-01-23,4 -Region,Yorkshire and The Humber,1220,2015-01-30,5 -Region,Yorkshire and The Humber,1151,2015-02-06,6 -Region,Yorkshire and The Humber,1128,2015-02-13,7 -Region,Yorkshire and The Humber,1068,2015-02-20,8 -Region,Yorkshire and The Humber,1113,2015-02-27,9 -Region,Yorkshire and The Humber,1106,2015-03-06,10 -Region,Yorkshire and The Humber,1040,2015-03-13,11 -Region,Yorkshire and The Humber,982,2015-03-20,12 -Region,Yorkshire and The Humber,1032,2015-03-27,13 -Region,Yorkshire and The Humber,841,2015-04-03,14 -Region,Yorkshire and The Humber,1023,2015-04-10,15 -Region,Yorkshire and The Humber,1103,2015-04-17,16 -Region,Yorkshire and The Humber,1009,2015-04-24,17 -Region,Yorkshire and The Humber,950,2015-05-01,18 -Region,Yorkshire and The Humber,895,2015-05-08,19 -Region,Yorkshire and The Humber,1038,2015-05-15,20 -Region,Yorkshire and The Humber,989,2015-05-22,21 -Region,Yorkshire and The Humber,866,2015-05-29,22 -Region,Yorkshire and The Humber,1024,2015-06-05,23 -Region,Yorkshire and The Humber,953,2015-06-12,24 -Region,Yorkshire and The Humber,896,2015-06-19,25 -Region,Yorkshire and The Humber,916,2015-06-26,26 -Region,Yorkshire and The Humber,868,2015-07-03,27 -Region,Yorkshire and The Humber,851,2015-07-10,28 -Region,Yorkshire and The Humber,855,2015-07-17,29 -Region,Yorkshire and The Humber,846,2015-07-24,30 -Region,Yorkshire and The Humber,846,2015-07-31,31 -Region,Yorkshire and The Humber,953,2015-08-07,32 -Region,Yorkshire and The Humber,888,2015-08-14,33 -Region,Yorkshire and The Humber,915,2015-08-21,34 -Region,Yorkshire and The Humber,896,2015-08-28,35 -Region,Yorkshire and The Humber,772,2015-09-04,36 -Region,Yorkshire and The Humber,931,2015-09-11,37 -Region,Yorkshire and The Humber,852,2015-09-18,38 -Region,Yorkshire and The Humber,922,2015-09-25,39 -Region,Yorkshire and The Humber,908,2015-10-02,40 -Region,Yorkshire and The Humber,915,2015-10-09,41 -Region,Yorkshire and The Humber,895,2015-10-16,42 -Region,Yorkshire and The Humber,951,2015-10-23,43 -Region,Yorkshire and The Humber,886,2015-10-30,44 -Region,Yorkshire and The Humber,1014,2015-11-06,45 -Region,Yorkshire and The Humber,960,2015-11-13,46 -Region,Yorkshire and The Humber,937,2015-11-20,47 -Region,Yorkshire and The Humber,994,2015-11-27,48 -Region,Yorkshire and The Humber,1012,2015-12-04,49 -Region,Yorkshire and The Humber,1050,2015-12-11,50 -Region,Yorkshire and The Humber,1060,2015-12-18,51 -Region,Yorkshire and The Humber,891,2015-12-25,52 -Region,Yorkshire and The Humber,755,2016-01-01,53 -Region,East Midlands,1012,2015-01-02,1 -Region,East Midlands,1328,2015-01-09,2 -Region,East Midlands,1286,2015-01-16,3 -Region,East Midlands,1206,2015-01-23,4 -Region,East Midlands,1119,2015-01-30,5 -Region,East Midlands,1071,2015-02-06,6 -Region,East Midlands,1021,2015-02-13,7 -Region,East Midlands,965,2015-02-20,8 -Region,East Midlands,973,2015-02-27,9 -Region,East Midlands,966,2015-03-06,10 -Region,East Midlands,904,2015-03-13,11 -Region,East Midlands,872,2015-03-20,12 -Region,East Midlands,891,2015-03-27,13 -Region,East Midlands,784,2015-04-03,14 -Region,East Midlands,917,2015-04-10,15 -Region,East Midlands,999,2015-04-17,16 -Region,East Midlands,889,2015-04-24,17 -Region,East Midlands,856,2015-05-01,18 -Region,East Midlands,748,2015-05-08,19 -Region,East Midlands,890,2015-05-15,20 -Region,East Midlands,870,2015-05-22,21 -Region,East Midlands,663,2015-05-29,22 -Region,East Midlands,865,2015-06-05,23 -Region,East Midlands,817,2015-06-12,24 -Region,East Midlands,757,2015-06-19,25 -Region,East Midlands,756,2015-06-26,26 -Region,East Midlands,750,2015-07-03,27 -Region,East Midlands,817,2015-07-10,28 -Region,East Midlands,781,2015-07-17,29 -Region,East Midlands,734,2015-07-24,30 -Region,East Midlands,715,2015-07-31,31 -Region,East Midlands,664,2015-08-07,32 -Region,East Midlands,792,2015-08-14,33 -Region,East Midlands,747,2015-08-21,34 -Region,East Midlands,797,2015-08-28,35 -Region,East Midlands,663,2015-09-04,36 -Region,East Midlands,814,2015-09-11,37 -Region,East Midlands,748,2015-09-18,38 -Region,East Midlands,795,2015-09-25,39 -Region,East Midlands,814,2015-10-02,40 -Region,East Midlands,821,2015-10-09,41 -Region,East Midlands,809,2015-10-16,42 -Region,East Midlands,835,2015-10-23,43 -Region,East Midlands,814,2015-10-30,44 -Region,East Midlands,883,2015-11-06,45 -Region,East Midlands,767,2015-11-13,46 -Region,East Midlands,844,2015-11-20,47 -Region,East Midlands,844,2015-11-27,48 -Region,East Midlands,919,2015-12-04,49 -Region,East Midlands,915,2015-12-11,50 -Region,East Midlands,897,2015-12-18,51 -Region,East Midlands,707,2015-12-25,52 -Region,East Midlands,646,2016-01-01,53 -Region,West Midlands,1296,2015-01-02,1 -Region,West Midlands,1713,2015-01-09,2 -Region,West Midlands,1542,2015-01-16,3 -Region,West Midlands,1400,2015-01-23,4 -Region,West Midlands,1395,2015-01-30,5 -Region,West Midlands,1229,2015-02-06,6 -Region,West Midlands,1161,2015-02-13,7 -Region,West Midlands,1152,2015-02-20,8 -Region,West Midlands,1149,2015-02-27,9 -Region,West Midlands,1188,2015-03-06,10 -Region,West Midlands,1101,2015-03-13,11 -Region,West Midlands,1083,2015-03-20,12 -Region,West Midlands,1071,2015-03-27,13 -Region,West Midlands,980,2015-04-03,14 -Region,West Midlands,994,2015-04-10,15 -Region,West Midlands,1294,2015-04-17,16 -Region,West Midlands,1115,2015-04-24,17 -Region,West Midlands,1053,2015-05-01,18 -Region,West Midlands,949,2015-05-08,19 -Region,West Midlands,1057,2015-05-15,20 -Region,West Midlands,1018,2015-05-22,21 -Region,West Midlands,844,2015-05-29,22 -Region,West Midlands,1042,2015-06-05,23 -Region,West Midlands,975,2015-06-12,24 -Region,West Midlands,943,2015-06-19,25 -Region,West Midlands,927,2015-06-26,26 -Region,West Midlands,964,2015-07-03,27 -Region,West Midlands,941,2015-07-10,28 -Region,West Midlands,882,2015-07-17,29 -Region,West Midlands,938,2015-07-24,30 -Region,West Midlands,917,2015-07-31,31 -Region,West Midlands,913,2015-08-07,32 -Region,West Midlands,950,2015-08-14,33 -Region,West Midlands,969,2015-08-21,34 -Region,West Midlands,834,2015-08-28,35 -Region,West Midlands,774,2015-09-04,36 -Region,West Midlands,932,2015-09-11,37 -Region,West Midlands,973,2015-09-18,38 -Region,West Midlands,969,2015-09-25,39 -Region,West Midlands,957,2015-10-02,40 -Region,West Midlands,951,2015-10-09,41 -Region,West Midlands,997,2015-10-16,42 -Region,West Midlands,1053,2015-10-23,43 -Region,West Midlands,967,2015-10-30,44 -Region,West Midlands,1084,2015-11-06,45 -Region,West Midlands,1027,2015-11-13,46 -Region,West Midlands,1071,2015-11-20,47 -Region,West Midlands,990,2015-11-27,48 -Region,West Midlands,1087,2015-12-04,49 -Region,West Midlands,1006,2015-12-11,50 -Region,West Midlands,1101,2015-12-18,51 -Region,West Midlands,826,2015-12-25,52 -Region,West Midlands,799,2016-01-01,53 -Region,East,1221,2015-01-02,1 -Region,East,1712,2015-01-09,2 -Region,East,1657,2015-01-16,3 -Region,East,1565,2015-01-23,4 -Region,East,1450,2015-01-30,5 -Region,East,1360,2015-02-06,6 -Region,East,1284,2015-02-13,7 -Region,East,1276,2015-02-20,8 -Region,East,1286,2015-02-27,9 -Region,East,1232,2015-03-06,10 -Region,East,1172,2015-03-13,11 -Region,East,1158,2015-03-20,12 -Region,East,1098,2015-03-27,13 -Region,East,971,2015-04-03,14 -Region,East,1062,2015-04-10,15 -Region,East,1289,2015-04-17,16 -Region,East,1050,2015-04-24,17 -Region,East,1112,2015-05-01,18 -Region,East,910,2015-05-08,19 -Region,East,1099,2015-05-15,20 -Region,East,989,2015-05-22,21 -Region,East,838,2015-05-29,22 -Region,East,1150,2015-06-05,23 -Region,East,997,2015-06-12,24 -Region,East,1020,2015-06-19,25 -Region,East,998,2015-06-26,26 -Region,East,977,2015-07-03,27 -Region,East,939,2015-07-10,28 -Region,East,952,2015-07-17,29 -Region,East,934,2015-07-24,30 -Region,East,941,2015-07-31,31 -Region,East,908,2015-08-07,32 -Region,East,1014,2015-08-14,33 -Region,East,943,2015-08-21,34 -Region,East,981,2015-08-28,35 -Region,East,856,2015-09-04,36 -Region,East,922,2015-09-11,37 -Region,East,942,2015-09-18,38 -Region,East,981,2015-09-25,39 -Region,East,984,2015-10-02,40 -Region,East,1105,2015-10-09,41 -Region,East,1030,2015-10-16,42 -Region,East,1022,2015-10-23,43 -Region,East,1030,2015-10-30,44 -Region,East,1011,2015-11-06,45 -Region,East,1018,2015-11-13,46 -Region,East,1043,2015-11-20,47 -Region,East,1066,2015-11-27,48 -Region,East,1065,2015-12-04,49 -Region,East,1018,2015-12-11,50 -Region,East,1086,2015-12-18,51 -Region,East,916,2015-12-25,52 -Region,East,653,2016-01-01,53 -Region,London,1233,2015-01-02,1 -Region,London,1549,2015-01-09,2 -Region,London,1275,2015-01-16,3 -Region,London,1220,2015-01-23,4 -Region,London,1119,2015-01-30,5 -Region,London,1097,2015-02-06,6 -Region,London,1108,2015-02-13,7 -Region,London,1102,2015-02-20,8 -Region,London,1062,2015-02-27,9 -Region,London,1063,2015-03-06,10 -Region,London,1070,2015-03-13,11 -Region,London,1092,2015-03-20,12 -Region,London,1080,2015-03-27,13 -Region,London,877,2015-04-03,14 -Region,London,1002,2015-04-10,15 -Region,London,1089,2015-04-17,16 -Region,London,1000,2015-04-24,17 -Region,London,961,2015-05-01,18 -Region,London,827,2015-05-08,19 -Region,London,949,2015-05-15,20 -Region,London,906,2015-05-22,21 -Region,London,793,2015-05-29,22 -Region,London,961,2015-06-05,23 -Region,London,880,2015-06-12,24 -Region,London,892,2015-06-19,25 -Region,London,887,2015-06-26,26 -Region,London,901,2015-07-03,27 -Region,London,842,2015-07-10,28 -Region,London,881,2015-07-17,29 -Region,London,833,2015-07-24,30 -Region,London,780,2015-07-31,31 -Region,London,858,2015-08-07,32 -Region,London,879,2015-08-14,33 -Region,London,901,2015-08-21,34 -Region,London,855,2015-08-28,35 -Region,London,803,2015-09-04,36 -Region,London,867,2015-09-11,37 -Region,London,901,2015-09-18,38 -Region,London,917,2015-09-25,39 -Region,London,918,2015-10-02,40 -Region,London,976,2015-10-09,41 -Region,London,912,2015-10-16,42 -Region,London,921,2015-10-23,43 -Region,London,969,2015-10-30,44 -Region,London,955,2015-11-06,45 -Region,London,993,2015-11-13,46 -Region,London,966,2015-11-20,47 -Region,London,915,2015-11-27,48 -Region,London,998,2015-12-04,49 -Region,London,985,2015-12-11,50 -Region,London,990,2015-12-18,51 -Region,London,870,2015-12-25,52 -Region,London,766,2016-01-01,53 -Region,South East,1811,2015-01-02,1 -Region,South East,2525,2015-01-09,2 -Region,South East,2427,2015-01-16,3 -Region,South East,2196,2015-01-23,4 -Region,South East,1991,2015-01-30,5 -Region,South East,1843,2015-02-06,6 -Region,South East,1836,2015-02-13,7 -Region,South East,1713,2015-02-20,8 -Region,South East,1767,2015-02-27,9 -Region,South East,1709,2015-03-06,10 -Region,South East,1731,2015-03-13,11 -Region,South East,1531,2015-03-20,12 -Region,South East,1566,2015-03-27,13 -Region,South East,1352,2015-04-03,14 -Region,South East,1488,2015-04-10,15 -Region,South East,1810,2015-04-17,16 -Region,South East,1708,2015-04-24,17 -Region,South East,1530,2015-05-01,18 -Region,South East,1343,2015-05-08,19 -Region,South East,1552,2015-05-15,20 -Region,South East,1587,2015-05-22,21 -Region,South East,1216,2015-05-29,22 -Region,South East,1538,2015-06-05,23 -Region,South East,1483,2015-06-12,24 -Region,South East,1496,2015-06-19,25 -Region,South East,1396,2015-06-26,26 -Region,South East,1382,2015-07-03,27 -Region,South East,1370,2015-07-10,28 -Region,South East,1320,2015-07-17,29 -Region,South East,1382,2015-07-24,30 -Region,South East,1217,2015-07-31,31 -Region,South East,1388,2015-08-07,32 -Region,South East,1370,2015-08-14,33 -Region,South East,1364,2015-08-21,34 -Region,South East,1358,2015-08-28,35 -Region,South East,1188,2015-09-04,36 -Region,South East,1423,2015-09-11,37 -Region,South East,1448,2015-09-18,38 -Region,South East,1540,2015-09-25,39 -Region,South East,1419,2015-10-02,40 -Region,South East,1457,2015-10-09,41 -Region,South East,1402,2015-10-16,42 -Region,South East,1461,2015-10-23,43 -Region,South East,1506,2015-10-30,44 -Region,South East,1482,2015-11-06,45 -Region,South East,1544,2015-11-13,46 -Region,South East,1470,2015-11-20,47 -Region,South East,1536,2015-11-27,48 -Region,South East,1522,2015-12-04,49 -Region,South East,1536,2015-12-11,50 -Region,South East,1656,2015-12-18,51 -Region,South East,1347,2015-12-25,52 -Region,South East,1123,2016-01-01,53 -Region,South West,1272,2015-01-02,1 -Region,South West,1697,2015-01-09,2 -Region,South West,1498,2015-01-16,3 -Region,South West,1510,2015-01-23,4 -Region,South West,1398,2015-01-30,5 -Region,South West,1297,2015-02-06,6 -Region,South West,1283,2015-02-13,7 -Region,South West,1257,2015-02-20,8 -Region,South West,1290,2015-02-27,9 -Region,South West,1290,2015-03-06,10 -Region,South West,1219,2015-03-13,11 -Region,South West,1192,2015-03-20,12 -Region,South West,1164,2015-03-27,13 -Region,South West,920,2015-04-03,14 -Region,South West,1005,2015-04-10,15 -Region,South West,1212,2015-04-17,16 -Region,South West,1129,2015-04-24,17 -Region,South West,1110,2015-05-01,18 -Region,South West,901,2015-05-08,19 -Region,South West,1100,2015-05-15,20 -Region,South West,1122,2015-05-22,21 -Region,South West,816,2015-05-29,22 -Region,South West,1094,2015-06-05,23 -Region,South West,1022,2015-06-12,24 -Region,South West,983,2015-06-19,25 -Region,South West,916,2015-06-26,26 -Region,South West,1017,2015-07-03,27 -Region,South West,949,2015-07-10,28 -Region,South West,933,2015-07-17,29 -Region,South West,905,2015-07-24,30 -Region,South West,1000,2015-07-31,31 -Region,South West,895,2015-08-07,32 -Region,South West,974,2015-08-14,33 -Region,South West,1000,2015-08-21,34 -Region,South West,967,2015-08-28,35 -Region,South West,825,2015-09-04,36 -Region,South West,1065,2015-09-11,37 -Region,South West,1020,2015-09-18,38 -Region,South West,975,2015-09-25,39 -Region,South West,1086,2015-10-02,40 -Region,South West,1076,2015-10-09,41 -Region,South West,1039,2015-10-16,42 -Region,South West,1079,2015-10-23,43 -Region,South West,1003,2015-10-30,44 -Region,South West,1002,2015-11-06,45 -Region,South West,1081,2015-11-13,46 -Region,South West,1019,2015-11-20,47 -Region,South West,1037,2015-11-27,48 -Region,South West,1127,2015-12-04,49 -Region,South West,1102,2015-12-11,50 -Region,South West,1089,2015-12-18,51 -Region,South West,877,2015-12-25,52 -Region,South West,757,2016-01-01,53 -Region,Wales,725,2015-01-02,1 -Region,Wales,1031,2015-01-09,2 -Region,Wales,936,2015-01-16,3 -Region,Wales,828,2015-01-23,4 -Region,Wales,801,2015-01-30,5 -Region,Wales,720,2015-02-06,6 -Region,Wales,710,2015-02-13,7 -Region,Wales,739,2015-02-20,8 -Region,Wales,736,2015-02-27,9 -Region,Wales,712,2015-03-06,10 -Region,Wales,661,2015-03-13,11 -Region,Wales,680,2015-03-20,12 -Region,Wales,666,2015-03-27,13 -Region,Wales,580,2015-04-03,14 -Region,Wales,660,2015-04-10,15 -Region,Wales,671,2015-04-17,16 -Region,Wales,662,2015-04-24,17 -Region,Wales,628,2015-05-01,18 -Region,Wales,589,2015-05-08,19 -Region,Wales,622,2015-05-15,20 -Region,Wales,614,2015-05-22,21 -Region,Wales,588,2015-05-29,22 -Region,Wales,648,2015-06-05,23 -Region,Wales,606,2015-06-12,24 -Region,Wales,595,2015-06-19,25 -Region,Wales,597,2015-06-26,26 -Region,Wales,535,2015-07-03,27 -Region,Wales,554,2015-07-10,28 -Region,Wales,574,2015-07-17,29 -Region,Wales,529,2015-07-24,30 -Region,Wales,546,2015-07-31,31 -Region,Wales,564,2015-08-07,32 -Region,Wales,548,2015-08-14,33 -Region,Wales,557,2015-08-21,34 -Region,Wales,603,2015-08-28,35 -Region,Wales,489,2015-09-04,36 -Region,Wales,554,2015-09-11,37 -Region,Wales,555,2015-09-18,38 -Region,Wales,664,2015-09-25,39 -Region,Wales,552,2015-10-02,40 -Region,Wales,652,2015-10-09,41 -Region,Wales,612,2015-10-16,42 -Region,Wales,607,2015-10-23,43 -Region,Wales,593,2015-10-30,44 -Region,Wales,606,2015-11-06,45 -Region,Wales,613,2015-11-13,46 -Region,Wales,611,2015-11-20,47 -Region,Wales,589,2015-11-27,48 -Region,Wales,659,2015-12-04,49 -Region,Wales,688,2015-12-11,50 -Region,Wales,646,2015-12-18,51 -Region,Wales,535,2015-12-25,52 -Region,Wales,516,2016-01-01,53 -Total deaths,all ages,13045,2016-01-08,1 -Total deaths,all ages,11501,2016-01-15,2 -Total deaths,all ages,11473,2016-01-22,3 -Total deaths,all ages,11317,2016-01-29,4 -Total deaths,all ages,11052,2016-02-05,5 -Total deaths,all ages,11170,2016-02-12,6 -Total deaths,all ages,10590,2016-02-19,7 -Total deaths,all ages,11056,2016-02-26,8 -Total deaths,all ages,11285,2016-03-04,9 -Total deaths,all ages,11010,2016-03-11,10 -Total deaths,all ages,11022,2016-03-18,11 -Total deaths,all ages,9635,2016-03-25,12 -Total deaths,all ages,10286,2016-04-01,13 -Total deaths,all ages,11599,2016-04-08,14 -Total deaths,all ages,11417,2016-04-15,15 -Total deaths,all ages,10925,2016-04-22,16 -Total deaths,all ages,10413,2016-04-29,17 -Total deaths,all ages,9137,2016-05-06,18 -Total deaths,all ages,10637,2016-05-13,19 -Total deaths,all ages,9953,2016-05-20,20 -Total deaths,all ages,9739,2016-05-27,21 -Total deaths,all ages,7909,2016-06-03,22 -Total deaths,all ages,9873,2016-06-10,23 -Total deaths,all ages,9386,2016-06-17,24 -Total deaths,all ages,9365,2016-06-24,25 -Total deaths,all ages,9228,2016-07-01,26 -Total deaths,all ages,9138,2016-07-08,27 -Total deaths,all ages,9388,2016-07-15,28 -Total deaths,all ages,9350,2016-07-22,29 -Total deaths,all ages,9335,2016-07-29,30 -Total deaths,all ages,9182,2016-08-05,31 -Total deaths,all ages,9172,2016-08-12,32 -Total deaths,all ages,9070,2016-08-19,33 -Total deaths,all ages,9319,2016-08-26,34 -Total deaths,all ages,7923,2016-09-02,35 -Total deaths,all ages,9399,2016-09-09,36 -Total deaths,all ages,9124,2016-09-16,37 -Total deaths,all ages,8945,2016-09-23,38 -Total deaths,all ages,8994,2016-09-30,39 -Total deaths,all ages,9291,2016-10-07,40 -Total deaths,all ages,9719,2016-10-14,41 -Total deaths,all ages,9768,2016-10-21,42 -Total deaths,all ages,9724,2016-10-28,43 -Total deaths,all ages,10152,2016-11-04,44 -Total deaths,all ages,10470,2016-11-11,45 -Total deaths,all ages,10694,2016-11-18,46 -Total deaths,all ages,10603,2016-11-25,47 -Total deaths,all ages,10439,2016-12-02,48 -Total deaths,all ages,11223,2016-12-09,49 -Total deaths,all ages,10533,2016-12-16,50 -Total deaths,all ages,11493,2016-12-23,51 -Total deaths,all ages,8003,2016-12-30,52 -Total deaths,average of same week over 5 years,11701.4,2016-01-08,1 -Total deaths,average of same week over 5 years,13016.4,2016-01-15,2 -Total deaths,average of same week over 5 years,11765.4,2016-01-22,3 -Total deaths,average of same week over 5 years,11289,2016-01-29,4 -Total deaths,average of same week over 5 years,10965.6,2016-02-05,5 -Total deaths,average of same week over 5 years,10704,2016-02-12,6 -Total deaths,average of same week over 5 years,10669.4,2016-02-19,7 -Total deaths,average of same week over 5 years,10657.6,2016-02-26,8 -Total deaths,average of same week over 5 years,10613,2016-03-04,9 -Total deaths,average of same week over 5 years,10544,2016-03-11,10 -Total deaths,average of same week over 5 years,10405,2016-03-18,11 -Total deaths,average of same week over 5 years,10209.4,2016-03-25,12 -Total deaths,average of same week over 5 years,9668,2016-04-01,13 -Total deaths,average of same week over 5 years,9592.4,2016-04-08,14 -Total deaths,average of same week over 5 years,10206.2,2016-04-15,15 -Total deaths,average of same week over 5 years,10104.8,2016-04-22,16 -Total deaths,average of same week over 5 years,9776.6,2016-04-29,17 -Total deaths,average of same week over 5 years,10127.8,2016-05-06,18 -Total deaths,average of same week over 5 years,9058.4,2016-05-13,19 -Total deaths,average of same week over 5 years,9699.2,2016-05-20,20 -Total deaths,average of same week over 5 years,9524,2016-05-27,21 -Total deaths,average of same week over 5 years,8417.2,2016-06-03,22 -Total deaths,average of same week over 5 years,9047.2,2016-06-10,23 -Total deaths,average of same week over 5 years,9388.4,2016-06-17,24 -Total deaths,average of same week over 5 years,8986,2016-06-24,25 -Total deaths,average of same week over 5 years,8852,2016-07-01,26 -Total deaths,average of same week over 5 years,8872.2,2016-07-08,27 -Total deaths,average of same week over 5 years,8706.8,2016-07-15,28 -Total deaths,average of same week over 5 years,8776.2,2016-07-22,29 -Total deaths,average of same week over 5 years,8712.2,2016-07-29,30 -Total deaths,average of same week over 5 years,8682.6,2016-08-05,31 -Total deaths,average of same week over 5 years,8651.4,2016-08-12,32 -Total deaths,average of same week over 5 years,8671.8,2016-08-19,33 -Total deaths,average of same week over 5 years,8783.4,2016-08-26,34 -Total deaths,average of same week over 5 years,8020,2016-09-02,35 -Total deaths,average of same week over 5 years,8813.2,2016-09-09,36 -Total deaths,average of same week over 5 years,8825.8,2016-09-16,37 -Total deaths,average of same week over 5 years,8839.4,2016-09-23,38 -Total deaths,average of same week over 5 years,9105.6,2016-09-30,39 -Total deaths,average of same week over 5 years,9133.2,2016-10-07,40 -Total deaths,average of same week over 5 years,9210,2016-10-14,41 -Total deaths,average of same week over 5 years,9225.6,2016-10-21,42 -Total deaths,average of same week over 5 years,9445.4,2016-10-28,43 -Total deaths,average of same week over 5 years,9459,2016-11-04,44 -Total deaths,average of same week over 5 years,9584.8,2016-11-11,45 -Total deaths,average of same week over 5 years,9751.4,2016-11-18,46 -Total deaths,average of same week over 5 years,9572,2016-11-25,47 -Total deaths,average of same week over 5 years,9615.4,2016-12-02,48 -Total deaths,average of same week over 5 years,10042,2016-12-09,49 -Total deaths,average of same week over 5 years,10317,2016-12-16,50 -Total deaths,average of same week over 5 years,11061.8,2016-12-23,51 -Total deaths,average of same week over 5 years,7925,2016-12-30,52 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),2046,2016-01-08,1 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1835,2016-01-15,2 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1775,2016-01-22,3 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1810,2016-01-29,4 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1748,2016-02-05,5 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1730,2016-02-12,6 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1700,2016-02-19,7 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1734,2016-02-26,8 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1774,2016-03-04,9 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1768,2016-03-11,10 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1709,2016-03-18,11 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1485,2016-03-25,12 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1688,2016-04-01,13 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1971,2016-04-08,14 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1809,2016-04-15,15 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1597,2016-04-22,16 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1396,2016-04-29,17 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1261,2016-05-06,18 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1447,2016-05-13,19 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1328,2016-05-20,20 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1248,2016-05-27,21 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),982,2016-06-03,22 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1292,2016-06-10,23 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1225,2016-06-17,24 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1206,2016-06-24,25 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1106,2016-07-01,26 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1062,2016-07-08,27 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1101,2016-07-15,28 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1168,2016-07-22,29 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1190,2016-07-29,30 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1112,2016-08-05,31 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1065,2016-08-12,32 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1032,2016-08-19,33 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1093,2016-08-26,34 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),917,2016-09-02,35 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1036,2016-09-09,36 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1027,2016-09-16,37 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1039,2016-09-23,38 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),979,2016-09-30,39 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1060,2016-10-07,40 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1153,2016-10-14,41 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1238,2016-10-21,42 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1270,2016-10-28,43 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1276,2016-11-04,44 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1342,2016-11-11,45 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1374,2016-11-18,46 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1413,2016-11-25,47 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1371,2016-12-02,48 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1591,2016-12-09,49 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1522,2016-12-16,50 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1640,2016-12-23,51 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1312,2016-12-30,52 -Persons,Under 1 year,49,2016-01-08,1 -Persons,Under 1 year,64,2016-01-15,2 -Persons,Under 1 year,50,2016-01-22,3 -Persons,Under 1 year,47,2016-01-29,4 -Persons,Under 1 year,60,2016-02-05,5 -Persons,Under 1 year,60,2016-02-12,6 -Persons,Under 1 year,52,2016-02-19,7 -Persons,Under 1 year,58,2016-02-26,8 -Persons,Under 1 year,39,2016-03-04,9 -Persons,Under 1 year,54,2016-03-11,10 -Persons,Under 1 year,55,2016-03-18,11 -Persons,Under 1 year,55,2016-03-25,12 -Persons,Under 1 year,49,2016-04-01,13 -Persons,Under 1 year,53,2016-04-08,14 -Persons,Under 1 year,63,2016-04-15,15 -Persons,Under 1 year,65,2016-04-22,16 -Persons,Under 1 year,43,2016-04-29,17 -Persons,Under 1 year,55,2016-05-06,18 -Persons,Under 1 year,49,2016-05-13,19 -Persons,Under 1 year,61,2016-05-20,20 -Persons,Under 1 year,63,2016-05-27,21 -Persons,Under 1 year,35,2016-06-03,22 -Persons,Under 1 year,58,2016-06-10,23 -Persons,Under 1 year,49,2016-06-17,24 -Persons,Under 1 year,57,2016-06-24,25 -Persons,Under 1 year,46,2016-07-01,26 -Persons,Under 1 year,49,2016-07-08,27 -Persons,Under 1 year,54,2016-07-15,28 -Persons,Under 1 year,55,2016-07-22,29 -Persons,Under 1 year,39,2016-07-29,30 -Persons,Under 1 year,56,2016-08-05,31 -Persons,Under 1 year,57,2016-08-12,32 -Persons,Under 1 year,42,2016-08-19,33 -Persons,Under 1 year,48,2016-08-26,34 -Persons,Under 1 year,43,2016-09-02,35 -Persons,Under 1 year,48,2016-09-09,36 -Persons,Under 1 year,56,2016-09-16,37 -Persons,Under 1 year,58,2016-09-23,38 -Persons,Under 1 year,53,2016-09-30,39 -Persons,Under 1 year,57,2016-10-07,40 -Persons,Under 1 year,72,2016-10-14,41 -Persons,Under 1 year,50,2016-10-21,42 -Persons,Under 1 year,58,2016-10-28,43 -Persons,Under 1 year,52,2016-11-04,44 -Persons,Under 1 year,54,2016-11-11,45 -Persons,Under 1 year,57,2016-11-18,46 -Persons,Under 1 year,49,2016-11-25,47 -Persons,Under 1 year,58,2016-12-02,48 -Persons,Under 1 year,57,2016-12-09,49 -Persons,Under 1 year,72,2016-12-16,50 -Persons,Under 1 year,56,2016-12-23,51 -Persons,Under 1 year,41,2016-12-30,52 -Persons,01-14,17,2016-01-08,1 -Persons,01-14,24,2016-01-15,2 -Persons,01-14,18,2016-01-22,3 -Persons,01-14,14,2016-01-29,4 -Persons,01-14,22,2016-02-05,5 -Persons,01-14,21,2016-02-12,6 -Persons,01-14,22,2016-02-19,7 -Persons,01-14,20,2016-02-26,8 -Persons,01-14,21,2016-03-04,9 -Persons,01-14,22,2016-03-11,10 -Persons,01-14,22,2016-03-18,11 -Persons,01-14,18,2016-03-25,12 -Persons,01-14,15,2016-04-01,13 -Persons,01-14,15,2016-04-08,14 -Persons,01-14,18,2016-04-15,15 -Persons,01-14,24,2016-04-22,16 -Persons,01-14,22,2016-04-29,17 -Persons,01-14,23,2016-05-06,18 -Persons,01-14,19,2016-05-13,19 -Persons,01-14,21,2016-05-20,20 -Persons,01-14,19,2016-05-27,21 -Persons,01-14,19,2016-06-03,22 -Persons,01-14,21,2016-06-10,23 -Persons,01-14,22,2016-06-17,24 -Persons,01-14,15,2016-06-24,25 -Persons,01-14,13,2016-07-01,26 -Persons,01-14,18,2016-07-08,27 -Persons,01-14,15,2016-07-15,28 -Persons,01-14,18,2016-07-22,29 -Persons,01-14,15,2016-07-29,30 -Persons,01-14,19,2016-08-05,31 -Persons,01-14,15,2016-08-12,32 -Persons,01-14,17,2016-08-19,33 -Persons,01-14,16,2016-08-26,34 -Persons,01-14,14,2016-09-02,35 -Persons,01-14,23,2016-09-09,36 -Persons,01-14,15,2016-09-16,37 -Persons,01-14,15,2016-09-23,38 -Persons,01-14,15,2016-09-30,39 -Persons,01-14,21,2016-10-07,40 -Persons,01-14,14,2016-10-14,41 -Persons,01-14,21,2016-10-21,42 -Persons,01-14,16,2016-10-28,43 -Persons,01-14,21,2016-11-04,44 -Persons,01-14,15,2016-11-11,45 -Persons,01-14,26,2016-11-18,46 -Persons,01-14,26,2016-11-25,47 -Persons,01-14,15,2016-12-02,48 -Persons,01-14,28,2016-12-09,49 -Persons,01-14,22,2016-12-16,50 -Persons,01-14,16,2016-12-23,51 -Persons,01-14,7,2016-12-30,52 -Persons,15-44,299,2016-01-08,1 -Persons,15-44,326,2016-01-15,2 -Persons,15-44,345,2016-01-22,3 -Persons,15-44,324,2016-01-29,4 -Persons,15-44,314,2016-02-05,5 -Persons,15-44,331,2016-02-12,6 -Persons,15-44,305,2016-02-19,7 -Persons,15-44,267,2016-02-26,8 -Persons,15-44,318,2016-03-04,9 -Persons,15-44,273,2016-03-11,10 -Persons,15-44,295,2016-03-18,11 -Persons,15-44,247,2016-03-25,12 -Persons,15-44,264,2016-04-01,13 -Persons,15-44,306,2016-04-08,14 -Persons,15-44,311,2016-04-15,15 -Persons,15-44,319,2016-04-22,16 -Persons,15-44,327,2016-04-29,17 -Persons,15-44,348,2016-05-06,18 -Persons,15-44,308,2016-05-13,19 -Persons,15-44,328,2016-05-20,20 -Persons,15-44,326,2016-05-27,21 -Persons,15-44,214,2016-06-03,22 -Persons,15-44,268,2016-06-10,23 -Persons,15-44,255,2016-06-17,24 -Persons,15-44,295,2016-06-24,25 -Persons,15-44,303,2016-07-01,26 -Persons,15-44,287,2016-07-08,27 -Persons,15-44,279,2016-07-15,28 -Persons,15-44,282,2016-07-22,29 -Persons,15-44,312,2016-07-29,30 -Persons,15-44,276,2016-08-05,31 -Persons,15-44,277,2016-08-12,32 -Persons,15-44,276,2016-08-19,33 -Persons,15-44,241,2016-08-26,34 -Persons,15-44,228,2016-09-02,35 -Persons,15-44,283,2016-09-09,36 -Persons,15-44,265,2016-09-16,37 -Persons,15-44,264,2016-09-23,38 -Persons,15-44,297,2016-09-30,39 -Persons,15-44,275,2016-10-07,40 -Persons,15-44,272,2016-10-14,41 -Persons,15-44,276,2016-10-21,42 -Persons,15-44,271,2016-10-28,43 -Persons,15-44,281,2016-11-04,44 -Persons,15-44,278,2016-11-11,45 -Persons,15-44,355,2016-11-18,46 -Persons,15-44,284,2016-11-25,47 -Persons,15-44,345,2016-12-02,48 -Persons,15-44,310,2016-12-09,49 -Persons,15-44,281,2016-12-16,50 -Persons,15-44,339,2016-12-23,51 -Persons,15-44,178,2016-12-30,52 -Persons,45-64,1482,2016-01-08,1 -Persons,45-64,1363,2016-01-15,2 -Persons,45-64,1293,2016-01-22,3 -Persons,45-64,1322,2016-01-29,4 -Persons,45-64,1281,2016-02-05,5 -Persons,45-64,1356,2016-02-12,6 -Persons,45-64,1333,2016-02-19,7 -Persons,45-64,1294,2016-02-26,8 -Persons,45-64,1328,2016-03-04,9 -Persons,45-64,1340,2016-03-11,10 -Persons,45-64,1358,2016-03-18,11 -Persons,45-64,1148,2016-03-25,12 -Persons,45-64,1184,2016-04-01,13 -Persons,45-64,1327,2016-04-08,14 -Persons,45-64,1312,2016-04-15,15 -Persons,45-64,1292,2016-04-22,16 -Persons,45-64,1301,2016-04-29,17 -Persons,45-64,1075,2016-05-06,18 -Persons,45-64,1277,2016-05-13,19 -Persons,45-64,1149,2016-05-20,20 -Persons,45-64,1185,2016-05-27,21 -Persons,45-64,963,2016-06-03,22 -Persons,45-64,1181,2016-06-10,23 -Persons,45-64,1195,2016-06-17,24 -Persons,45-64,1161,2016-06-24,25 -Persons,45-64,1192,2016-07-01,26 -Persons,45-64,1176,2016-07-08,27 -Persons,45-64,1153,2016-07-15,28 -Persons,45-64,1115,2016-07-22,29 -Persons,45-64,1074,2016-07-29,30 -Persons,45-64,1171,2016-08-05,31 -Persons,45-64,1183,2016-08-12,32 -Persons,45-64,1078,2016-08-19,33 -Persons,45-64,1104,2016-08-26,34 -Persons,45-64,968,2016-09-02,35 -Persons,45-64,1161,2016-09-09,36 -Persons,45-64,1170,2016-09-16,37 -Persons,45-64,1132,2016-09-23,38 -Persons,45-64,1151,2016-09-30,39 -Persons,45-64,1115,2016-10-07,40 -Persons,45-64,1145,2016-10-14,41 -Persons,45-64,1158,2016-10-21,42 -Persons,45-64,1239,2016-10-28,43 -Persons,45-64,1186,2016-11-04,44 -Persons,45-64,1279,2016-11-11,45 -Persons,45-64,1225,2016-11-18,46 -Persons,45-64,1226,2016-11-25,47 -Persons,45-64,1191,2016-12-02,48 -Persons,45-64,1266,2016-12-09,49 -Persons,45-64,1219,2016-12-16,50 -Persons,45-64,1253,2016-12-23,51 -Persons,45-64,849,2016-12-30,52 -Persons,65-74,2179,2016-01-08,1 -Persons,65-74,1925,2016-01-15,2 -Persons,65-74,1831,2016-01-22,3 -Persons,65-74,1859,2016-01-29,4 -Persons,65-74,1779,2016-02-05,5 -Persons,65-74,1826,2016-02-12,6 -Persons,65-74,1720,2016-02-19,7 -Persons,65-74,1774,2016-02-26,8 -Persons,65-74,1864,2016-03-04,9 -Persons,65-74,1755,2016-03-11,10 -Persons,65-74,1781,2016-03-18,11 -Persons,65-74,1567,2016-03-25,12 -Persons,65-74,1698,2016-04-01,13 -Persons,65-74,1941,2016-04-08,14 -Persons,65-74,1927,2016-04-15,15 -Persons,65-74,1816,2016-04-22,16 -Persons,65-74,1694,2016-04-29,17 -Persons,65-74,1490,2016-05-06,18 -Persons,65-74,1768,2016-05-13,19 -Persons,65-74,1686,2016-05-20,20 -Persons,65-74,1681,2016-05-27,21 -Persons,65-74,1445,2016-06-03,22 -Persons,65-74,1613,2016-06-10,23 -Persons,65-74,1604,2016-06-17,24 -Persons,65-74,1549,2016-06-24,25 -Persons,65-74,1570,2016-07-01,26 -Persons,65-74,1552,2016-07-08,27 -Persons,65-74,1634,2016-07-15,28 -Persons,65-74,1586,2016-07-22,29 -Persons,65-74,1567,2016-07-29,30 -Persons,65-74,1542,2016-08-05,31 -Persons,65-74,1552,2016-08-12,32 -Persons,65-74,1610,2016-08-19,33 -Persons,65-74,1577,2016-08-26,34 -Persons,65-74,1415,2016-09-02,35 -Persons,65-74,1562,2016-09-09,36 -Persons,65-74,1583,2016-09-16,37 -Persons,65-74,1548,2016-09-23,38 -Persons,65-74,1549,2016-09-30,39 -Persons,65-74,1647,2016-10-07,40 -Persons,65-74,1633,2016-10-14,41 -Persons,65-74,1652,2016-10-21,42 -Persons,65-74,1567,2016-10-28,43 -Persons,65-74,1723,2016-11-04,44 -Persons,65-74,1709,2016-11-11,45 -Persons,65-74,1703,2016-11-18,46 -Persons,65-74,1716,2016-11-25,47 -Persons,65-74,1752,2016-12-02,48 -Persons,65-74,1808,2016-12-09,49 -Persons,65-74,1675,2016-12-16,50 -Persons,65-74,1927,2016-12-23,51 -Persons,65-74,1269,2016-12-30,52 -Persons,75-84,3727,2016-01-08,1 -Persons,75-84,3283,2016-01-15,2 -Persons,75-84,3327,2016-01-22,3 -Persons,75-84,3147,2016-01-29,4 -Persons,75-84,3181,2016-02-05,5 -Persons,75-84,3058,2016-02-12,6 -Persons,75-84,2982,2016-02-19,7 -Persons,75-84,3127,2016-02-26,8 -Persons,75-84,3180,2016-03-04,9 -Persons,75-84,3171,2016-03-11,10 -Persons,75-84,3070,2016-03-18,11 -Persons,75-84,2713,2016-03-25,12 -Persons,75-84,2992,2016-04-01,13 -Persons,75-84,3238,2016-04-08,14 -Persons,75-84,3166,2016-04-15,15 -Persons,75-84,3085,2016-04-22,16 -Persons,75-84,2927,2016-04-29,17 -Persons,75-84,2583,2016-05-06,18 -Persons,75-84,2994,2016-05-13,19 -Persons,75-84,2855,2016-05-20,20 -Persons,75-84,2697,2016-05-27,21 -Persons,75-84,2253,2016-06-03,22 -Persons,75-84,2875,2016-06-10,23 -Persons,75-84,2703,2016-06-17,24 -Persons,75-84,2659,2016-06-24,25 -Persons,75-84,2573,2016-07-01,26 -Persons,75-84,2567,2016-07-08,27 -Persons,75-84,2649,2016-07-15,28 -Persons,75-84,2638,2016-07-22,29 -Persons,75-84,2641,2016-07-29,30 -Persons,75-84,2588,2016-08-05,31 -Persons,75-84,2557,2016-08-12,32 -Persons,75-84,2624,2016-08-19,33 -Persons,75-84,2680,2016-08-26,34 -Persons,75-84,2233,2016-09-02,35 -Persons,75-84,2659,2016-09-09,36 -Persons,75-84,2628,2016-09-16,37 -Persons,75-84,2564,2016-09-23,38 -Persons,75-84,2506,2016-09-30,39 -Persons,75-84,2641,2016-10-07,40 -Persons,75-84,2746,2016-10-14,41 -Persons,75-84,2724,2016-10-21,42 -Persons,75-84,2800,2016-10-28,43 -Persons,75-84,2833,2016-11-04,44 -Persons,75-84,2954,2016-11-11,45 -Persons,75-84,2992,2016-11-18,46 -Persons,75-84,3062,2016-11-25,47 -Persons,75-84,2961,2016-12-02,48 -Persons,75-84,3176,2016-12-09,49 -Persons,75-84,2943,2016-12-16,50 -Persons,75-84,3170,2016-12-23,51 -Persons,75-84,2294,2016-12-30,52 -Persons,85+,5292,2016-01-08,1 -Persons,85+,4512,2016-01-15,2 -Persons,85+,4606,2016-01-22,3 -Persons,85+,4599,2016-01-29,4 -Persons,85+,4405,2016-02-05,5 -Persons,85+,4502,2016-02-12,6 -Persons,85+,4175,2016-02-19,7 -Persons,85+,4516,2016-02-26,8 -Persons,85+,4533,2016-03-04,9 -Persons,85+,4390,2016-03-11,10 -Persons,85+,4434,2016-03-18,11 -Persons,85+,3878,2016-03-25,12 -Persons,85+,4079,2016-04-01,13 -Persons,85+,4719,2016-04-08,14 -Persons,85+,4617,2016-04-15,15 -Persons,85+,4324,2016-04-22,16 -Persons,85+,4098,2016-04-29,17 -Persons,85+,3559,2016-05-06,18 -Persons,85+,4218,2016-05-13,19 -Persons,85+,3853,2016-05-20,20 -Persons,85+,3767,2016-05-27,21 -Persons,85+,2980,2016-06-03,22 -Persons,85+,3857,2016-06-10,23 -Persons,85+,3556,2016-06-17,24 -Persons,85+,3625,2016-06-24,25 -Persons,85+,3530,2016-07-01,26 -Persons,85+,3489,2016-07-08,27 -Persons,85+,3603,2016-07-15,28 -Persons,85+,3650,2016-07-22,29 -Persons,85+,3683,2016-07-29,30 -Persons,85+,3524,2016-08-05,31 -Persons,85+,3520,2016-08-12,32 -Persons,85+,3423,2016-08-19,33 -Persons,85+,3652,2016-08-26,34 -Persons,85+,3020,2016-09-02,35 -Persons,85+,3661,2016-09-09,36 -Persons,85+,3406,2016-09-16,37 -Persons,85+,3364,2016-09-23,38 -Persons,85+,3422,2016-09-30,39 -Persons,85+,3531,2016-10-07,40 -Persons,85+,3835,2016-10-14,41 -Persons,85+,3887,2016-10-21,42 -Persons,85+,3773,2016-10-28,43 -Persons,85+,4056,2016-11-04,44 -Persons,85+,4178,2016-11-11,45 -Persons,85+,4332,2016-11-18,46 -Persons,85+,4239,2016-11-25,47 -Persons,85+,4116,2016-12-02,48 -Persons,85+,4578,2016-12-09,49 -Persons,85+,4316,2016-12-16,50 -Persons,85+,4725,2016-12-23,51 -Persons,85+,3364,2016-12-30,52 -Males,Under 1 year,31,2016-01-08,1 -Males,Under 1 year,36,2016-01-15,2 -Males,Under 1 year,32,2016-01-22,3 -Males,Under 1 year,25,2016-01-29,4 -Males,Under 1 year,35,2016-02-05,5 -Males,Under 1 year,36,2016-02-12,6 -Males,Under 1 year,27,2016-02-19,7 -Males,Under 1 year,34,2016-02-26,8 -Males,Under 1 year,22,2016-03-04,9 -Males,Under 1 year,27,2016-03-11,10 -Males,Under 1 year,31,2016-03-18,11 -Males,Under 1 year,32,2016-03-25,12 -Males,Under 1 year,26,2016-04-01,13 -Males,Under 1 year,34,2016-04-08,14 -Males,Under 1 year,32,2016-04-15,15 -Males,Under 1 year,40,2016-04-22,16 -Males,Under 1 year,22,2016-04-29,17 -Males,Under 1 year,34,2016-05-06,18 -Males,Under 1 year,36,2016-05-13,19 -Males,Under 1 year,34,2016-05-20,20 -Males,Under 1 year,36,2016-05-27,21 -Males,Under 1 year,16,2016-06-03,22 -Males,Under 1 year,28,2016-06-10,23 -Males,Under 1 year,28,2016-06-17,24 -Males,Under 1 year,29,2016-06-24,25 -Males,Under 1 year,26,2016-07-01,26 -Males,Under 1 year,30,2016-07-08,27 -Males,Under 1 year,33,2016-07-15,28 -Males,Under 1 year,37,2016-07-22,29 -Males,Under 1 year,20,2016-07-29,30 -Males,Under 1 year,29,2016-08-05,31 -Males,Under 1 year,37,2016-08-12,32 -Males,Under 1 year,26,2016-08-19,33 -Males,Under 1 year,23,2016-08-26,34 -Males,Under 1 year,21,2016-09-02,35 -Males,Under 1 year,30,2016-09-09,36 -Males,Under 1 year,27,2016-09-16,37 -Males,Under 1 year,30,2016-09-23,38 -Males,Under 1 year,22,2016-09-30,39 -Males,Under 1 year,30,2016-10-07,40 -Males,Under 1 year,41,2016-10-14,41 -Males,Under 1 year,25,2016-10-21,42 -Males,Under 1 year,25,2016-10-28,43 -Males,Under 1 year,31,2016-11-04,44 -Males,Under 1 year,28,2016-11-11,45 -Males,Under 1 year,31,2016-11-18,46 -Males,Under 1 year,27,2016-11-25,47 -Males,Under 1 year,35,2016-12-02,48 -Males,Under 1 year,29,2016-12-09,49 -Males,Under 1 year,36,2016-12-16,50 -Males,Under 1 year,30,2016-12-23,51 -Males,Under 1 year,24,2016-12-30,52 -Males,01-14,10,2016-01-08,1 -Males,01-14,14,2016-01-15,2 -Males,01-14,8,2016-01-22,3 -Males,01-14,8,2016-01-29,4 -Males,01-14,14,2016-02-05,5 -Males,01-14,12,2016-02-12,6 -Males,01-14,14,2016-02-19,7 -Males,01-14,13,2016-02-26,8 -Males,01-14,13,2016-03-04,9 -Males,01-14,10,2016-03-11,10 -Males,01-14,10,2016-03-18,11 -Males,01-14,13,2016-03-25,12 -Males,01-14,10,2016-04-01,13 -Males,01-14,7,2016-04-08,14 -Males,01-14,10,2016-04-15,15 -Males,01-14,15,2016-04-22,16 -Males,01-14,14,2016-04-29,17 -Males,01-14,15,2016-05-06,18 -Males,01-14,5,2016-05-13,19 -Males,01-14,12,2016-05-20,20 -Males,01-14,10,2016-05-27,21 -Males,01-14,9,2016-06-03,22 -Males,01-14,10,2016-06-10,23 -Males,01-14,13,2016-06-17,24 -Males,01-14,9,2016-06-24,25 -Males,01-14,9,2016-07-01,26 -Males,01-14,9,2016-07-08,27 -Males,01-14,8,2016-07-15,28 -Males,01-14,9,2016-07-22,29 -Males,01-14,8,2016-07-29,30 -Males,01-14,11,2016-08-05,31 -Males,01-14,9,2016-08-12,32 -Males,01-14,10,2016-08-19,33 -Males,01-14,4,2016-08-26,34 -Males,01-14,9,2016-09-02,35 -Males,01-14,17,2016-09-09,36 -Males,01-14,6,2016-09-16,37 -Males,01-14,11,2016-09-23,38 -Males,01-14,7,2016-09-30,39 -Males,01-14,8,2016-10-07,40 -Males,01-14,6,2016-10-14,41 -Males,01-14,9,2016-10-21,42 -Males,01-14,11,2016-10-28,43 -Males,01-14,11,2016-11-04,44 -Males,01-14,6,2016-11-11,45 -Males,01-14,18,2016-11-18,46 -Males,01-14,12,2016-11-25,47 -Males,01-14,8,2016-12-02,48 -Males,01-14,13,2016-12-09,49 -Males,01-14,16,2016-12-16,50 -Males,01-14,6,2016-12-23,51 -Males,01-14,5,2016-12-30,52 -Males,15-44,178,2016-01-08,1 -Males,15-44,221,2016-01-15,2 -Males,15-44,238,2016-01-22,3 -Males,15-44,217,2016-01-29,4 -Males,15-44,203,2016-02-05,5 -Males,15-44,203,2016-02-12,6 -Males,15-44,196,2016-02-19,7 -Males,15-44,176,2016-02-26,8 -Males,15-44,212,2016-03-04,9 -Males,15-44,172,2016-03-11,10 -Males,15-44,194,2016-03-18,11 -Males,15-44,157,2016-03-25,12 -Males,15-44,171,2016-04-01,13 -Males,15-44,201,2016-04-08,14 -Males,15-44,189,2016-04-15,15 -Males,15-44,208,2016-04-22,16 -Males,15-44,212,2016-04-29,17 -Males,15-44,249,2016-05-06,18 -Males,15-44,195,2016-05-13,19 -Males,15-44,209,2016-05-20,20 -Males,15-44,205,2016-05-27,21 -Males,15-44,128,2016-06-03,22 -Males,15-44,167,2016-06-10,23 -Males,15-44,174,2016-06-17,24 -Males,15-44,192,2016-06-24,25 -Males,15-44,204,2016-07-01,26 -Males,15-44,175,2016-07-08,27 -Males,15-44,186,2016-07-15,28 -Males,15-44,192,2016-07-22,29 -Males,15-44,203,2016-07-29,30 -Males,15-44,187,2016-08-05,31 -Males,15-44,172,2016-08-12,32 -Males,15-44,191,2016-08-19,33 -Males,15-44,157,2016-08-26,34 -Males,15-44,135,2016-09-02,35 -Males,15-44,185,2016-09-09,36 -Males,15-44,153,2016-09-16,37 -Males,15-44,173,2016-09-23,38 -Males,15-44,194,2016-09-30,39 -Males,15-44,176,2016-10-07,40 -Males,15-44,183,2016-10-14,41 -Males,15-44,178,2016-10-21,42 -Males,15-44,170,2016-10-28,43 -Males,15-44,188,2016-11-04,44 -Males,15-44,187,2016-11-11,45 -Males,15-44,250,2016-11-18,46 -Males,15-44,174,2016-11-25,47 -Males,15-44,225,2016-12-02,48 -Males,15-44,202,2016-12-09,49 -Males,15-44,180,2016-12-16,50 -Males,15-44,218,2016-12-23,51 -Males,15-44,99,2016-12-30,52 -Males,45-64,867,2016-01-08,1 -Males,45-64,812,2016-01-15,2 -Males,45-64,791,2016-01-22,3 -Males,45-64,773,2016-01-29,4 -Males,45-64,767,2016-02-05,5 -Males,45-64,782,2016-02-12,6 -Males,45-64,803,2016-02-19,7 -Males,45-64,733,2016-02-26,8 -Males,45-64,799,2016-03-04,9 -Males,45-64,795,2016-03-11,10 -Males,45-64,835,2016-03-18,11 -Males,45-64,683,2016-03-25,12 -Males,45-64,662,2016-04-01,13 -Males,45-64,768,2016-04-08,14 -Males,45-64,774,2016-04-15,15 -Males,45-64,766,2016-04-22,16 -Males,45-64,792,2016-04-29,17 -Males,45-64,629,2016-05-06,18 -Males,45-64,743,2016-05-13,19 -Males,45-64,687,2016-05-20,20 -Males,45-64,716,2016-05-27,21 -Males,45-64,546,2016-06-03,22 -Males,45-64,694,2016-06-10,23 -Males,45-64,725,2016-06-17,24 -Males,45-64,675,2016-06-24,25 -Males,45-64,701,2016-07-01,26 -Males,45-64,698,2016-07-08,27 -Males,45-64,683,2016-07-15,28 -Males,45-64,667,2016-07-22,29 -Males,45-64,630,2016-07-29,30 -Males,45-64,690,2016-08-05,31 -Males,45-64,738,2016-08-12,32 -Males,45-64,653,2016-08-19,33 -Males,45-64,699,2016-08-26,34 -Males,45-64,564,2016-09-02,35 -Males,45-64,710,2016-09-09,36 -Males,45-64,690,2016-09-16,37 -Males,45-64,670,2016-09-23,38 -Males,45-64,697,2016-09-30,39 -Males,45-64,637,2016-10-07,40 -Males,45-64,674,2016-10-14,41 -Males,45-64,687,2016-10-21,42 -Males,45-64,741,2016-10-28,43 -Males,45-64,670,2016-11-04,44 -Males,45-64,730,2016-11-11,45 -Males,45-64,709,2016-11-18,46 -Males,45-64,734,2016-11-25,47 -Males,45-64,692,2016-12-02,48 -Males,45-64,749,2016-12-09,49 -Males,45-64,748,2016-12-16,50 -Males,45-64,754,2016-12-23,51 -Males,45-64,451,2016-12-30,52 -Males,65-74,1246,2016-01-08,1 -Males,65-74,1159,2016-01-15,2 -Males,65-74,1079,2016-01-22,3 -Males,65-74,1069,2016-01-29,4 -Males,65-74,1040,2016-02-05,5 -Males,65-74,1062,2016-02-12,6 -Males,65-74,1015,2016-02-19,7 -Males,65-74,995,2016-02-26,8 -Males,65-74,1024,2016-03-04,9 -Males,65-74,1030,2016-03-11,10 -Males,65-74,1048,2016-03-18,11 -Males,65-74,898,2016-03-25,12 -Males,65-74,941,2016-04-01,13 -Males,65-74,1109,2016-04-08,14 -Males,65-74,1137,2016-04-15,15 -Males,65-74,1039,2016-04-22,16 -Males,65-74,1003,2016-04-29,17 -Males,65-74,870,2016-05-06,18 -Males,65-74,1057,2016-05-13,19 -Males,65-74,960,2016-05-20,20 -Males,65-74,957,2016-05-27,21 -Males,65-74,827,2016-06-03,22 -Males,65-74,923,2016-06-10,23 -Males,65-74,931,2016-06-17,24 -Males,65-74,909,2016-06-24,25 -Males,65-74,897,2016-07-01,26 -Males,65-74,917,2016-07-08,27 -Males,65-74,964,2016-07-15,28 -Males,65-74,936,2016-07-22,29 -Males,65-74,924,2016-07-29,30 -Males,65-74,923,2016-08-05,31 -Males,65-74,902,2016-08-12,32 -Males,65-74,946,2016-08-19,33 -Males,65-74,899,2016-08-26,34 -Males,65-74,825,2016-09-02,35 -Males,65-74,944,2016-09-09,36 -Males,65-74,900,2016-09-16,37 -Males,65-74,910,2016-09-23,38 -Males,65-74,925,2016-09-30,39 -Males,65-74,992,2016-10-07,40 -Males,65-74,961,2016-10-14,41 -Males,65-74,965,2016-10-21,42 -Males,65-74,908,2016-10-28,43 -Males,65-74,1011,2016-11-04,44 -Males,65-74,1021,2016-11-11,45 -Males,65-74,1001,2016-11-18,46 -Males,65-74,1013,2016-11-25,47 -Males,65-74,984,2016-12-02,48 -Males,65-74,1019,2016-12-09,49 -Males,65-74,979,2016-12-16,50 -Males,65-74,1057,2016-12-23,51 -Males,65-74,738,2016-12-30,52 -Males,75-84,1897,2016-01-08,1 -Males,75-84,1709,2016-01-15,2 -Males,75-84,1734,2016-01-22,3 -Males,75-84,1643,2016-01-29,4 -Males,75-84,1683,2016-02-05,5 -Males,75-84,1639,2016-02-12,6 -Males,75-84,1616,2016-02-19,7 -Males,75-84,1650,2016-02-26,8 -Males,75-84,1709,2016-03-04,9 -Males,75-84,1713,2016-03-11,10 -Males,75-84,1596,2016-03-18,11 -Males,75-84,1437,2016-03-25,12 -Males,75-84,1550,2016-04-01,13 -Males,75-84,1738,2016-04-08,14 -Males,75-84,1688,2016-04-15,15 -Males,75-84,1613,2016-04-22,16 -Males,75-84,1534,2016-04-29,17 -Males,75-84,1410,2016-05-06,18 -Males,75-84,1563,2016-05-13,19 -Males,75-84,1532,2016-05-20,20 -Males,75-84,1441,2016-05-27,21 -Males,75-84,1188,2016-06-03,22 -Males,75-84,1535,2016-06-10,23 -Males,75-84,1463,2016-06-17,24 -Males,75-84,1443,2016-06-24,25 -Males,75-84,1369,2016-07-01,26 -Males,75-84,1359,2016-07-08,27 -Males,75-84,1395,2016-07-15,28 -Males,75-84,1459,2016-07-22,29 -Males,75-84,1433,2016-07-29,30 -Males,75-84,1416,2016-08-05,31 -Males,75-84,1364,2016-08-12,32 -Males,75-84,1383,2016-08-19,33 -Males,75-84,1480,2016-08-26,34 -Males,75-84,1204,2016-09-02,35 -Males,75-84,1398,2016-09-09,36 -Males,75-84,1397,2016-09-16,37 -Males,75-84,1404,2016-09-23,38 -Males,75-84,1327,2016-09-30,39 -Males,75-84,1385,2016-10-07,40 -Males,75-84,1444,2016-10-14,41 -Males,75-84,1485,2016-10-21,42 -Males,75-84,1494,2016-10-28,43 -Males,75-84,1451,2016-11-04,44 -Males,75-84,1576,2016-11-11,45 -Males,75-84,1566,2016-11-18,46 -Males,75-84,1621,2016-11-25,47 -Males,75-84,1557,2016-12-02,48 -Males,75-84,1676,2016-12-09,49 -Males,75-84,1500,2016-12-16,50 -Males,75-84,1682,2016-12-23,51 -Males,75-84,1229,2016-12-30,52 -Males,85+,1982,2016-01-08,1 -Males,85+,1656,2016-01-15,2 -Males,85+,1750,2016-01-22,3 -Males,85+,1754,2016-01-29,4 -Males,85+,1655,2016-02-05,5 -Males,85+,1666,2016-02-12,6 -Males,85+,1577,2016-02-19,7 -Males,85+,1707,2016-02-26,8 -Males,85+,1745,2016-03-04,9 -Males,85+,1711,2016-03-11,10 -Males,85+,1705,2016-03-18,11 -Males,85+,1482,2016-03-25,12 -Males,85+,1583,2016-04-01,13 -Males,85+,1743,2016-04-08,14 -Males,85+,1789,2016-04-15,15 -Males,85+,1647,2016-04-22,16 -Males,85+,1548,2016-04-29,17 -Males,85+,1367,2016-05-06,18 -Males,85+,1673,2016-05-13,19 -Males,85+,1464,2016-05-20,20 -Males,85+,1417,2016-05-27,21 -Males,85+,1180,2016-06-03,22 -Males,85+,1466,2016-06-10,23 -Males,85+,1367,2016-06-17,24 -Males,85+,1454,2016-06-24,25 -Males,85+,1280,2016-07-01,26 -Males,85+,1334,2016-07-08,27 -Males,85+,1336,2016-07-15,28 -Males,85+,1414,2016-07-22,29 -Males,85+,1389,2016-07-29,30 -Males,85+,1302,2016-08-05,31 -Males,85+,1288,2016-08-12,32 -Males,85+,1324,2016-08-19,33 -Males,85+,1395,2016-08-26,34 -Males,85+,1196,2016-09-02,35 -Males,85+,1345,2016-09-09,36 -Males,85+,1338,2016-09-16,37 -Males,85+,1251,2016-09-23,38 -Males,85+,1350,2016-09-30,39 -Males,85+,1381,2016-10-07,40 -Males,85+,1508,2016-10-14,41 -Males,85+,1488,2016-10-21,42 -Males,85+,1472,2016-10-28,43 -Males,85+,1598,2016-11-04,44 -Males,85+,1565,2016-11-11,45 -Males,85+,1730,2016-11-18,46 -Males,85+,1616,2016-11-25,47 -Males,85+,1574,2016-12-02,48 -Males,85+,1738,2016-12-09,49 -Males,85+,1595,2016-12-16,50 -Males,85+,1796,2016-12-23,51 -Males,85+,1288,2016-12-30,52 -Females,Under 1 year,18,2016-01-08,1 -Females,Under 1 year,28,2016-01-15,2 -Females,Under 1 year,18,2016-01-22,3 -Females,Under 1 year,22,2016-01-29,4 -Females,Under 1 year,25,2016-02-05,5 -Females,Under 1 year,24,2016-02-12,6 -Females,Under 1 year,25,2016-02-19,7 -Females,Under 1 year,24,2016-02-26,8 -Females,Under 1 year,17,2016-03-04,9 -Females,Under 1 year,27,2016-03-11,10 -Females,Under 1 year,24,2016-03-18,11 -Females,Under 1 year,23,2016-03-25,12 -Females,Under 1 year,23,2016-04-01,13 -Females,Under 1 year,19,2016-04-08,14 -Females,Under 1 year,31,2016-04-15,15 -Females,Under 1 year,25,2016-04-22,16 -Females,Under 1 year,21,2016-04-29,17 -Females,Under 1 year,21,2016-05-06,18 -Females,Under 1 year,13,2016-05-13,19 -Females,Under 1 year,27,2016-05-20,20 -Females,Under 1 year,27,2016-05-27,21 -Females,Under 1 year,19,2016-06-03,22 -Females,Under 1 year,30,2016-06-10,23 -Females,Under 1 year,21,2016-06-17,24 -Females,Under 1 year,28,2016-06-24,25 -Females,Under 1 year,20,2016-07-01,26 -Females,Under 1 year,19,2016-07-08,27 -Females,Under 1 year,21,2016-07-15,28 -Females,Under 1 year,18,2016-07-22,29 -Females,Under 1 year,19,2016-07-29,30 -Females,Under 1 year,27,2016-08-05,31 -Females,Under 1 year,20,2016-08-12,32 -Females,Under 1 year,16,2016-08-19,33 -Females,Under 1 year,25,2016-08-26,34 -Females,Under 1 year,22,2016-09-02,35 -Females,Under 1 year,18,2016-09-09,36 -Females,Under 1 year,29,2016-09-16,37 -Females,Under 1 year,28,2016-09-23,38 -Females,Under 1 year,31,2016-09-30,39 -Females,Under 1 year,27,2016-10-07,40 -Females,Under 1 year,31,2016-10-14,41 -Females,Under 1 year,25,2016-10-21,42 -Females,Under 1 year,33,2016-10-28,43 -Females,Under 1 year,21,2016-11-04,44 -Females,Under 1 year,26,2016-11-11,45 -Females,Under 1 year,26,2016-11-18,46 -Females,Under 1 year,22,2016-11-25,47 -Females,Under 1 year,23,2016-12-02,48 -Females,Under 1 year,28,2016-12-09,49 -Females,Under 1 year,36,2016-12-16,50 -Females,Under 1 year,26,2016-12-23,51 -Females,Under 1 year,17,2016-12-30,52 -Females,01-14,7,2016-01-08,1 -Females,01-14,10,2016-01-15,2 -Females,01-14,10,2016-01-22,3 -Females,01-14,6,2016-01-29,4 -Females,01-14,8,2016-02-05,5 -Females,01-14,9,2016-02-12,6 -Females,01-14,8,2016-02-19,7 -Females,01-14,7,2016-02-26,8 -Females,01-14,8,2016-03-04,9 -Females,01-14,12,2016-03-11,10 -Females,01-14,12,2016-03-18,11 -Females,01-14,5,2016-03-25,12 -Females,01-14,5,2016-04-01,13 -Females,01-14,8,2016-04-08,14 -Females,01-14,8,2016-04-15,15 -Females,01-14,9,2016-04-22,16 -Females,01-14,8,2016-04-29,17 -Females,01-14,8,2016-05-06,18 -Females,01-14,14,2016-05-13,19 -Females,01-14,9,2016-05-20,20 -Females,01-14,9,2016-05-27,21 -Females,01-14,10,2016-06-03,22 -Females,01-14,11,2016-06-10,23 -Females,01-14,9,2016-06-17,24 -Females,01-14,6,2016-06-24,25 -Females,01-14,4,2016-07-01,26 -Females,01-14,9,2016-07-08,27 -Females,01-14,7,2016-07-15,28 -Females,01-14,9,2016-07-22,29 -Females,01-14,7,2016-07-29,30 -Females,01-14,8,2016-08-05,31 -Females,01-14,6,2016-08-12,32 -Females,01-14,7,2016-08-19,33 -Females,01-14,12,2016-08-26,34 -Females,01-14,5,2016-09-02,35 -Females,01-14,6,2016-09-09,36 -Females,01-14,9,2016-09-16,37 -Females,01-14,4,2016-09-23,38 -Females,01-14,8,2016-09-30,39 -Females,01-14,13,2016-10-07,40 -Females,01-14,8,2016-10-14,41 -Females,01-14,12,2016-10-21,42 -Females,01-14,5,2016-10-28,43 -Females,01-14,10,2016-11-04,44 -Females,01-14,9,2016-11-11,45 -Females,01-14,8,2016-11-18,46 -Females,01-14,14,2016-11-25,47 -Females,01-14,7,2016-12-02,48 -Females,01-14,15,2016-12-09,49 -Females,01-14,6,2016-12-16,50 -Females,01-14,10,2016-12-23,51 -Females,01-14,2,2016-12-30,52 -Females,15-44,121,2016-01-08,1 -Females,15-44,105,2016-01-15,2 -Females,15-44,107,2016-01-22,3 -Females,15-44,107,2016-01-29,4 -Females,15-44,111,2016-02-05,5 -Females,15-44,128,2016-02-12,6 -Females,15-44,109,2016-02-19,7 -Females,15-44,91,2016-02-26,8 -Females,15-44,106,2016-03-04,9 -Females,15-44,101,2016-03-11,10 -Females,15-44,101,2016-03-18,11 -Females,15-44,90,2016-03-25,12 -Females,15-44,93,2016-04-01,13 -Females,15-44,105,2016-04-08,14 -Females,15-44,122,2016-04-15,15 -Females,15-44,111,2016-04-22,16 -Females,15-44,115,2016-04-29,17 -Females,15-44,99,2016-05-06,18 -Females,15-44,113,2016-05-13,19 -Females,15-44,119,2016-05-20,20 -Females,15-44,121,2016-05-27,21 -Females,15-44,86,2016-06-03,22 -Females,15-44,101,2016-06-10,23 -Females,15-44,81,2016-06-17,24 -Females,15-44,103,2016-06-24,25 -Females,15-44,99,2016-07-01,26 -Females,15-44,112,2016-07-08,27 -Females,15-44,93,2016-07-15,28 -Females,15-44,90,2016-07-22,29 -Females,15-44,109,2016-07-29,30 -Females,15-44,89,2016-08-05,31 -Females,15-44,105,2016-08-12,32 -Females,15-44,85,2016-08-19,33 -Females,15-44,84,2016-08-26,34 -Females,15-44,93,2016-09-02,35 -Females,15-44,98,2016-09-09,36 -Females,15-44,112,2016-09-16,37 -Females,15-44,91,2016-09-23,38 -Females,15-44,103,2016-09-30,39 -Females,15-44,99,2016-10-07,40 -Females,15-44,89,2016-10-14,41 -Females,15-44,98,2016-10-21,42 -Females,15-44,101,2016-10-28,43 -Females,15-44,93,2016-11-04,44 -Females,15-44,91,2016-11-11,45 -Females,15-44,105,2016-11-18,46 -Females,15-44,110,2016-11-25,47 -Females,15-44,120,2016-12-02,48 -Females,15-44,108,2016-12-09,49 -Females,15-44,101,2016-12-16,50 -Females,15-44,121,2016-12-23,51 -Females,15-44,79,2016-12-30,52 -Females,45-64,615,2016-01-08,1 -Females,45-64,551,2016-01-15,2 -Females,45-64,502,2016-01-22,3 -Females,45-64,549,2016-01-29,4 -Females,45-64,514,2016-02-05,5 -Females,45-64,574,2016-02-12,6 -Females,45-64,530,2016-02-19,7 -Females,45-64,561,2016-02-26,8 -Females,45-64,529,2016-03-04,9 -Females,45-64,545,2016-03-11,10 -Females,45-64,523,2016-03-18,11 -Females,45-64,465,2016-03-25,12 -Females,45-64,522,2016-04-01,13 -Females,45-64,559,2016-04-08,14 -Females,45-64,538,2016-04-15,15 -Females,45-64,526,2016-04-22,16 -Females,45-64,509,2016-04-29,17 -Females,45-64,446,2016-05-06,18 -Females,45-64,534,2016-05-13,19 -Females,45-64,462,2016-05-20,20 -Females,45-64,469,2016-05-27,21 -Females,45-64,417,2016-06-03,22 -Females,45-64,487,2016-06-10,23 -Females,45-64,470,2016-06-17,24 -Females,45-64,486,2016-06-24,25 -Females,45-64,491,2016-07-01,26 -Females,45-64,478,2016-07-08,27 -Females,45-64,470,2016-07-15,28 -Females,45-64,448,2016-07-22,29 -Females,45-64,444,2016-07-29,30 -Females,45-64,481,2016-08-05,31 -Females,45-64,445,2016-08-12,32 -Females,45-64,425,2016-08-19,33 -Females,45-64,405,2016-08-26,34 -Females,45-64,404,2016-09-02,35 -Females,45-64,451,2016-09-09,36 -Females,45-64,480,2016-09-16,37 -Females,45-64,462,2016-09-23,38 -Females,45-64,454,2016-09-30,39 -Females,45-64,478,2016-10-07,40 -Females,45-64,471,2016-10-14,41 -Females,45-64,471,2016-10-21,42 -Females,45-64,498,2016-10-28,43 -Females,45-64,516,2016-11-04,44 -Females,45-64,549,2016-11-11,45 -Females,45-64,516,2016-11-18,46 -Females,45-64,492,2016-11-25,47 -Females,45-64,499,2016-12-02,48 -Females,45-64,517,2016-12-09,49 -Females,45-64,471,2016-12-16,50 -Females,45-64,499,2016-12-23,51 -Females,45-64,398,2016-12-30,52 -Females,65-74,933,2016-01-08,1 -Females,65-74,766,2016-01-15,2 -Females,65-74,752,2016-01-22,3 -Females,65-74,790,2016-01-29,4 -Females,65-74,739,2016-02-05,5 -Females,65-74,764,2016-02-12,6 -Females,65-74,705,2016-02-19,7 -Females,65-74,779,2016-02-26,8 -Females,65-74,840,2016-03-04,9 -Females,65-74,725,2016-03-11,10 -Females,65-74,733,2016-03-18,11 -Females,65-74,669,2016-03-25,12 -Females,65-74,757,2016-04-01,13 -Females,65-74,832,2016-04-08,14 -Females,65-74,790,2016-04-15,15 -Females,65-74,777,2016-04-22,16 -Females,65-74,691,2016-04-29,17 -Females,65-74,620,2016-05-06,18 -Females,65-74,711,2016-05-13,19 -Females,65-74,726,2016-05-20,20 -Females,65-74,724,2016-05-27,21 -Females,65-74,618,2016-06-03,22 -Females,65-74,690,2016-06-10,23 -Females,65-74,673,2016-06-17,24 -Females,65-74,640,2016-06-24,25 -Females,65-74,673,2016-07-01,26 -Females,65-74,635,2016-07-08,27 -Females,65-74,670,2016-07-15,28 -Females,65-74,650,2016-07-22,29 -Females,65-74,643,2016-07-29,30 -Females,65-74,619,2016-08-05,31 -Females,65-74,650,2016-08-12,32 -Females,65-74,664,2016-08-19,33 -Females,65-74,678,2016-08-26,34 -Females,65-74,590,2016-09-02,35 -Females,65-74,618,2016-09-09,36 -Females,65-74,683,2016-09-16,37 -Females,65-74,638,2016-09-23,38 -Females,65-74,624,2016-09-30,39 -Females,65-74,655,2016-10-07,40 -Females,65-74,672,2016-10-14,41 -Females,65-74,687,2016-10-21,42 -Females,65-74,659,2016-10-28,43 -Females,65-74,712,2016-11-04,44 -Females,65-74,688,2016-11-11,45 -Females,65-74,702,2016-11-18,46 -Females,65-74,703,2016-11-25,47 -Females,65-74,768,2016-12-02,48 -Females,65-74,789,2016-12-09,49 -Females,65-74,696,2016-12-16,50 -Females,65-74,870,2016-12-23,51 -Females,65-74,531,2016-12-30,52 -Females,75-84,1830,2016-01-08,1 -Females,75-84,1574,2016-01-15,2 -Females,75-84,1593,2016-01-22,3 -Females,75-84,1504,2016-01-29,4 -Females,75-84,1498,2016-02-05,5 -Females,75-84,1419,2016-02-12,6 -Females,75-84,1366,2016-02-19,7 -Females,75-84,1477,2016-02-26,8 -Females,75-84,1471,2016-03-04,9 -Females,75-84,1458,2016-03-11,10 -Females,75-84,1474,2016-03-18,11 -Females,75-84,1276,2016-03-25,12 -Females,75-84,1442,2016-04-01,13 -Females,75-84,1500,2016-04-08,14 -Females,75-84,1478,2016-04-15,15 -Females,75-84,1472,2016-04-22,16 -Females,75-84,1393,2016-04-29,17 -Females,75-84,1173,2016-05-06,18 -Females,75-84,1431,2016-05-13,19 -Females,75-84,1323,2016-05-20,20 -Females,75-84,1256,2016-05-27,21 -Females,75-84,1065,2016-06-03,22 -Females,75-84,1340,2016-06-10,23 -Females,75-84,1240,2016-06-17,24 -Females,75-84,1216,2016-06-24,25 -Females,75-84,1204,2016-07-01,26 -Females,75-84,1208,2016-07-08,27 -Females,75-84,1254,2016-07-15,28 -Females,75-84,1179,2016-07-22,29 -Females,75-84,1208,2016-07-29,30 -Females,75-84,1172,2016-08-05,31 -Females,75-84,1193,2016-08-12,32 -Females,75-84,1241,2016-08-19,33 -Females,75-84,1200,2016-08-26,34 -Females,75-84,1029,2016-09-02,35 -Females,75-84,1261,2016-09-09,36 -Females,75-84,1231,2016-09-16,37 -Females,75-84,1160,2016-09-23,38 -Females,75-84,1179,2016-09-30,39 -Females,75-84,1256,2016-10-07,40 -Females,75-84,1302,2016-10-14,41 -Females,75-84,1239,2016-10-21,42 -Females,75-84,1306,2016-10-28,43 -Females,75-84,1382,2016-11-04,44 -Females,75-84,1378,2016-11-11,45 -Females,75-84,1426,2016-11-18,46 -Females,75-84,1441,2016-11-25,47 -Females,75-84,1404,2016-12-02,48 -Females,75-84,1500,2016-12-09,49 -Females,75-84,1443,2016-12-16,50 -Females,75-84,1488,2016-12-23,51 -Females,75-84,1065,2016-12-30,52 -Females,85+,3310,2016-01-08,1 -Females,85+,2856,2016-01-15,2 -Females,85+,2856,2016-01-22,3 -Females,85+,2845,2016-01-29,4 -Females,85+,2750,2016-02-05,5 -Females,85+,2836,2016-02-12,6 -Females,85+,2598,2016-02-19,7 -Females,85+,2809,2016-02-26,8 -Females,85+,2788,2016-03-04,9 -Females,85+,2679,2016-03-11,10 -Females,85+,2729,2016-03-18,11 -Females,85+,2396,2016-03-25,12 -Females,85+,2496,2016-04-01,13 -Females,85+,2976,2016-04-08,14 -Females,85+,2828,2016-04-15,15 -Females,85+,2677,2016-04-22,16 -Females,85+,2550,2016-04-29,17 -Females,85+,2192,2016-05-06,18 -Females,85+,2545,2016-05-13,19 -Females,85+,2389,2016-05-20,20 -Females,85+,2350,2016-05-27,21 -Females,85+,1800,2016-06-03,22 -Females,85+,2391,2016-06-10,23 -Females,85+,2189,2016-06-17,24 -Females,85+,2171,2016-06-24,25 -Females,85+,2250,2016-07-01,26 -Females,85+,2155,2016-07-08,27 -Females,85+,2267,2016-07-15,28 -Females,85+,2236,2016-07-22,29 -Females,85+,2294,2016-07-29,30 -Females,85+,2222,2016-08-05,31 -Females,85+,2232,2016-08-12,32 -Females,85+,2099,2016-08-19,33 -Females,85+,2257,2016-08-26,34 -Females,85+,1824,2016-09-02,35 -Females,85+,2316,2016-09-09,36 -Females,85+,2068,2016-09-16,37 -Females,85+,2113,2016-09-23,38 -Females,85+,2072,2016-09-30,39 -Females,85+,2150,2016-10-07,40 -Females,85+,2327,2016-10-14,41 -Females,85+,2399,2016-10-21,42 -Females,85+,2301,2016-10-28,43 -Females,85+,2458,2016-11-04,44 -Females,85+,2613,2016-11-11,45 -Females,85+,2602,2016-11-18,46 -Females,85+,2623,2016-11-25,47 -Females,85+,2542,2016-12-02,48 -Females,85+,2840,2016-12-09,49 -Females,85+,2721,2016-12-16,50 -Females,85+,2929,2016-12-23,51 -Females,85+,2076,2016-12-30,52 -Region,North East,705,2016-01-08,1 -Region,North East,600,2016-01-15,2 -Region,North East,612,2016-01-22,3 -Region,North East,631,2016-01-29,4 -Region,North East,620,2016-02-05,5 -Region,North East,599,2016-02-12,6 -Region,North East,588,2016-02-19,7 -Region,North East,582,2016-02-26,8 -Region,North East,582,2016-03-04,9 -Region,North East,569,2016-03-11,10 -Region,North East,552,2016-03-18,11 -Region,North East,474,2016-03-25,12 -Region,North East,578,2016-04-01,13 -Region,North East,606,2016-04-08,14 -Region,North East,594,2016-04-15,15 -Region,North East,539,2016-04-22,16 -Region,North East,571,2016-04-29,17 -Region,North East,495,2016-05-06,18 -Region,North East,547,2016-05-13,19 -Region,North East,533,2016-05-20,20 -Region,North East,484,2016-05-27,21 -Region,North East,431,2016-06-03,22 -Region,North East,542,2016-06-10,23 -Region,North East,473,2016-06-17,24 -Region,North East,528,2016-06-24,25 -Region,North East,488,2016-07-01,26 -Region,North East,507,2016-07-08,27 -Region,North East,485,2016-07-15,28 -Region,North East,538,2016-07-22,29 -Region,North East,476,2016-07-29,30 -Region,North East,467,2016-08-05,31 -Region,North East,492,2016-08-12,32 -Region,North East,476,2016-08-19,33 -Region,North East,499,2016-08-26,34 -Region,North East,398,2016-09-02,35 -Region,North East,478,2016-09-09,36 -Region,North East,491,2016-09-16,37 -Region,North East,435,2016-09-23,38 -Region,North East,481,2016-09-30,39 -Region,North East,465,2016-10-07,40 -Region,North East,520,2016-10-14,41 -Region,North East,511,2016-10-21,42 -Region,North East,530,2016-10-28,43 -Region,North East,535,2016-11-04,44 -Region,North East,546,2016-11-11,45 -Region,North East,547,2016-11-18,46 -Region,North East,536,2016-11-25,47 -Region,North East,550,2016-12-02,48 -Region,North East,589,2016-12-09,49 -Region,North East,561,2016-12-16,50 -Region,North East,679,2016-12-23,51 -Region,North East,456,2016-12-30,52 -Region,North West,1748,2016-01-08,1 -Region,North West,1532,2016-01-15,2 -Region,North West,1602,2016-01-22,3 -Region,North West,1516,2016-01-29,4 -Region,North West,1459,2016-02-05,5 -Region,North West,1466,2016-02-12,6 -Region,North West,1443,2016-02-19,7 -Region,North West,1497,2016-02-26,8 -Region,North West,1505,2016-03-04,9 -Region,North West,1525,2016-03-11,10 -Region,North West,1460,2016-03-18,11 -Region,North West,1331,2016-03-25,12 -Region,North West,1362,2016-04-01,13 -Region,North West,1514,2016-04-08,14 -Region,North West,1572,2016-04-15,15 -Region,North West,1470,2016-04-22,16 -Region,North West,1371,2016-04-29,17 -Region,North West,1280,2016-05-06,18 -Region,North West,1420,2016-05-13,19 -Region,North West,1327,2016-05-20,20 -Region,North West,1300,2016-05-27,21 -Region,North West,1138,2016-06-03,22 -Region,North West,1306,2016-06-10,23 -Region,North West,1252,2016-06-17,24 -Region,North West,1272,2016-06-24,25 -Region,North West,1157,2016-07-01,26 -Region,North West,1269,2016-07-08,27 -Region,North West,1242,2016-07-15,28 -Region,North West,1295,2016-07-22,29 -Region,North West,1223,2016-07-29,30 -Region,North West,1316,2016-08-05,31 -Region,North West,1244,2016-08-12,32 -Region,North West,1279,2016-08-19,33 -Region,North West,1250,2016-08-26,34 -Region,North West,1114,2016-09-02,35 -Region,North West,1312,2016-09-09,36 -Region,North West,1222,2016-09-16,37 -Region,North West,1230,2016-09-23,38 -Region,North West,1219,2016-09-30,39 -Region,North West,1331,2016-10-07,40 -Region,North West,1328,2016-10-14,41 -Region,North West,1322,2016-10-21,42 -Region,North West,1401,2016-10-28,43 -Region,North West,1351,2016-11-04,44 -Region,North West,1390,2016-11-11,45 -Region,North West,1513,2016-11-18,46 -Region,North West,1432,2016-11-25,47 -Region,North West,1491,2016-12-02,48 -Region,North West,1529,2016-12-09,49 -Region,North West,1444,2016-12-16,50 -Region,North West,1594,2016-12-23,51 -Region,North West,1087,2016-12-30,52 -Region,Yorkshire and The Humber,1284,2016-01-08,1 -Region,Yorkshire and The Humber,1148,2016-01-15,2 -Region,Yorkshire and The Humber,1119,2016-01-22,3 -Region,Yorkshire and The Humber,1131,2016-01-29,4 -Region,Yorkshire and The Humber,1109,2016-02-05,5 -Region,Yorkshire and The Humber,1066,2016-02-12,6 -Region,Yorkshire and The Humber,1083,2016-02-19,7 -Region,Yorkshire and The Humber,1115,2016-02-26,8 -Region,Yorkshire and The Humber,1107,2016-03-04,9 -Region,Yorkshire and The Humber,1097,2016-03-11,10 -Region,Yorkshire and The Humber,1102,2016-03-18,11 -Region,Yorkshire and The Humber,937,2016-03-25,12 -Region,Yorkshire and The Humber,968,2016-04-01,13 -Region,Yorkshire and The Humber,1128,2016-04-08,14 -Region,Yorkshire and The Humber,1105,2016-04-15,15 -Region,Yorkshire and The Humber,1008,2016-04-22,16 -Region,Yorkshire and The Humber,1014,2016-04-29,17 -Region,Yorkshire and The Humber,941,2016-05-06,18 -Region,Yorkshire and The Humber,1055,2016-05-13,19 -Region,Yorkshire and The Humber,927,2016-05-20,20 -Region,Yorkshire and The Humber,936,2016-05-27,21 -Region,Yorkshire and The Humber,814,2016-06-03,22 -Region,Yorkshire and The Humber,1038,2016-06-10,23 -Region,Yorkshire and The Humber,923,2016-06-17,24 -Region,Yorkshire and The Humber,925,2016-06-24,25 -Region,Yorkshire and The Humber,936,2016-07-01,26 -Region,Yorkshire and The Humber,910,2016-07-08,27 -Region,Yorkshire and The Humber,948,2016-07-15,28 -Region,Yorkshire and The Humber,877,2016-07-22,29 -Region,Yorkshire and The Humber,910,2016-07-29,30 -Region,Yorkshire and The Humber,879,2016-08-05,31 -Region,Yorkshire and The Humber,886,2016-08-12,32 -Region,Yorkshire and The Humber,887,2016-08-19,33 -Region,Yorkshire and The Humber,860,2016-08-26,34 -Region,Yorkshire and The Humber,800,2016-09-02,35 -Region,Yorkshire and The Humber,942,2016-09-09,36 -Region,Yorkshire and The Humber,914,2016-09-16,37 -Region,Yorkshire and The Humber,890,2016-09-23,38 -Region,Yorkshire and The Humber,856,2016-09-30,39 -Region,Yorkshire and The Humber,907,2016-10-07,40 -Region,Yorkshire and The Humber,940,2016-10-14,41 -Region,Yorkshire and The Humber,919,2016-10-21,42 -Region,Yorkshire and The Humber,914,2016-10-28,43 -Region,Yorkshire and The Humber,1041,2016-11-04,44 -Region,Yorkshire and The Humber,1017,2016-11-11,45 -Region,Yorkshire and The Humber,1025,2016-11-18,46 -Region,Yorkshire and The Humber,1022,2016-11-25,47 -Region,Yorkshire and The Humber,973,2016-12-02,48 -Region,Yorkshire and The Humber,1193,2016-12-09,49 -Region,Yorkshire and The Humber,1036,2016-12-16,50 -Region,Yorkshire and The Humber,1097,2016-12-23,51 -Region,Yorkshire and The Humber,794,2016-12-30,52 -Region,East Midlands,1067,2016-01-08,1 -Region,East Midlands,956,2016-01-15,2 -Region,East Midlands,929,2016-01-22,3 -Region,East Midlands,858,2016-01-29,4 -Region,East Midlands,954,2016-02-05,5 -Region,East Midlands,917,2016-02-12,6 -Region,East Midlands,881,2016-02-19,7 -Region,East Midlands,930,2016-02-26,8 -Region,East Midlands,913,2016-03-04,9 -Region,East Midlands,911,2016-03-11,10 -Region,East Midlands,917,2016-03-18,11 -Region,East Midlands,809,2016-03-25,12 -Region,East Midlands,859,2016-04-01,13 -Region,East Midlands,911,2016-04-08,14 -Region,East Midlands,900,2016-04-15,15 -Region,East Midlands,908,2016-04-22,16 -Region,East Midlands,857,2016-04-29,17 -Region,East Midlands,703,2016-05-06,18 -Region,East Midlands,914,2016-05-13,19 -Region,East Midlands,862,2016-05-20,20 -Region,East Midlands,826,2016-05-27,21 -Region,East Midlands,680,2016-06-03,22 -Region,East Midlands,839,2016-06-10,23 -Region,East Midlands,858,2016-06-17,24 -Region,East Midlands,804,2016-06-24,25 -Region,East Midlands,801,2016-07-01,26 -Region,East Midlands,770,2016-07-08,27 -Region,East Midlands,784,2016-07-15,28 -Region,East Midlands,830,2016-07-22,29 -Region,East Midlands,762,2016-07-29,30 -Region,East Midlands,739,2016-08-05,31 -Region,East Midlands,780,2016-08-12,32 -Region,East Midlands,742,2016-08-19,33 -Region,East Midlands,793,2016-08-26,34 -Region,East Midlands,626,2016-09-02,35 -Region,East Midlands,844,2016-09-09,36 -Region,East Midlands,736,2016-09-16,37 -Region,East Midlands,730,2016-09-23,38 -Region,East Midlands,787,2016-09-30,39 -Region,East Midlands,777,2016-10-07,40 -Region,East Midlands,791,2016-10-14,41 -Region,East Midlands,831,2016-10-21,42 -Region,East Midlands,850,2016-10-28,43 -Region,East Midlands,850,2016-11-04,44 -Region,East Midlands,889,2016-11-11,45 -Region,East Midlands,892,2016-11-18,46 -Region,East Midlands,887,2016-11-25,47 -Region,East Midlands,888,2016-12-02,48 -Region,East Midlands,932,2016-12-09,49 -Region,East Midlands,893,2016-12-16,50 -Region,East Midlands,981,2016-12-23,51 -Region,East Midlands,759,2016-12-30,52 -Region,West Midlands,1396,2016-01-08,1 -Region,West Midlands,1208,2016-01-15,2 -Region,West Midlands,1209,2016-01-22,3 -Region,West Midlands,1195,2016-01-29,4 -Region,West Midlands,1197,2016-02-05,5 -Region,West Midlands,1262,2016-02-12,6 -Region,West Midlands,1088,2016-02-19,7 -Region,West Midlands,1087,2016-02-26,8 -Region,West Midlands,1144,2016-03-04,9 -Region,West Midlands,1104,2016-03-11,10 -Region,West Midlands,1136,2016-03-18,11 -Region,West Midlands,891,2016-03-25,12 -Region,West Midlands,942,2016-04-01,13 -Region,West Midlands,1232,2016-04-08,14 -Region,West Midlands,1183,2016-04-15,15 -Region,West Midlands,1134,2016-04-22,16 -Region,West Midlands,1065,2016-04-29,17 -Region,West Midlands,929,2016-05-06,18 -Region,West Midlands,1069,2016-05-13,19 -Region,West Midlands,1013,2016-05-20,20 -Region,West Midlands,995,2016-05-27,21 -Region,West Midlands,776,2016-06-03,22 -Region,West Midlands,1011,2016-06-10,23 -Region,West Midlands,981,2016-06-17,24 -Region,West Midlands,1015,2016-06-24,25 -Region,West Midlands,954,2016-07-01,26 -Region,West Midlands,956,2016-07-08,27 -Region,West Midlands,943,2016-07-15,28 -Region,West Midlands,914,2016-07-22,29 -Region,West Midlands,923,2016-07-29,30 -Region,West Midlands,983,2016-08-05,31 -Region,West Midlands,941,2016-08-12,32 -Region,West Midlands,951,2016-08-19,33 -Region,West Midlands,1039,2016-08-26,34 -Region,West Midlands,764,2016-09-02,35 -Region,West Midlands,974,2016-09-09,36 -Region,West Midlands,898,2016-09-16,37 -Region,West Midlands,892,2016-09-23,38 -Region,West Midlands,971,2016-09-30,39 -Region,West Midlands,938,2016-10-07,40 -Region,West Midlands,966,2016-10-14,41 -Region,West Midlands,977,2016-10-21,42 -Region,West Midlands,966,2016-10-28,43 -Region,West Midlands,1013,2016-11-04,44 -Region,West Midlands,1045,2016-11-11,45 -Region,West Midlands,1117,2016-11-18,46 -Region,West Midlands,1090,2016-11-25,47 -Region,West Midlands,1076,2016-12-02,48 -Region,West Midlands,1164,2016-12-09,49 -Region,West Midlands,1098,2016-12-16,50 -Region,West Midlands,1149,2016-12-23,51 -Region,West Midlands,715,2016-12-30,52 -Region,East,1401,2016-01-08,1 -Region,East,1237,2016-01-15,2 -Region,East,1253,2016-01-22,3 -Region,East,1236,2016-01-29,4 -Region,East,1160,2016-02-05,5 -Region,East,1155,2016-02-12,6 -Region,East,1057,2016-02-19,7 -Region,East,1180,2016-02-26,8 -Region,East,1240,2016-03-04,9 -Region,East,1190,2016-03-11,10 -Region,East,1143,2016-03-18,11 -Region,East,923,2016-03-25,12 -Region,East,1079,2016-04-01,13 -Region,East,1190,2016-04-08,14 -Region,East,1217,2016-04-15,15 -Region,East,1189,2016-04-22,16 -Region,East,1147,2016-04-29,17 -Region,East,954,2016-05-06,18 -Region,East,1190,2016-05-13,19 -Region,East,1147,2016-05-20,20 -Region,East,1103,2016-05-27,21 -Region,East,790,2016-06-03,22 -Region,East,1119,2016-06-10,23 -Region,East,1037,2016-06-17,24 -Region,East,966,2016-06-24,25 -Region,East,971,2016-07-01,26 -Region,East,950,2016-07-08,27 -Region,East,1054,2016-07-15,28 -Region,East,988,2016-07-22,29 -Region,East,1013,2016-07-29,30 -Region,East,1004,2016-08-05,31 -Region,East,1031,2016-08-12,32 -Region,East,1005,2016-08-19,33 -Region,East,991,2016-08-26,34 -Region,East,877,2016-09-02,35 -Region,East,981,2016-09-09,36 -Region,East,998,2016-09-16,37 -Region,East,979,2016-09-23,38 -Region,East,879,2016-09-30,39 -Region,East,945,2016-10-07,40 -Region,East,1069,2016-10-14,41 -Region,East,1020,2016-10-21,42 -Region,East,1034,2016-10-28,43 -Region,East,1048,2016-11-04,44 -Region,East,1127,2016-11-11,45 -Region,East,1184,2016-11-18,46 -Region,East,1131,2016-11-25,47 -Region,East,1176,2016-12-02,48 -Region,East,1212,2016-12-09,49 -Region,East,1107,2016-12-16,50 -Region,East,1207,2016-12-23,51 -Region,East,774,2016-12-30,52 -Region,London,1226,2016-01-08,1 -Region,London,1048,2016-01-15,2 -Region,London,1068,2016-01-22,3 -Region,London,1065,2016-01-29,4 -Region,London,1059,2016-02-05,5 -Region,London,1040,2016-02-12,6 -Region,London,999,2016-02-19,7 -Region,London,1021,2016-02-26,8 -Region,London,1093,2016-03-04,9 -Region,London,1008,2016-03-11,10 -Region,London,1058,2016-03-18,11 -Region,London,900,2016-03-25,12 -Region,London,1039,2016-04-01,13 -Region,London,1111,2016-04-08,14 -Region,London,1007,2016-04-15,15 -Region,London,999,2016-04-22,16 -Region,London,969,2016-04-29,17 -Region,London,876,2016-05-06,18 -Region,London,971,2016-05-13,19 -Region,London,884,2016-05-20,20 -Region,London,884,2016-05-27,21 -Region,London,710,2016-06-03,22 -Region,London,939,2016-06-10,23 -Region,London,858,2016-06-17,24 -Region,London,831,2016-06-24,25 -Region,London,880,2016-07-01,26 -Region,London,796,2016-07-08,27 -Region,London,798,2016-07-15,28 -Region,London,847,2016-07-22,29 -Region,London,940,2016-07-29,30 -Region,London,822,2016-08-05,31 -Region,London,801,2016-08-12,32 -Region,London,831,2016-08-19,33 -Region,London,822,2016-08-26,34 -Region,London,795,2016-09-02,35 -Region,London,873,2016-09-09,36 -Region,London,839,2016-09-16,37 -Region,London,854,2016-09-23,38 -Region,London,852,2016-09-30,39 -Region,London,863,2016-10-07,40 -Region,London,919,2016-10-14,41 -Region,London,931,2016-10-21,42 -Region,London,860,2016-10-28,43 -Region,London,904,2016-11-04,44 -Region,London,976,2016-11-11,45 -Region,London,941,2016-11-18,46 -Region,London,987,2016-11-25,47 -Region,London,936,2016-12-02,48 -Region,London,1029,2016-12-09,49 -Region,London,933,2016-12-16,50 -Region,London,1052,2016-12-23,51 -Region,London,761,2016-12-30,52 -Region,South East,1951,2016-01-08,1 -Region,South East,1771,2016-01-15,2 -Region,South East,1710,2016-01-22,3 -Region,South East,1730,2016-01-29,4 -Region,South East,1604,2016-02-05,5 -Region,South East,1718,2016-02-12,6 -Region,South East,1596,2016-02-19,7 -Region,South East,1707,2016-02-26,8 -Region,South East,1742,2016-03-04,9 -Region,South East,1694,2016-03-11,10 -Region,South East,1595,2016-03-18,11 -Region,South East,1542,2016-03-25,12 -Region,South East,1611,2016-04-01,13 -Region,South East,1828,2016-04-08,14 -Region,South East,1785,2016-04-15,15 -Region,South East,1683,2016-04-22,16 -Region,South East,1634,2016-04-29,17 -Region,South East,1365,2016-05-06,18 -Region,South East,1646,2016-05-13,19 -Region,South East,1534,2016-05-20,20 -Region,South East,1489,2016-05-27,21 -Region,South East,1242,2016-06-03,22 -Region,South East,1468,2016-06-10,23 -Region,South East,1410,2016-06-17,24 -Region,South East,1408,2016-06-24,25 -Region,South East,1497,2016-07-01,26 -Region,South East,1407,2016-07-08,27 -Region,South East,1463,2016-07-15,28 -Region,South East,1443,2016-07-22,29 -Region,South East,1414,2016-07-29,30 -Region,South East,1311,2016-08-05,31 -Region,South East,1346,2016-08-12,32 -Region,South East,1317,2016-08-19,33 -Region,South East,1419,2016-08-26,34 -Region,South East,1251,2016-09-02,35 -Region,South East,1384,2016-09-09,36 -Region,South East,1433,2016-09-16,37 -Region,South East,1399,2016-09-23,38 -Region,South East,1345,2016-09-30,39 -Region,South East,1456,2016-10-07,40 -Region,South East,1524,2016-10-14,41 -Region,South East,1542,2016-10-21,42 -Region,South East,1472,2016-10-28,43 -Region,South East,1630,2016-11-04,44 -Region,South East,1691,2016-11-11,45 -Region,South East,1605,2016-11-18,46 -Region,South East,1679,2016-11-25,47 -Region,South East,1578,2016-12-02,48 -Region,South East,1658,2016-12-09,49 -Region,South East,1634,2016-12-16,50 -Region,South East,1784,2016-12-23,51 -Region,South East,1236,2016-12-30,52 -Region,South West,1424,2016-01-08,1 -Region,South West,1263,2016-01-15,2 -Region,South West,1219,2016-01-22,3 -Region,South West,1207,2016-01-29,4 -Region,South West,1169,2016-02-05,5 -Region,South West,1222,2016-02-12,6 -Region,South West,1171,2016-02-19,7 -Region,South West,1215,2016-02-26,8 -Region,South West,1218,2016-03-04,9 -Region,South West,1148,2016-03-11,10 -Region,South West,1292,2016-03-18,11 -Region,South West,1122,2016-03-25,12 -Region,South West,1104,2016-04-01,13 -Region,South West,1319,2016-04-08,14 -Region,South West,1282,2016-04-15,15 -Region,South West,1250,2016-04-22,16 -Region,South West,1128,2016-04-29,17 -Region,South West,994,2016-05-06,18 -Region,South West,1143,2016-05-13,19 -Region,South West,1092,2016-05-20,20 -Region,South West,1082,2016-05-27,21 -Region,South West,817,2016-06-03,22 -Region,South West,1004,2016-06-10,23 -Region,South West,993,2016-06-17,24 -Region,South West,1039,2016-06-24,25 -Region,South West,964,2016-07-01,26 -Region,South West,1031,2016-07-08,27 -Region,South West,1052,2016-07-15,28 -Region,South West,1023,2016-07-22,29 -Region,South West,1027,2016-07-29,30 -Region,South West,1052,2016-08-05,31 -Region,South West,974,2016-08-12,32 -Region,South West,983,2016-08-19,33 -Region,South West,1000,2016-08-26,34 -Region,South West,797,2016-09-02,35 -Region,South West,1033,2016-09-09,36 -Region,South West,988,2016-09-16,37 -Region,South West,941,2016-09-23,38 -Region,South West,987,2016-09-30,39 -Region,South West,1024,2016-10-07,40 -Region,South West,1056,2016-10-14,41 -Region,South West,1078,2016-10-21,42 -Region,South West,1043,2016-10-28,43 -Region,South West,1114,2016-11-04,44 -Region,South West,1139,2016-11-11,45 -Region,South West,1154,2016-11-18,46 -Region,South West,1154,2016-11-25,47 -Region,South West,1112,2016-12-02,48 -Region,South West,1201,2016-12-09,49 -Region,South West,1145,2016-12-16,50 -Region,South West,1223,2016-12-23,51 -Region,South West,846,2016-12-30,52 -Region,Wales,809,2016-01-08,1 -Region,Wales,711,2016-01-15,2 -Region,Wales,720,2016-01-22,3 -Region,Wales,717,2016-01-29,4 -Region,Wales,690,2016-02-05,5 -Region,Wales,700,2016-02-12,6 -Region,Wales,657,2016-02-19,7 -Region,Wales,696,2016-02-26,8 -Region,Wales,721,2016-03-04,9 -Region,Wales,734,2016-03-11,10 -Region,Wales,738,2016-03-18,11 -Region,Wales,668,2016-03-25,12 -Region,Wales,712,2016-04-01,13 -Region,Wales,742,2016-04-08,14 -Region,Wales,738,2016-04-15,15 -Region,Wales,714,2016-04-22,16 -Region,Wales,629,2016-04-29,17 -Region,Wales,569,2016-05-06,18 -Region,Wales,652,2016-05-13,19 -Region,Wales,611,2016-05-20,20 -Region,Wales,624,2016-05-27,21 -Region,Wales,500,2016-06-03,22 -Region,Wales,584,2016-06-10,23 -Region,Wales,578,2016-06-17,24 -Region,Wales,558,2016-06-24,25 -Region,Wales,549,2016-07-01,26 -Region,Wales,524,2016-07-08,27 -Region,Wales,599,2016-07-15,28 -Region,Wales,560,2016-07-22,29 -Region,Wales,610,2016-07-29,30 -Region,Wales,580,2016-08-05,31 -Region,Wales,641,2016-08-12,32 -Region,Wales,574,2016-08-19,33 -Region,Wales,619,2016-08-26,34 -Region,Wales,470,2016-09-02,35 -Region,Wales,552,2016-09-09,36 -Region,Wales,576,2016-09-16,37 -Region,Wales,563,2016-09-23,38 -Region,Wales,592,2016-09-30,39 -Region,Wales,562,2016-10-07,40 -Region,Wales,587,2016-10-14,41 -Region,Wales,624,2016-10-21,42 -Region,Wales,624,2016-10-28,43 -Region,Wales,644,2016-11-04,44 -Region,Wales,626,2016-11-11,45 -Region,Wales,681,2016-11-18,46 -Region,Wales,661,2016-11-25,47 -Region,Wales,643,2016-12-02,48 -Region,Wales,693,2016-12-09,49 -Region,Wales,663,2016-12-16,50 -Region,Wales,691,2016-12-23,51 -Region,Wales,558,2016-12-30,52 -Total deaths,all ages,11991,2017-01-06,1 -Total deaths,all ages,13715,2017-01-13,2 -Total deaths,all ages,13610,2017-01-20,3 -Total deaths,all ages,12877,2017-01-27,4 -Total deaths,all ages,12485,2017-02-03,5 -Total deaths,all ages,12269,2017-02-10,6 -Total deaths,all ages,11644,2017-02-17,7 -Total deaths,all ages,11794,2017-02-24,8 -Total deaths,all ages,11248,2017-03-03,9 -Total deaths,all ages,11077,2017-03-10,10 -Total deaths,all ages,10697,2017-03-17,11 -Total deaths,all ages,10325,2017-03-24,12 -Total deaths,all ages,10027,2017-03-31,13 -Total deaths,all ages,9939,2017-04-07,14 -Total deaths,all ages,8493,2017-04-14,15 -Total deaths,all ages,9644,2017-04-21,16 -Total deaths,all ages,10908,2017-04-28,17 -Total deaths,all ages,9064,2017-05-05,18 -Total deaths,all ages,10693,2017-05-12,19 -Total deaths,all ages,10288,2017-05-19,20 -Total deaths,all ages,10040,2017-05-26,21 -Total deaths,all ages,8332,2017-06-02,22 -Total deaths,all ages,9766,2017-06-09,23 -Total deaths,all ages,9367,2017-06-16,24 -Total deaths,all ages,9627,2017-06-23,25 -Total deaths,all ages,9334,2017-06-30,26 -Total deaths,all ages,9263,2017-07-07,27 -Total deaths,all ages,9376,2017-07-14,28 -Total deaths,all ages,9113,2017-07-21,29 -Total deaths,all ages,8882,2017-07-28,30 -Total deaths,all ages,8941,2017-08-04,31 -Total deaths,all ages,9038,2017-08-11,32 -Total deaths,all ages,9299,2017-08-18,33 -Total deaths,all ages,9382,2017-08-25,34 -Total deaths,all ages,8149,2017-09-01,35 -Total deaths,all ages,9497,2017-09-08,36 -Total deaths,all ages,9454,2017-09-15,37 -Total deaths,all ages,9534,2017-09-22,38 -Total deaths,all ages,9689,2017-09-29,39 -Total deaths,all ages,9778,2017-10-06,40 -Total deaths,all ages,9940,2017-10-13,41 -Total deaths,all ages,10031,2017-10-20,42 -Total deaths,all ages,9739,2017-10-27,43 -Total deaths,all ages,9984,2017-11-03,44 -Total deaths,all ages,10346,2017-11-10,45 -Total deaths,all ages,10275,2017-11-17,46 -Total deaths,all ages,10621,2017-11-24,47 -Total deaths,all ages,10538,2017-12-01,48 -Total deaths,all ages,10781,2017-12-08,49 -Total deaths,all ages,11217,2017-12-15,50 -Total deaths,all ages,12517,2017-12-22,51 -Total deaths,all ages,8487,2017-12-29,52 -Total deaths,average of same week over 5 years,11782,2017-01-06,1 -Total deaths,average of same week over 5 years,12692,2017-01-13,2 -Total deaths,average of same week over 5 years,11773,2017-01-20,3 -Total deaths,average of same week over 5 years,11441,2017-01-27,4 -Total deaths,average of same week over 5 years,11128,2017-02-03,5 -Total deaths,average of same week over 5 years,10935,2017-02-10,6 -Total deaths,average of same week over 5 years,10835,2017-02-17,7 -Total deaths,average of same week over 5 years,10983,2017-02-24,8 -Total deaths,average of same week over 5 years,10980,2017-03-03,9 -Total deaths,average of same week over 5 years,10816,2017-03-10,10 -Total deaths,average of same week over 5 years,10641,2017-03-17,11 -Total deaths,average of same week over 5 years,10193,2017-03-24,12 -Total deaths,average of same week over 5 years,9863,2017-03-31,13 -Total deaths,average of same week over 5 years,10001,2017-04-07,14 -Total deaths,average of same week over 5 years,10624,2017-04-14,15 -Total deaths,average of same week over 5 years,10625,2017-04-21,16 -Total deaths,average of same week over 5 years,10246,2017-04-28,17 -Total deaths,average of same week over 5 years,9984,2017-05-05,18 -Total deaths,average of same week over 5 years,9158,2017-05-12,19 -Total deaths,average of same week over 5 years,9902,2017-05-19,20 -Total deaths,average of same week over 5 years,9640,2017-05-26,21 -Total deaths,average of same week over 5 years,8417,2017-06-02,22 -Total deaths,average of same week over 5 years,9170,2017-06-09,23 -Total deaths,average of same week over 5 years,9473,2017-06-16,24 -Total deaths,average of same week over 5 years,9117,2017-06-23,25 -Total deaths,average of same week over 5 years,8956,2017-06-30,26 -Total deaths,average of same week over 5 years,8959,2017-07-07,27 -Total deaths,average of same week over 5 years,8893,2017-07-14,28 -Total deaths,average of same week over 5 years,8946,2017-07-21,29 -Total deaths,average of same week over 5 years,8889,2017-07-28,30 -Total deaths,average of same week over 5 years,8762,2017-08-04,31 -Total deaths,average of same week over 5 years,8772,2017-08-11,32 -Total deaths,average of same week over 5 years,8802,2017-08-18,33 -Total deaths,average of same week over 5 years,8953,2017-08-25,34 -Total deaths,average of same week over 5 years,8062,2017-09-01,35 -Total deaths,average of same week over 5 years,8940,2017-09-08,36 -Total deaths,average of same week over 5 years,8929,2017-09-15,37 -Total deaths,average of same week over 5 years,8923,2017-09-22,38 -Total deaths,average of same week over 5 years,9120,2017-09-29,39 -Total deaths,average of same week over 5 years,9248,2017-10-06,40 -Total deaths,average of same week over 5 years,9411,2017-10-13,41 -Total deaths,average of same week over 5 years,9452,2017-10-20,42 -Total deaths,average of same week over 5 years,9563,2017-10-27,43 -Total deaths,average of same week over 5 years,9562,2017-11-03,44 -Total deaths,average of same week over 5 years,9871,2017-11-10,45 -Total deaths,average of same week over 5 years,10030,2017-11-17,46 -Total deaths,average of same week over 5 years,9861,2017-11-24,47 -Total deaths,average of same week over 5 years,9858,2017-12-01,48 -Total deaths,average of same week over 5 years,10322,2017-12-08,49 -Total deaths,average of same week over 5 years,10353,2017-12-15,50 -Total deaths,average of same week over 5 years,11130,2017-12-22,51 -Total deaths,average of same week over 5 years,7831,2017-12-29,52 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),2321,2017-01-06,1 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),2690,2017-01-13,2 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),2625,2017-01-20,3 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),2373,2017-01-27,4 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),2147,2017-02-03,5 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),2093,2017-02-10,6 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1932,2017-02-17,7 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1872,2017-02-24,8 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1766,2017-03-03,9 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1660,2017-03-10,10 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1561,2017-03-17,11 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1436,2017-03-24,12 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1324,2017-03-31,13 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1378,2017-04-07,14 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1143,2017-04-14,15 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1311,2017-04-21,16 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1435,2017-04-28,17 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1154,2017-05-05,18 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1423,2017-05-12,19 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1325,2017-05-19,20 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1286,2017-05-26,21 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1076,2017-06-02,22 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1229,2017-06-09,23 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1062,2017-06-16,24 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1215,2017-06-23,25 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1170,2017-06-30,26 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1012,2017-07-07,27 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1141,2017-07-14,28 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),959,2017-07-21,29 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1004,2017-07-28,30 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1009,2017-08-04,31 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),937,2017-08-11,32 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1081,2017-08-18,33 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1121,2017-08-25,34 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),940,2017-09-01,35 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1058,2017-09-08,36 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1022,2017-09-15,37 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1088,2017-09-22,38 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1153,2017-09-29,39 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1208,2017-10-06,40 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1219,2017-10-13,41 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1199,2017-10-20,42 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1144,2017-10-27,43 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1244,2017-11-03,44 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1314,2017-11-10,45 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1362,2017-11-17,46 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1319,2017-11-24,47 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1436,2017-12-01,48 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1497,2017-12-08,49 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1603,2017-12-15,50 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1905,2017-12-22,51 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1431,2017-12-29,52 -Persons,Under 1 year,58,2017-01-06,1 -Persons,Under 1 year,56,2017-01-13,2 -Persons,Under 1 year,54,2017-01-20,3 -Persons,Under 1 year,52,2017-01-27,4 -Persons,Under 1 year,55,2017-02-03,5 -Persons,Under 1 year,57,2017-02-10,6 -Persons,Under 1 year,49,2017-02-17,7 -Persons,Under 1 year,47,2017-02-24,8 -Persons,Under 1 year,53,2017-03-03,9 -Persons,Under 1 year,54,2017-03-10,10 -Persons,Under 1 year,59,2017-03-17,11 -Persons,Under 1 year,55,2017-03-24,12 -Persons,Under 1 year,65,2017-03-31,13 -Persons,Under 1 year,59,2017-04-07,14 -Persons,Under 1 year,38,2017-04-14,15 -Persons,Under 1 year,68,2017-04-21,16 -Persons,Under 1 year,70,2017-04-28,17 -Persons,Under 1 year,44,2017-05-05,18 -Persons,Under 1 year,41,2017-05-12,19 -Persons,Under 1 year,38,2017-05-19,20 -Persons,Under 1 year,71,2017-05-26,21 -Persons,Under 1 year,49,2017-06-02,22 -Persons,Under 1 year,57,2017-06-09,23 -Persons,Under 1 year,60,2017-06-16,24 -Persons,Under 1 year,65,2017-06-23,25 -Persons,Under 1 year,54,2017-06-30,26 -Persons,Under 1 year,60,2017-07-07,27 -Persons,Under 1 year,56,2017-07-14,28 -Persons,Under 1 year,64,2017-07-21,29 -Persons,Under 1 year,37,2017-07-28,30 -Persons,Under 1 year,47,2017-08-04,31 -Persons,Under 1 year,55,2017-08-11,32 -Persons,Under 1 year,50,2017-08-18,33 -Persons,Under 1 year,51,2017-08-25,34 -Persons,Under 1 year,45,2017-09-01,35 -Persons,Under 1 year,53,2017-09-08,36 -Persons,Under 1 year,48,2017-09-15,37 -Persons,Under 1 year,49,2017-09-22,38 -Persons,Under 1 year,45,2017-09-29,39 -Persons,Under 1 year,66,2017-10-06,40 -Persons,Under 1 year,48,2017-10-13,41 -Persons,Under 1 year,62,2017-10-20,42 -Persons,Under 1 year,54,2017-10-27,43 -Persons,Under 1 year,40,2017-11-03,44 -Persons,Under 1 year,47,2017-11-10,45 -Persons,Under 1 year,48,2017-11-17,46 -Persons,Under 1 year,50,2017-11-24,47 -Persons,Under 1 year,56,2017-12-01,48 -Persons,Under 1 year,58,2017-12-08,49 -Persons,Under 1 year,39,2017-12-15,50 -Persons,Under 1 year,52,2017-12-22,51 -Persons,Under 1 year,23,2017-12-29,52 -Persons,01-14,18,2017-01-06,1 -Persons,01-14,18,2017-01-13,2 -Persons,01-14,19,2017-01-20,3 -Persons,01-14,16,2017-01-27,4 -Persons,01-14,14,2017-02-03,5 -Persons,01-14,17,2017-02-10,6 -Persons,01-14,18,2017-02-17,7 -Persons,01-14,20,2017-02-24,8 -Persons,01-14,22,2017-03-03,9 -Persons,01-14,17,2017-03-10,10 -Persons,01-14,7,2017-03-17,11 -Persons,01-14,13,2017-03-24,12 -Persons,01-14,20,2017-03-31,13 -Persons,01-14,21,2017-04-07,14 -Persons,01-14,20,2017-04-14,15 -Persons,01-14,19,2017-04-21,16 -Persons,01-14,20,2017-04-28,17 -Persons,01-14,18,2017-05-05,18 -Persons,01-14,23,2017-05-12,19 -Persons,01-14,18,2017-05-19,20 -Persons,01-14,21,2017-05-26,21 -Persons,01-14,12,2017-06-02,22 -Persons,01-14,27,2017-06-09,23 -Persons,01-14,20,2017-06-16,24 -Persons,01-14,17,2017-06-23,25 -Persons,01-14,13,2017-06-30,26 -Persons,01-14,23,2017-07-07,27 -Persons,01-14,23,2017-07-14,28 -Persons,01-14,19,2017-07-21,29 -Persons,01-14,15,2017-07-28,30 -Persons,01-14,12,2017-08-04,31 -Persons,01-14,17,2017-08-11,32 -Persons,01-14,20,2017-08-18,33 -Persons,01-14,11,2017-08-25,34 -Persons,01-14,18,2017-09-01,35 -Persons,01-14,17,2017-09-08,36 -Persons,01-14,18,2017-09-15,37 -Persons,01-14,21,2017-09-22,38 -Persons,01-14,27,2017-09-29,39 -Persons,01-14,20,2017-10-06,40 -Persons,01-14,11,2017-10-13,41 -Persons,01-14,13,2017-10-20,42 -Persons,01-14,25,2017-10-27,43 -Persons,01-14,18,2017-11-03,44 -Persons,01-14,20,2017-11-10,45 -Persons,01-14,9,2017-11-17,46 -Persons,01-14,20,2017-11-24,47 -Persons,01-14,21,2017-12-01,48 -Persons,01-14,20,2017-12-08,49 -Persons,01-14,19,2017-12-15,50 -Persons,01-14,20,2017-12-22,51 -Persons,01-14,18,2017-12-29,52 -Persons,15-44,215,2017-01-06,1 -Persons,15-44,287,2017-01-13,2 -Persons,15-44,301,2017-01-20,3 -Persons,15-44,286,2017-01-27,4 -Persons,15-44,308,2017-02-03,5 -Persons,15-44,293,2017-02-10,6 -Persons,15-44,295,2017-02-17,7 -Persons,15-44,286,2017-02-24,8 -Persons,15-44,254,2017-03-03,9 -Persons,15-44,316,2017-03-10,10 -Persons,15-44,274,2017-03-17,11 -Persons,15-44,268,2017-03-24,12 -Persons,15-44,307,2017-03-31,13 -Persons,15-44,277,2017-04-07,14 -Persons,15-44,235,2017-04-14,15 -Persons,15-44,280,2017-04-21,16 -Persons,15-44,273,2017-04-28,17 -Persons,15-44,268,2017-05-05,18 -Persons,15-44,323,2017-05-12,19 -Persons,15-44,291,2017-05-19,20 -Persons,15-44,307,2017-05-26,21 -Persons,15-44,223,2017-06-02,22 -Persons,15-44,308,2017-06-09,23 -Persons,15-44,259,2017-06-16,24 -Persons,15-44,300,2017-06-23,25 -Persons,15-44,275,2017-06-30,26 -Persons,15-44,293,2017-07-07,27 -Persons,15-44,270,2017-07-14,28 -Persons,15-44,331,2017-07-21,29 -Persons,15-44,280,2017-07-28,30 -Persons,15-44,269,2017-08-04,31 -Persons,15-44,257,2017-08-11,32 -Persons,15-44,293,2017-08-18,33 -Persons,15-44,286,2017-08-25,34 -Persons,15-44,211,2017-09-01,35 -Persons,15-44,273,2017-09-08,36 -Persons,15-44,277,2017-09-15,37 -Persons,15-44,294,2017-09-22,38 -Persons,15-44,243,2017-09-29,39 -Persons,15-44,284,2017-10-06,40 -Persons,15-44,245,2017-10-13,41 -Persons,15-44,293,2017-10-20,42 -Persons,15-44,269,2017-10-27,43 -Persons,15-44,288,2017-11-03,44 -Persons,15-44,322,2017-11-10,45 -Persons,15-44,308,2017-11-17,46 -Persons,15-44,310,2017-11-24,47 -Persons,15-44,295,2017-12-01,48 -Persons,15-44,268,2017-12-08,49 -Persons,15-44,267,2017-12-15,50 -Persons,15-44,307,2017-12-22,51 -Persons,15-44,172,2017-12-29,52 -Persons,45-64,1232,2017-01-06,1 -Persons,45-64,1372,2017-01-13,2 -Persons,45-64,1374,2017-01-20,3 -Persons,45-64,1273,2017-01-27,4 -Persons,45-64,1239,2017-02-03,5 -Persons,45-64,1342,2017-02-10,6 -Persons,45-64,1316,2017-02-17,7 -Persons,45-64,1298,2017-02-24,8 -Persons,45-64,1252,2017-03-03,9 -Persons,45-64,1240,2017-03-10,10 -Persons,45-64,1260,2017-03-17,11 -Persons,45-64,1256,2017-03-24,12 -Persons,45-64,1202,2017-03-31,13 -Persons,45-64,1181,2017-04-07,14 -Persons,45-64,1003,2017-04-14,15 -Persons,45-64,1130,2017-04-21,16 -Persons,45-64,1315,2017-04-28,17 -Persons,45-64,1035,2017-05-05,18 -Persons,45-64,1275,2017-05-12,19 -Persons,45-64,1320,2017-05-19,20 -Persons,45-64,1187,2017-05-26,21 -Persons,45-64,995,2017-06-02,22 -Persons,45-64,1227,2017-06-09,23 -Persons,45-64,1188,2017-06-16,24 -Persons,45-64,1175,2017-06-23,25 -Persons,45-64,1121,2017-06-30,26 -Persons,45-64,1202,2017-07-07,27 -Persons,45-64,1144,2017-07-14,28 -Persons,45-64,1210,2017-07-21,29 -Persons,45-64,1184,2017-07-28,30 -Persons,45-64,1131,2017-08-04,31 -Persons,45-64,1141,2017-08-11,32 -Persons,45-64,1146,2017-08-18,33 -Persons,45-64,1095,2017-08-25,34 -Persons,45-64,997,2017-09-01,35 -Persons,45-64,1190,2017-09-08,36 -Persons,45-64,1207,2017-09-15,37 -Persons,45-64,1157,2017-09-22,38 -Persons,45-64,1160,2017-09-29,39 -Persons,45-64,1171,2017-10-06,40 -Persons,45-64,1185,2017-10-13,41 -Persons,45-64,1165,2017-10-20,42 -Persons,45-64,1166,2017-10-27,43 -Persons,45-64,1243,2017-11-03,44 -Persons,45-64,1251,2017-11-10,45 -Persons,45-64,1242,2017-11-17,46 -Persons,45-64,1308,2017-11-24,47 -Persons,45-64,1216,2017-12-01,48 -Persons,45-64,1224,2017-12-08,49 -Persons,45-64,1282,2017-12-15,50 -Persons,45-64,1397,2017-12-22,51 -Persons,45-64,895,2017-12-29,52 -Persons,65-74,1880,2017-01-06,1 -Persons,65-74,2149,2017-01-13,2 -Persons,65-74,2132,2017-01-20,3 -Persons,65-74,1946,2017-01-27,4 -Persons,65-74,1930,2017-02-03,5 -Persons,65-74,1940,2017-02-10,6 -Persons,65-74,1811,2017-02-17,7 -Persons,65-74,1816,2017-02-24,8 -Persons,65-74,1823,2017-03-03,9 -Persons,65-74,1756,2017-03-10,10 -Persons,65-74,1722,2017-03-17,11 -Persons,65-74,1739,2017-03-24,12 -Persons,65-74,1656,2017-03-31,13 -Persons,65-74,1705,2017-04-07,14 -Persons,65-74,1468,2017-04-14,15 -Persons,65-74,1585,2017-04-21,16 -Persons,65-74,1822,2017-04-28,17 -Persons,65-74,1529,2017-05-05,18 -Persons,65-74,1813,2017-05-12,19 -Persons,65-74,1794,2017-05-19,20 -Persons,65-74,1722,2017-05-26,21 -Persons,65-74,1475,2017-06-02,22 -Persons,65-74,1632,2017-06-09,23 -Persons,65-74,1663,2017-06-16,24 -Persons,65-74,1570,2017-06-23,25 -Persons,65-74,1656,2017-06-30,26 -Persons,65-74,1622,2017-07-07,27 -Persons,65-74,1660,2017-07-14,28 -Persons,65-74,1541,2017-07-21,29 -Persons,65-74,1539,2017-07-28,30 -Persons,65-74,1510,2017-08-04,31 -Persons,65-74,1580,2017-08-11,32 -Persons,65-74,1568,2017-08-18,33 -Persons,65-74,1549,2017-08-25,34 -Persons,65-74,1448,2017-09-01,35 -Persons,65-74,1613,2017-09-08,36 -Persons,65-74,1641,2017-09-15,37 -Persons,65-74,1614,2017-09-22,38 -Persons,65-74,1686,2017-09-29,39 -Persons,65-74,1677,2017-10-06,40 -Persons,65-74,1678,2017-10-13,41 -Persons,65-74,1731,2017-10-20,42 -Persons,65-74,1658,2017-10-27,43 -Persons,65-74,1659,2017-11-03,44 -Persons,65-74,1734,2017-11-10,45 -Persons,65-74,1682,2017-11-17,46 -Persons,65-74,1728,2017-11-24,47 -Persons,65-74,1737,2017-12-01,48 -Persons,65-74,1761,2017-12-08,49 -Persons,65-74,1776,2017-12-15,50 -Persons,65-74,1995,2017-12-22,51 -Persons,65-74,1275,2017-12-29,52 -Persons,75-84,3450,2017-01-06,1 -Persons,75-84,3886,2017-01-13,2 -Persons,75-84,3701,2017-01-20,3 -Persons,75-84,3652,2017-01-27,4 -Persons,75-84,3509,2017-02-03,5 -Persons,75-84,3483,2017-02-10,6 -Persons,75-84,3242,2017-02-17,7 -Persons,75-84,3214,2017-02-24,8 -Persons,75-84,3142,2017-03-03,9 -Persons,75-84,3086,2017-03-10,10 -Persons,75-84,3015,2017-03-17,11 -Persons,75-84,2940,2017-03-24,12 -Persons,75-84,2838,2017-03-31,13 -Persons,75-84,2748,2017-04-07,14 -Persons,75-84,2397,2017-04-14,15 -Persons,75-84,2834,2017-04-21,16 -Persons,75-84,3132,2017-04-28,17 -Persons,75-84,2557,2017-05-05,18 -Persons,75-84,3019,2017-05-12,19 -Persons,75-84,2854,2017-05-19,20 -Persons,75-84,2744,2017-05-26,21 -Persons,75-84,2361,2017-06-02,22 -Persons,75-84,2785,2017-06-09,23 -Persons,75-84,2554,2017-06-16,24 -Persons,75-84,2715,2017-06-23,25 -Persons,75-84,2676,2017-06-30,26 -Persons,75-84,2584,2017-07-07,27 -Persons,75-84,2694,2017-07-14,28 -Persons,75-84,2531,2017-07-21,29 -Persons,75-84,2439,2017-07-28,30 -Persons,75-84,2542,2017-08-04,31 -Persons,75-84,2620,2017-08-11,32 -Persons,75-84,2601,2017-08-18,33 -Persons,75-84,2667,2017-08-25,34 -Persons,75-84,2279,2017-09-01,35 -Persons,75-84,2644,2017-09-08,36 -Persons,75-84,2628,2017-09-15,37 -Persons,75-84,2623,2017-09-22,38 -Persons,75-84,2698,2017-09-29,39 -Persons,75-84,2677,2017-10-06,40 -Persons,75-84,2846,2017-10-13,41 -Persons,75-84,2836,2017-10-20,42 -Persons,75-84,2765,2017-10-27,43 -Persons,75-84,2875,2017-11-03,44 -Persons,75-84,2889,2017-11-10,45 -Persons,75-84,2901,2017-11-17,46 -Persons,75-84,2962,2017-11-24,47 -Persons,75-84,2945,2017-12-01,48 -Persons,75-84,3027,2017-12-08,49 -Persons,75-84,3176,2017-12-15,50 -Persons,75-84,3523,2017-12-22,51 -Persons,75-84,2444,2017-12-29,52 -Persons,85+,5136,2017-01-06,1 -Persons,85+,5947,2017-01-13,2 -Persons,85+,6029,2017-01-20,3 -Persons,85+,5652,2017-01-27,4 -Persons,85+,5430,2017-02-03,5 -Persons,85+,5129,2017-02-10,6 -Persons,85+,4913,2017-02-17,7 -Persons,85+,5112,2017-02-24,8 -Persons,85+,4699,2017-03-03,9 -Persons,85+,4608,2017-03-10,10 -Persons,85+,4360,2017-03-17,11 -Persons,85+,4054,2017-03-24,12 -Persons,85+,3939,2017-03-31,13 -Persons,85+,3947,2017-04-07,14 -Persons,85+,3330,2017-04-14,15 -Persons,85+,3721,2017-04-21,16 -Persons,85+,4276,2017-04-28,17 -Persons,85+,3613,2017-05-05,18 -Persons,85+,4196,2017-05-12,19 -Persons,85+,3973,2017-05-19,20 -Persons,85+,3983,2017-05-26,21 -Persons,85+,3217,2017-06-02,22 -Persons,85+,3727,2017-06-09,23 -Persons,85+,3619,2017-06-16,24 -Persons,85+,3785,2017-06-23,25 -Persons,85+,3536,2017-06-30,26 -Persons,85+,3477,2017-07-07,27 -Persons,85+,3528,2017-07-14,28 -Persons,85+,3415,2017-07-21,29 -Persons,85+,3388,2017-07-28,30 -Persons,85+,3427,2017-08-04,31 -Persons,85+,3368,2017-08-11,32 -Persons,85+,3617,2017-08-18,33 -Persons,85+,3723,2017-08-25,34 -Persons,85+,3148,2017-09-01,35 -Persons,85+,3703,2017-09-08,36 -Persons,85+,3634,2017-09-15,37 -Persons,85+,3776,2017-09-22,38 -Persons,85+,3830,2017-09-29,39 -Persons,85+,3881,2017-10-06,40 -Persons,85+,3926,2017-10-13,41 -Persons,85+,3929,2017-10-20,42 -Persons,85+,3802,2017-10-27,43 -Persons,85+,3860,2017-11-03,44 -Persons,85+,4081,2017-11-10,45 -Persons,85+,4084,2017-11-17,46 -Persons,85+,4234,2017-11-24,47 -Persons,85+,4266,2017-12-01,48 -Persons,85+,4423,2017-12-08,49 -Persons,85+,4658,2017-12-15,50 -Persons,85+,5220,2017-12-22,51 -Persons,85+,3654,2017-12-29,52 -Males,Under 1 year,32,2017-01-06,1 -Males,Under 1 year,33,2017-01-13,2 -Males,Under 1 year,28,2017-01-20,3 -Males,Under 1 year,28,2017-01-27,4 -Males,Under 1 year,27,2017-02-03,5 -Males,Under 1 year,29,2017-02-10,6 -Males,Under 1 year,33,2017-02-17,7 -Males,Under 1 year,26,2017-02-24,8 -Males,Under 1 year,32,2017-03-03,9 -Males,Under 1 year,29,2017-03-10,10 -Males,Under 1 year,38,2017-03-17,11 -Males,Under 1 year,27,2017-03-24,12 -Males,Under 1 year,32,2017-03-31,13 -Males,Under 1 year,35,2017-04-07,14 -Males,Under 1 year,20,2017-04-14,15 -Males,Under 1 year,39,2017-04-21,16 -Males,Under 1 year,41,2017-04-28,17 -Males,Under 1 year,25,2017-05-05,18 -Males,Under 1 year,22,2017-05-12,19 -Males,Under 1 year,20,2017-05-19,20 -Males,Under 1 year,40,2017-05-26,21 -Males,Under 1 year,29,2017-06-02,22 -Males,Under 1 year,37,2017-06-09,23 -Males,Under 1 year,30,2017-06-16,24 -Males,Under 1 year,36,2017-06-23,25 -Males,Under 1 year,36,2017-06-30,26 -Males,Under 1 year,33,2017-07-07,27 -Males,Under 1 year,30,2017-07-14,28 -Males,Under 1 year,31,2017-07-21,29 -Males,Under 1 year,20,2017-07-28,30 -Males,Under 1 year,27,2017-08-04,31 -Males,Under 1 year,26,2017-08-11,32 -Males,Under 1 year,27,2017-08-18,33 -Males,Under 1 year,29,2017-08-25,34 -Males,Under 1 year,26,2017-09-01,35 -Males,Under 1 year,34,2017-09-08,36 -Males,Under 1 year,23,2017-09-15,37 -Males,Under 1 year,29,2017-09-22,38 -Males,Under 1 year,21,2017-09-29,39 -Males,Under 1 year,38,2017-10-06,40 -Males,Under 1 year,27,2017-10-13,41 -Males,Under 1 year,30,2017-10-20,42 -Males,Under 1 year,34,2017-10-27,43 -Males,Under 1 year,30,2017-11-03,44 -Males,Under 1 year,26,2017-11-10,45 -Males,Under 1 year,26,2017-11-17,46 -Males,Under 1 year,24,2017-11-24,47 -Males,Under 1 year,33,2017-12-01,48 -Males,Under 1 year,38,2017-12-08,49 -Males,Under 1 year,23,2017-12-15,50 -Males,Under 1 year,25,2017-12-22,51 -Males,Under 1 year,15,2017-12-29,52 -Males,01-14,9,2017-01-06,1 -Males,01-14,10,2017-01-13,2 -Males,01-14,10,2017-01-20,3 -Males,01-14,7,2017-01-27,4 -Males,01-14,8,2017-02-03,5 -Males,01-14,9,2017-02-10,6 -Males,01-14,10,2017-02-17,7 -Males,01-14,8,2017-02-24,8 -Males,01-14,14,2017-03-03,9 -Males,01-14,5,2017-03-10,10 -Males,01-14,4,2017-03-17,11 -Males,01-14,7,2017-03-24,12 -Males,01-14,12,2017-03-31,13 -Males,01-14,8,2017-04-07,14 -Males,01-14,8,2017-04-14,15 -Males,01-14,13,2017-04-21,16 -Males,01-14,10,2017-04-28,17 -Males,01-14,11,2017-05-05,18 -Males,01-14,11,2017-05-12,19 -Males,01-14,10,2017-05-19,20 -Males,01-14,10,2017-05-26,21 -Males,01-14,9,2017-06-02,22 -Males,01-14,20,2017-06-09,23 -Males,01-14,12,2017-06-16,24 -Males,01-14,12,2017-06-23,25 -Males,01-14,7,2017-06-30,26 -Males,01-14,15,2017-07-07,27 -Males,01-14,11,2017-07-14,28 -Males,01-14,12,2017-07-21,29 -Males,01-14,10,2017-07-28,30 -Males,01-14,6,2017-08-04,31 -Males,01-14,8,2017-08-11,32 -Males,01-14,11,2017-08-18,33 -Males,01-14,9,2017-08-25,34 -Males,01-14,6,2017-09-01,35 -Males,01-14,11,2017-09-08,36 -Males,01-14,12,2017-09-15,37 -Males,01-14,13,2017-09-22,38 -Males,01-14,16,2017-09-29,39 -Males,01-14,10,2017-10-06,40 -Males,01-14,5,2017-10-13,41 -Males,01-14,7,2017-10-20,42 -Males,01-14,14,2017-10-27,43 -Males,01-14,14,2017-11-03,44 -Males,01-14,14,2017-11-10,45 -Males,01-14,8,2017-11-17,46 -Males,01-14,11,2017-11-24,47 -Males,01-14,10,2017-12-01,48 -Males,01-14,13,2017-12-08,49 -Males,01-14,10,2017-12-15,50 -Males,01-14,10,2017-12-22,51 -Males,01-14,12,2017-12-29,52 -Males,15-44,143,2017-01-06,1 -Males,15-44,199,2017-01-13,2 -Males,15-44,183,2017-01-20,3 -Males,15-44,189,2017-01-27,4 -Males,15-44,209,2017-02-03,5 -Males,15-44,196,2017-02-10,6 -Males,15-44,176,2017-02-17,7 -Males,15-44,173,2017-02-24,8 -Males,15-44,153,2017-03-03,9 -Males,15-44,211,2017-03-10,10 -Males,15-44,171,2017-03-17,11 -Males,15-44,174,2017-03-24,12 -Males,15-44,196,2017-03-31,13 -Males,15-44,186,2017-04-07,14 -Males,15-44,145,2017-04-14,15 -Males,15-44,172,2017-04-21,16 -Males,15-44,167,2017-04-28,17 -Males,15-44,167,2017-05-05,18 -Males,15-44,192,2017-05-12,19 -Males,15-44,192,2017-05-19,20 -Males,15-44,192,2017-05-26,21 -Males,15-44,141,2017-06-02,22 -Males,15-44,203,2017-06-09,23 -Males,15-44,172,2017-06-16,24 -Males,15-44,194,2017-06-23,25 -Males,15-44,166,2017-06-30,26 -Males,15-44,182,2017-07-07,27 -Males,15-44,158,2017-07-14,28 -Males,15-44,224,2017-07-21,29 -Males,15-44,170,2017-07-28,30 -Males,15-44,170,2017-08-04,31 -Males,15-44,179,2017-08-11,32 -Males,15-44,196,2017-08-18,33 -Males,15-44,182,2017-08-25,34 -Males,15-44,126,2017-09-01,35 -Males,15-44,197,2017-09-08,36 -Males,15-44,189,2017-09-15,37 -Males,15-44,196,2017-09-22,38 -Males,15-44,161,2017-09-29,39 -Males,15-44,192,2017-10-06,40 -Males,15-44,149,2017-10-13,41 -Males,15-44,191,2017-10-20,42 -Males,15-44,168,2017-10-27,43 -Males,15-44,181,2017-11-03,44 -Males,15-44,212,2017-11-10,45 -Males,15-44,208,2017-11-17,46 -Males,15-44,220,2017-11-24,47 -Males,15-44,200,2017-12-01,48 -Males,15-44,168,2017-12-08,49 -Males,15-44,173,2017-12-15,50 -Males,15-44,188,2017-12-22,51 -Males,15-44,97,2017-12-29,52 -Males,45-64,718,2017-01-06,1 -Males,45-64,819,2017-01-13,2 -Males,45-64,837,2017-01-20,3 -Males,45-64,763,2017-01-27,4 -Males,45-64,751,2017-02-03,5 -Males,45-64,825,2017-02-10,6 -Males,45-64,794,2017-02-17,7 -Males,45-64,754,2017-02-24,8 -Males,45-64,733,2017-03-03,9 -Males,45-64,748,2017-03-10,10 -Males,45-64,744,2017-03-17,11 -Males,45-64,762,2017-03-24,12 -Males,45-64,705,2017-03-31,13 -Males,45-64,701,2017-04-07,14 -Males,45-64,634,2017-04-14,15 -Males,45-64,658,2017-04-21,16 -Males,45-64,784,2017-04-28,17 -Males,45-64,648,2017-05-05,18 -Males,45-64,752,2017-05-12,19 -Males,45-64,787,2017-05-19,20 -Males,45-64,737,2017-05-26,21 -Males,45-64,604,2017-06-02,22 -Males,45-64,746,2017-06-09,23 -Males,45-64,726,2017-06-16,24 -Males,45-64,698,2017-06-23,25 -Males,45-64,672,2017-06-30,26 -Males,45-64,731,2017-07-07,27 -Males,45-64,690,2017-07-14,28 -Males,45-64,727,2017-07-21,29 -Males,45-64,704,2017-07-28,30 -Males,45-64,700,2017-08-04,31 -Males,45-64,685,2017-08-11,32 -Males,45-64,678,2017-08-18,33 -Males,45-64,665,2017-08-25,34 -Males,45-64,611,2017-09-01,35 -Males,45-64,690,2017-09-08,36 -Males,45-64,707,2017-09-15,37 -Males,45-64,694,2017-09-22,38 -Males,45-64,669,2017-09-29,39 -Males,45-64,672,2017-10-06,40 -Males,45-64,706,2017-10-13,41 -Males,45-64,717,2017-10-20,42 -Males,45-64,712,2017-10-27,43 -Males,45-64,737,2017-11-03,44 -Males,45-64,736,2017-11-10,45 -Males,45-64,723,2017-11-17,46 -Males,45-64,763,2017-11-24,47 -Males,45-64,735,2017-12-01,48 -Males,45-64,760,2017-12-08,49 -Males,45-64,753,2017-12-15,50 -Males,45-64,849,2017-12-22,51 -Males,45-64,529,2017-12-29,52 -Males,65-74,1070,2017-01-06,1 -Males,65-74,1237,2017-01-13,2 -Males,65-74,1202,2017-01-20,3 -Males,65-74,1164,2017-01-27,4 -Males,65-74,1149,2017-02-03,5 -Males,65-74,1136,2017-02-10,6 -Males,65-74,1071,2017-02-17,7 -Males,65-74,1031,2017-02-24,8 -Males,65-74,1039,2017-03-03,9 -Males,65-74,1045,2017-03-10,10 -Males,65-74,996,2017-03-17,11 -Males,65-74,1000,2017-03-24,12 -Males,65-74,969,2017-03-31,13 -Males,65-74,1005,2017-04-07,14 -Males,65-74,849,2017-04-14,15 -Males,65-74,943,2017-04-21,16 -Males,65-74,1104,2017-04-28,17 -Males,65-74,892,2017-05-05,18 -Males,65-74,1088,2017-05-12,19 -Males,65-74,1061,2017-05-19,20 -Males,65-74,1022,2017-05-26,21 -Males,65-74,864,2017-06-02,22 -Males,65-74,950,2017-06-09,23 -Males,65-74,949,2017-06-16,24 -Males,65-74,905,2017-06-23,25 -Males,65-74,982,2017-06-30,26 -Males,65-74,984,2017-07-07,27 -Males,65-74,982,2017-07-14,28 -Males,65-74,938,2017-07-21,29 -Males,65-74,931,2017-07-28,30 -Males,65-74,887,2017-08-04,31 -Males,65-74,946,2017-08-11,32 -Males,65-74,927,2017-08-18,33 -Males,65-74,894,2017-08-25,34 -Males,65-74,845,2017-09-01,35 -Males,65-74,968,2017-09-08,36 -Males,65-74,949,2017-09-15,37 -Males,65-74,944,2017-09-22,38 -Males,65-74,952,2017-09-29,39 -Males,65-74,964,2017-10-06,40 -Males,65-74,965,2017-10-13,41 -Males,65-74,1022,2017-10-20,42 -Males,65-74,975,2017-10-27,43 -Males,65-74,977,2017-11-03,44 -Males,65-74,1057,2017-11-10,45 -Males,65-74,963,2017-11-17,46 -Males,65-74,1016,2017-11-24,47 -Males,65-74,991,2017-12-01,48 -Males,65-74,1029,2017-12-08,49 -Males,65-74,1048,2017-12-15,50 -Males,65-74,1114,2017-12-22,51 -Males,65-74,665,2017-12-29,52 -Males,75-84,1803,2017-01-06,1 -Males,75-84,2015,2017-01-13,2 -Males,75-84,1902,2017-01-20,3 -Males,75-84,1893,2017-01-27,4 -Males,75-84,1854,2017-02-03,5 -Males,75-84,1754,2017-02-10,6 -Males,75-84,1719,2017-02-17,7 -Males,75-84,1680,2017-02-24,8 -Males,75-84,1646,2017-03-03,9 -Males,75-84,1636,2017-03-10,10 -Males,75-84,1573,2017-03-17,11 -Males,75-84,1612,2017-03-24,12 -Males,75-84,1519,2017-03-31,13 -Males,75-84,1491,2017-04-07,14 -Males,75-84,1255,2017-04-14,15 -Males,75-84,1529,2017-04-21,16 -Males,75-84,1687,2017-04-28,17 -Males,75-84,1345,2017-05-05,18 -Males,75-84,1631,2017-05-12,19 -Males,75-84,1506,2017-05-19,20 -Males,75-84,1448,2017-05-26,21 -Males,75-84,1260,2017-06-02,22 -Males,75-84,1486,2017-06-09,23 -Males,75-84,1372,2017-06-16,24 -Males,75-84,1490,2017-06-23,25 -Males,75-84,1405,2017-06-30,26 -Males,75-84,1397,2017-07-07,27 -Males,75-84,1446,2017-07-14,28 -Males,75-84,1331,2017-07-21,29 -Males,75-84,1289,2017-07-28,30 -Males,75-84,1356,2017-08-04,31 -Males,75-84,1393,2017-08-11,32 -Males,75-84,1381,2017-08-18,33 -Males,75-84,1439,2017-08-25,34 -Males,75-84,1222,2017-09-01,35 -Males,75-84,1432,2017-09-08,36 -Males,75-84,1432,2017-09-15,37 -Males,75-84,1426,2017-09-22,38 -Males,75-84,1438,2017-09-29,39 -Males,75-84,1403,2017-10-06,40 -Males,75-84,1534,2017-10-13,41 -Males,75-84,1504,2017-10-20,42 -Males,75-84,1452,2017-10-27,43 -Males,75-84,1563,2017-11-03,44 -Males,75-84,1583,2017-11-10,45 -Males,75-84,1557,2017-11-17,46 -Males,75-84,1596,2017-11-24,47 -Males,75-84,1585,2017-12-01,48 -Males,75-84,1619,2017-12-08,49 -Males,75-84,1690,2017-12-15,50 -Males,75-84,1796,2017-12-22,51 -Males,75-84,1289,2017-12-29,52 -Males,85+,1907,2017-01-06,1 -Males,85+,2230,2017-01-13,2 -Males,85+,2282,2017-01-20,3 -Males,85+,2074,2017-01-27,4 -Males,85+,2059,2017-02-03,5 -Males,85+,1887,2017-02-10,6 -Males,85+,1884,2017-02-17,7 -Males,85+,1923,2017-02-24,8 -Males,85+,1768,2017-03-03,9 -Males,85+,1760,2017-03-10,10 -Males,85+,1672,2017-03-17,11 -Males,85+,1512,2017-03-24,12 -Males,85+,1455,2017-03-31,13 -Males,85+,1565,2017-04-07,14 -Males,85+,1250,2017-04-14,15 -Males,85+,1423,2017-04-21,16 -Males,85+,1655,2017-04-28,17 -Males,85+,1441,2017-05-05,18 -Males,85+,1657,2017-05-12,19 -Males,85+,1503,2017-05-19,20 -Males,85+,1553,2017-05-26,21 -Males,85+,1204,2017-06-02,22 -Males,85+,1477,2017-06-09,23 -Males,85+,1400,2017-06-16,24 -Males,85+,1465,2017-06-23,25 -Males,85+,1314,2017-06-30,26 -Males,85+,1391,2017-07-07,27 -Males,85+,1398,2017-07-14,28 -Males,85+,1358,2017-07-21,29 -Males,85+,1304,2017-07-28,30 -Males,85+,1304,2017-08-04,31 -Males,85+,1326,2017-08-11,32 -Males,85+,1414,2017-08-18,33 -Males,85+,1452,2017-08-25,34 -Males,85+,1221,2017-09-01,35 -Males,85+,1451,2017-09-08,36 -Males,85+,1452,2017-09-15,37 -Males,85+,1488,2017-09-22,38 -Males,85+,1532,2017-09-29,39 -Males,85+,1568,2017-10-06,40 -Males,85+,1519,2017-10-13,41 -Males,85+,1545,2017-10-20,42 -Males,85+,1494,2017-10-27,43 -Males,85+,1454,2017-11-03,44 -Males,85+,1608,2017-11-10,45 -Males,85+,1616,2017-11-17,46 -Males,85+,1624,2017-11-24,47 -Males,85+,1633,2017-12-01,48 -Males,85+,1736,2017-12-08,49 -Males,85+,1791,2017-12-15,50 -Males,85+,2004,2017-12-22,51 -Males,85+,1410,2017-12-29,52 -Females,Under 1 year,26,2017-01-06,1 -Females,Under 1 year,23,2017-01-13,2 -Females,Under 1 year,26,2017-01-20,3 -Females,Under 1 year,24,2017-01-27,4 -Females,Under 1 year,28,2017-02-03,5 -Females,Under 1 year,28,2017-02-10,6 -Females,Under 1 year,16,2017-02-17,7 -Females,Under 1 year,21,2017-02-24,8 -Females,Under 1 year,21,2017-03-03,9 -Females,Under 1 year,25,2017-03-10,10 -Females,Under 1 year,21,2017-03-17,11 -Females,Under 1 year,28,2017-03-24,12 -Females,Under 1 year,33,2017-03-31,13 -Females,Under 1 year,24,2017-04-07,14 -Females,Under 1 year,18,2017-04-14,15 -Females,Under 1 year,29,2017-04-21,16 -Females,Under 1 year,29,2017-04-28,17 -Females,Under 1 year,19,2017-05-05,18 -Females,Under 1 year,19,2017-05-12,19 -Females,Under 1 year,18,2017-05-19,20 -Females,Under 1 year,31,2017-05-26,21 -Females,Under 1 year,20,2017-06-02,22 -Females,Under 1 year,20,2017-06-09,23 -Females,Under 1 year,30,2017-06-16,24 -Females,Under 1 year,29,2017-06-23,25 -Females,Under 1 year,18,2017-06-30,26 -Females,Under 1 year,27,2017-07-07,27 -Females,Under 1 year,26,2017-07-14,28 -Females,Under 1 year,33,2017-07-21,29 -Females,Under 1 year,17,2017-07-28,30 -Females,Under 1 year,20,2017-08-04,31 -Females,Under 1 year,29,2017-08-11,32 -Females,Under 1 year,23,2017-08-18,33 -Females,Under 1 year,22,2017-08-25,34 -Females,Under 1 year,19,2017-09-01,35 -Females,Under 1 year,19,2017-09-08,36 -Females,Under 1 year,25,2017-09-15,37 -Females,Under 1 year,20,2017-09-22,38 -Females,Under 1 year,24,2017-09-29,39 -Females,Under 1 year,28,2017-10-06,40 -Females,Under 1 year,21,2017-10-13,41 -Females,Under 1 year,32,2017-10-20,42 -Females,Under 1 year,20,2017-10-27,43 -Females,Under 1 year,10,2017-11-03,44 -Females,Under 1 year,21,2017-11-10,45 -Females,Under 1 year,22,2017-11-17,46 -Females,Under 1 year,26,2017-11-24,47 -Females,Under 1 year,23,2017-12-01,48 -Females,Under 1 year,20,2017-12-08,49 -Females,Under 1 year,16,2017-12-15,50 -Females,Under 1 year,27,2017-12-22,51 -Females,Under 1 year,8,2017-12-29,52 -Females,01-14,9,2017-01-06,1 -Females,01-14,8,2017-01-13,2 -Females,01-14,9,2017-01-20,3 -Females,01-14,9,2017-01-27,4 -Females,01-14,6,2017-02-03,5 -Females,01-14,8,2017-02-10,6 -Females,01-14,8,2017-02-17,7 -Females,01-14,12,2017-02-24,8 -Females,01-14,8,2017-03-03,9 -Females,01-14,12,2017-03-10,10 -Females,01-14,3,2017-03-17,11 -Females,01-14,6,2017-03-24,12 -Females,01-14,8,2017-03-31,13 -Females,01-14,13,2017-04-07,14 -Females,01-14,12,2017-04-14,15 -Females,01-14,6,2017-04-21,16 -Females,01-14,10,2017-04-28,17 -Females,01-14,7,2017-05-05,18 -Females,01-14,12,2017-05-12,19 -Females,01-14,8,2017-05-19,20 -Females,01-14,11,2017-05-26,21 -Females,01-14,3,2017-06-02,22 -Females,01-14,7,2017-06-09,23 -Females,01-14,8,2017-06-16,24 -Females,01-14,5,2017-06-23,25 -Females,01-14,6,2017-06-30,26 -Females,01-14,8,2017-07-07,27 -Females,01-14,12,2017-07-14,28 -Females,01-14,7,2017-07-21,29 -Females,01-14,5,2017-07-28,30 -Females,01-14,6,2017-08-04,31 -Females,01-14,9,2017-08-11,32 -Females,01-14,9,2017-08-18,33 -Females,01-14,2,2017-08-25,34 -Females,01-14,12,2017-09-01,35 -Females,01-14,6,2017-09-08,36 -Females,01-14,6,2017-09-15,37 -Females,01-14,8,2017-09-22,38 -Females,01-14,11,2017-09-29,39 -Females,01-14,10,2017-10-06,40 -Females,01-14,6,2017-10-13,41 -Females,01-14,6,2017-10-20,42 -Females,01-14,11,2017-10-27,43 -Females,01-14,4,2017-11-03,44 -Females,01-14,6,2017-11-10,45 -Females,01-14,1,2017-11-17,46 -Females,01-14,9,2017-11-24,47 -Females,01-14,11,2017-12-01,48 -Females,01-14,7,2017-12-08,49 -Females,01-14,9,2017-12-15,50 -Females,01-14,10,2017-12-22,51 -Females,01-14,6,2017-12-29,52 -Females,15-44,72,2017-01-06,1 -Females,15-44,88,2017-01-13,2 -Females,15-44,118,2017-01-20,3 -Females,15-44,97,2017-01-27,4 -Females,15-44,99,2017-02-03,5 -Females,15-44,97,2017-02-10,6 -Females,15-44,119,2017-02-17,7 -Females,15-44,113,2017-02-24,8 -Females,15-44,101,2017-03-03,9 -Females,15-44,105,2017-03-10,10 -Females,15-44,103,2017-03-17,11 -Females,15-44,94,2017-03-24,12 -Females,15-44,111,2017-03-31,13 -Females,15-44,91,2017-04-07,14 -Females,15-44,90,2017-04-14,15 -Females,15-44,108,2017-04-21,16 -Females,15-44,106,2017-04-28,17 -Females,15-44,101,2017-05-05,18 -Females,15-44,131,2017-05-12,19 -Females,15-44,99,2017-05-19,20 -Females,15-44,115,2017-05-26,21 -Females,15-44,82,2017-06-02,22 -Females,15-44,105,2017-06-09,23 -Females,15-44,87,2017-06-16,24 -Females,15-44,106,2017-06-23,25 -Females,15-44,109,2017-06-30,26 -Females,15-44,111,2017-07-07,27 -Females,15-44,112,2017-07-14,28 -Females,15-44,107,2017-07-21,29 -Females,15-44,110,2017-07-28,30 -Females,15-44,99,2017-08-04,31 -Females,15-44,78,2017-08-11,32 -Females,15-44,97,2017-08-18,33 -Females,15-44,104,2017-08-25,34 -Females,15-44,85,2017-09-01,35 -Females,15-44,76,2017-09-08,36 -Females,15-44,88,2017-09-15,37 -Females,15-44,98,2017-09-22,38 -Females,15-44,82,2017-09-29,39 -Females,15-44,92,2017-10-06,40 -Females,15-44,96,2017-10-13,41 -Females,15-44,102,2017-10-20,42 -Females,15-44,101,2017-10-27,43 -Females,15-44,107,2017-11-03,44 -Females,15-44,110,2017-11-10,45 -Females,15-44,100,2017-11-17,46 -Females,15-44,90,2017-11-24,47 -Females,15-44,95,2017-12-01,48 -Females,15-44,100,2017-12-08,49 -Females,15-44,94,2017-12-15,50 -Females,15-44,119,2017-12-22,51 -Females,15-44,75,2017-12-29,52 -Females,45-64,514,2017-01-06,1 -Females,45-64,553,2017-01-13,2 -Females,45-64,537,2017-01-20,3 -Females,45-64,510,2017-01-27,4 -Females,45-64,488,2017-02-03,5 -Females,45-64,517,2017-02-10,6 -Females,45-64,522,2017-02-17,7 -Females,45-64,544,2017-02-24,8 -Females,45-64,519,2017-03-03,9 -Females,45-64,492,2017-03-10,10 -Females,45-64,516,2017-03-17,11 -Females,45-64,494,2017-03-24,12 -Females,45-64,497,2017-03-31,13 -Females,45-64,480,2017-04-07,14 -Females,45-64,369,2017-04-14,15 -Females,45-64,472,2017-04-21,16 -Females,45-64,531,2017-04-28,17 -Females,45-64,387,2017-05-05,18 -Females,45-64,523,2017-05-12,19 -Females,45-64,533,2017-05-19,20 -Females,45-64,450,2017-05-26,21 -Females,45-64,391,2017-06-02,22 -Females,45-64,481,2017-06-09,23 -Females,45-64,462,2017-06-16,24 -Females,45-64,477,2017-06-23,25 -Females,45-64,449,2017-06-30,26 -Females,45-64,471,2017-07-07,27 -Females,45-64,454,2017-07-14,28 -Females,45-64,483,2017-07-21,29 -Females,45-64,480,2017-07-28,30 -Females,45-64,431,2017-08-04,31 -Females,45-64,456,2017-08-11,32 -Females,45-64,468,2017-08-18,33 -Females,45-64,430,2017-08-25,34 -Females,45-64,386,2017-09-01,35 -Females,45-64,500,2017-09-08,36 -Females,45-64,500,2017-09-15,37 -Females,45-64,463,2017-09-22,38 -Females,45-64,491,2017-09-29,39 -Females,45-64,499,2017-10-06,40 -Females,45-64,479,2017-10-13,41 -Females,45-64,448,2017-10-20,42 -Females,45-64,454,2017-10-27,43 -Females,45-64,506,2017-11-03,44 -Females,45-64,515,2017-11-10,45 -Females,45-64,519,2017-11-17,46 -Females,45-64,545,2017-11-24,47 -Females,45-64,481,2017-12-01,48 -Females,45-64,464,2017-12-08,49 -Females,45-64,529,2017-12-15,50 -Females,45-64,548,2017-12-22,51 -Females,45-64,366,2017-12-29,52 -Females,65-74,810,2017-01-06,1 -Females,65-74,912,2017-01-13,2 -Females,65-74,930,2017-01-20,3 -Females,65-74,782,2017-01-27,4 -Females,65-74,781,2017-02-03,5 -Females,65-74,804,2017-02-10,6 -Females,65-74,740,2017-02-17,7 -Females,65-74,785,2017-02-24,8 -Females,65-74,784,2017-03-03,9 -Females,65-74,711,2017-03-10,10 -Females,65-74,726,2017-03-17,11 -Females,65-74,739,2017-03-24,12 -Females,65-74,687,2017-03-31,13 -Females,65-74,700,2017-04-07,14 -Females,65-74,619,2017-04-14,15 -Females,65-74,642,2017-04-21,16 -Females,65-74,718,2017-04-28,17 -Females,65-74,637,2017-05-05,18 -Females,65-74,725,2017-05-12,19 -Females,65-74,733,2017-05-19,20 -Females,65-74,700,2017-05-26,21 -Females,65-74,611,2017-06-02,22 -Females,65-74,682,2017-06-09,23 -Females,65-74,714,2017-06-16,24 -Females,65-74,665,2017-06-23,25 -Females,65-74,674,2017-06-30,26 -Females,65-74,638,2017-07-07,27 -Females,65-74,678,2017-07-14,28 -Females,65-74,603,2017-07-21,29 -Females,65-74,608,2017-07-28,30 -Females,65-74,623,2017-08-04,31 -Females,65-74,634,2017-08-11,32 -Females,65-74,641,2017-08-18,33 -Females,65-74,655,2017-08-25,34 -Females,65-74,603,2017-09-01,35 -Females,65-74,645,2017-09-08,36 -Females,65-74,692,2017-09-15,37 -Females,65-74,670,2017-09-22,38 -Females,65-74,734,2017-09-29,39 -Females,65-74,713,2017-10-06,40 -Females,65-74,713,2017-10-13,41 -Females,65-74,709,2017-10-20,42 -Females,65-74,683,2017-10-27,43 -Females,65-74,682,2017-11-03,44 -Females,65-74,677,2017-11-10,45 -Females,65-74,719,2017-11-17,46 -Females,65-74,712,2017-11-24,47 -Females,65-74,746,2017-12-01,48 -Females,65-74,732,2017-12-08,49 -Females,65-74,728,2017-12-15,50 -Females,65-74,881,2017-12-22,51 -Females,65-74,610,2017-12-29,52 -Females,75-84,1647,2017-01-06,1 -Females,75-84,1871,2017-01-13,2 -Females,75-84,1799,2017-01-20,3 -Females,75-84,1759,2017-01-27,4 -Females,75-84,1655,2017-02-03,5 -Females,75-84,1729,2017-02-10,6 -Females,75-84,1523,2017-02-17,7 -Females,75-84,1534,2017-02-24,8 -Females,75-84,1496,2017-03-03,9 -Females,75-84,1450,2017-03-10,10 -Females,75-84,1442,2017-03-17,11 -Females,75-84,1328,2017-03-24,12 -Females,75-84,1319,2017-03-31,13 -Females,75-84,1257,2017-04-07,14 -Females,75-84,1142,2017-04-14,15 -Females,75-84,1305,2017-04-21,16 -Females,75-84,1445,2017-04-28,17 -Females,75-84,1212,2017-05-05,18 -Females,75-84,1388,2017-05-12,19 -Females,75-84,1348,2017-05-19,20 -Females,75-84,1296,2017-05-26,21 -Females,75-84,1101,2017-06-02,22 -Females,75-84,1299,2017-06-09,23 -Females,75-84,1182,2017-06-16,24 -Females,75-84,1225,2017-06-23,25 -Females,75-84,1271,2017-06-30,26 -Females,75-84,1187,2017-07-07,27 -Females,75-84,1248,2017-07-14,28 -Females,75-84,1200,2017-07-21,29 -Females,75-84,1150,2017-07-28,30 -Females,75-84,1186,2017-08-04,31 -Females,75-84,1227,2017-08-11,32 -Females,75-84,1220,2017-08-18,33 -Females,75-84,1228,2017-08-25,34 -Females,75-84,1057,2017-09-01,35 -Females,75-84,1212,2017-09-08,36 -Females,75-84,1196,2017-09-15,37 -Females,75-84,1197,2017-09-22,38 -Females,75-84,1260,2017-09-29,39 -Females,75-84,1274,2017-10-06,40 -Females,75-84,1312,2017-10-13,41 -Females,75-84,1332,2017-10-20,42 -Females,75-84,1313,2017-10-27,43 -Females,75-84,1312,2017-11-03,44 -Females,75-84,1306,2017-11-10,45 -Females,75-84,1344,2017-11-17,46 -Females,75-84,1366,2017-11-24,47 -Females,75-84,1360,2017-12-01,48 -Females,75-84,1408,2017-12-08,49 -Females,75-84,1486,2017-12-15,50 -Females,75-84,1727,2017-12-22,51 -Females,75-84,1155,2017-12-29,52 -Females,85+,3229,2017-01-06,1 -Females,85+,3717,2017-01-13,2 -Females,85+,3747,2017-01-20,3 -Females,85+,3578,2017-01-27,4 -Females,85+,3371,2017-02-03,5 -Females,85+,3242,2017-02-10,6 -Females,85+,3029,2017-02-17,7 -Females,85+,3189,2017-02-24,8 -Females,85+,2931,2017-03-03,9 -Females,85+,2848,2017-03-10,10 -Females,85+,2688,2017-03-17,11 -Females,85+,2542,2017-03-24,12 -Females,85+,2484,2017-03-31,13 -Females,85+,2382,2017-04-07,14 -Females,85+,2080,2017-04-14,15 -Females,85+,2298,2017-04-21,16 -Females,85+,2621,2017-04-28,17 -Females,85+,2172,2017-05-05,18 -Females,85+,2539,2017-05-12,19 -Females,85+,2470,2017-05-19,20 -Females,85+,2430,2017-05-26,21 -Females,85+,2013,2017-06-02,22 -Females,85+,2250,2017-06-09,23 -Females,85+,2219,2017-06-16,24 -Females,85+,2320,2017-06-23,25 -Females,85+,2222,2017-06-30,26 -Females,85+,2086,2017-07-07,27 -Females,85+,2130,2017-07-14,28 -Females,85+,2057,2017-07-21,29 -Females,85+,2084,2017-07-28,30 -Females,85+,2123,2017-08-04,31 -Females,85+,2042,2017-08-11,32 -Females,85+,2203,2017-08-18,33 -Females,85+,2271,2017-08-25,34 -Females,85+,1927,2017-09-01,35 -Females,85+,2252,2017-09-08,36 -Females,85+,2182,2017-09-15,37 -Females,85+,2288,2017-09-22,38 -Females,85+,2298,2017-09-29,39 -Females,85+,2313,2017-10-06,40 -Females,85+,2407,2017-10-13,41 -Females,85+,2384,2017-10-20,42 -Females,85+,2308,2017-10-27,43 -Females,85+,2406,2017-11-03,44 -Females,85+,2473,2017-11-10,45 -Females,85+,2468,2017-11-17,46 -Females,85+,2610,2017-11-24,47 -Females,85+,2633,2017-12-01,48 -Females,85+,2687,2017-12-08,49 -Females,85+,2867,2017-12-15,50 -Females,85+,3216,2017-12-22,51 -Females,85+,2244,2017-12-29,52 -Region,North East,602,2017-01-06,1 -Region,North East,738,2017-01-13,2 -Region,North East,676,2017-01-20,3 -Region,North East,627,2017-01-27,4 -Region,North East,631,2017-02-03,5 -Region,North East,635,2017-02-10,6 -Region,North East,610,2017-02-17,7 -Region,North East,636,2017-02-24,8 -Region,North East,606,2017-03-03,9 -Region,North East,570,2017-03-10,10 -Region,North East,581,2017-03-17,11 -Region,North East,535,2017-03-24,12 -Region,North East,509,2017-03-31,13 -Region,North East,523,2017-04-07,14 -Region,North East,410,2017-04-14,15 -Region,North East,517,2017-04-21,16 -Region,North East,583,2017-04-28,17 -Region,North East,479,2017-05-05,18 -Region,North East,551,2017-05-12,19 -Region,North East,553,2017-05-19,20 -Region,North East,519,2017-05-26,21 -Region,North East,408,2017-06-02,22 -Region,North East,514,2017-06-09,23 -Region,North East,499,2017-06-16,24 -Region,North East,509,2017-06-23,25 -Region,North East,451,2017-06-30,26 -Region,North East,495,2017-07-07,27 -Region,North East,502,2017-07-14,28 -Region,North East,514,2017-07-21,29 -Region,North East,456,2017-07-28,30 -Region,North East,507,2017-08-04,31 -Region,North East,479,2017-08-11,32 -Region,North East,464,2017-08-18,33 -Region,North East,482,2017-08-25,34 -Region,North East,434,2017-09-01,35 -Region,North East,512,2017-09-08,36 -Region,North East,539,2017-09-15,37 -Region,North East,504,2017-09-22,38 -Region,North East,507,2017-09-29,39 -Region,North East,501,2017-10-06,40 -Region,North East,513,2017-10-13,41 -Region,North East,550,2017-10-20,42 -Region,North East,509,2017-10-27,43 -Region,North East,536,2017-11-03,44 -Region,North East,510,2017-11-10,45 -Region,North East,502,2017-11-17,46 -Region,North East,550,2017-11-24,47 -Region,North East,562,2017-12-01,48 -Region,North East,612,2017-12-08,49 -Region,North East,595,2017-12-15,50 -Region,North East,719,2017-12-22,51 -Region,North East,500,2017-12-29,52 -Region,North West,1665,2017-01-06,1 -Region,North West,1840,2017-01-13,2 -Region,North West,1786,2017-01-20,3 -Region,North West,1666,2017-01-27,4 -Region,North West,1625,2017-02-03,5 -Region,North West,1566,2017-02-10,6 -Region,North West,1528,2017-02-17,7 -Region,North West,1519,2017-02-24,8 -Region,North West,1488,2017-03-03,9 -Region,North West,1464,2017-03-10,10 -Region,North West,1450,2017-03-17,11 -Region,North West,1364,2017-03-24,12 -Region,North West,1313,2017-03-31,13 -Region,North West,1373,2017-04-07,14 -Region,North West,1217,2017-04-14,15 -Region,North West,1362,2017-04-21,16 -Region,North West,1495,2017-04-28,17 -Region,North West,1279,2017-05-05,18 -Region,North West,1368,2017-05-12,19 -Region,North West,1329,2017-05-19,20 -Region,North West,1349,2017-05-26,21 -Region,North West,1208,2017-06-02,22 -Region,North West,1311,2017-06-09,23 -Region,North West,1272,2017-06-16,24 -Region,North West,1328,2017-06-23,25 -Region,North West,1174,2017-06-30,26 -Region,North West,1278,2017-07-07,27 -Region,North West,1225,2017-07-14,28 -Region,North West,1196,2017-07-21,29 -Region,North West,1174,2017-07-28,30 -Region,North West,1192,2017-08-04,31 -Region,North West,1171,2017-08-11,32 -Region,North West,1260,2017-08-18,33 -Region,North West,1299,2017-08-25,34 -Region,North West,1117,2017-09-01,35 -Region,North West,1307,2017-09-08,36 -Region,North West,1285,2017-09-15,37 -Region,North West,1221,2017-09-22,38 -Region,North West,1305,2017-09-29,39 -Region,North West,1289,2017-10-06,40 -Region,North West,1340,2017-10-13,41 -Region,North West,1359,2017-10-20,42 -Region,North West,1375,2017-10-27,43 -Region,North West,1356,2017-11-03,44 -Region,North West,1365,2017-11-10,45 -Region,North West,1381,2017-11-17,46 -Region,North West,1419,2017-11-24,47 -Region,North West,1453,2017-12-01,48 -Region,North West,1538,2017-12-08,49 -Region,North West,1509,2017-12-15,50 -Region,North West,1709,2017-12-22,51 -Region,North West,1194,2017-12-29,52 -Region,Yorkshire and The Humber,1208,2017-01-06,1 -Region,Yorkshire and The Humber,1351,2017-01-13,2 -Region,Yorkshire and The Humber,1383,2017-01-20,3 -Region,Yorkshire and The Humber,1242,2017-01-27,4 -Region,Yorkshire and The Humber,1243,2017-02-03,5 -Region,Yorkshire and The Humber,1224,2017-02-10,6 -Region,Yorkshire and The Humber,1186,2017-02-17,7 -Region,Yorkshire and The Humber,1159,2017-02-24,8 -Region,Yorkshire and The Humber,1123,2017-03-03,9 -Region,Yorkshire and The Humber,1110,2017-03-10,10 -Region,Yorkshire and The Humber,1121,2017-03-17,11 -Region,Yorkshire and The Humber,1065,2017-03-24,12 -Region,Yorkshire and The Humber,1045,2017-03-31,13 -Region,Yorkshire and The Humber,929,2017-04-07,14 -Region,Yorkshire and The Humber,795,2017-04-14,15 -Region,Yorkshire and The Humber,1010,2017-04-21,16 -Region,Yorkshire and The Humber,1053,2017-04-28,17 -Region,Yorkshire and The Humber,872,2017-05-05,18 -Region,Yorkshire and The Humber,1053,2017-05-12,19 -Region,Yorkshire and The Humber,1030,2017-05-19,20 -Region,Yorkshire and The Humber,936,2017-05-26,21 -Region,Yorkshire and The Humber,818,2017-06-02,22 -Region,Yorkshire and The Humber,950,2017-06-09,23 -Region,Yorkshire and The Humber,918,2017-06-16,24 -Region,Yorkshire and The Humber,901,2017-06-23,25 -Region,Yorkshire and The Humber,914,2017-06-30,26 -Region,Yorkshire and The Humber,904,2017-07-07,27 -Region,Yorkshire and The Humber,953,2017-07-14,28 -Region,Yorkshire and The Humber,856,2017-07-21,29 -Region,Yorkshire and The Humber,881,2017-07-28,30 -Region,Yorkshire and The Humber,891,2017-08-04,31 -Region,Yorkshire and The Humber,882,2017-08-11,32 -Region,Yorkshire and The Humber,849,2017-08-18,33 -Region,Yorkshire and The Humber,848,2017-08-25,34 -Region,Yorkshire and The Humber,836,2017-09-01,35 -Region,Yorkshire and The Humber,921,2017-09-08,36 -Region,Yorkshire and The Humber,877,2017-09-15,37 -Region,Yorkshire and The Humber,919,2017-09-22,38 -Region,Yorkshire and The Humber,957,2017-09-29,39 -Region,Yorkshire and The Humber,946,2017-10-06,40 -Region,Yorkshire and The Humber,1011,2017-10-13,41 -Region,Yorkshire and The Humber,1019,2017-10-20,42 -Region,Yorkshire and The Humber,903,2017-10-27,43 -Region,Yorkshire and The Humber,1006,2017-11-03,44 -Region,Yorkshire and The Humber,1042,2017-11-10,45 -Region,Yorkshire and The Humber,1027,2017-11-17,46 -Region,Yorkshire and The Humber,1089,2017-11-24,47 -Region,Yorkshire and The Humber,1045,2017-12-01,48 -Region,Yorkshire and The Humber,1013,2017-12-08,49 -Region,Yorkshire and The Humber,1048,2017-12-15,50 -Region,Yorkshire and The Humber,1181,2017-12-22,51 -Region,Yorkshire and The Humber,840,2017-12-29,52 -Region,East Midlands,1016,2017-01-06,1 -Region,East Midlands,1170,2017-01-13,2 -Region,East Midlands,1190,2017-01-20,3 -Region,East Midlands,1116,2017-01-27,4 -Region,East Midlands,1045,2017-02-03,5 -Region,East Midlands,1036,2017-02-10,6 -Region,East Midlands,964,2017-02-17,7 -Region,East Midlands,954,2017-02-24,8 -Region,East Midlands,963,2017-03-03,9 -Region,East Midlands,1038,2017-03-10,10 -Region,East Midlands,963,2017-03-17,11 -Region,East Midlands,947,2017-03-24,12 -Region,East Midlands,870,2017-03-31,13 -Region,East Midlands,835,2017-04-07,14 -Region,East Midlands,708,2017-04-14,15 -Region,East Midlands,812,2017-04-21,16 -Region,East Midlands,882,2017-04-28,17 -Region,East Midlands,803,2017-05-05,18 -Region,East Midlands,988,2017-05-12,19 -Region,East Midlands,817,2017-05-19,20 -Region,East Midlands,802,2017-05-26,21 -Region,East Midlands,726,2017-06-02,22 -Region,East Midlands,841,2017-06-09,23 -Region,East Midlands,819,2017-06-16,24 -Region,East Midlands,841,2017-06-23,25 -Region,East Midlands,804,2017-06-30,26 -Region,East Midlands,802,2017-07-07,27 -Region,East Midlands,862,2017-07-14,28 -Region,East Midlands,809,2017-07-21,29 -Region,East Midlands,738,2017-07-28,30 -Region,East Midlands,784,2017-08-04,31 -Region,East Midlands,772,2017-08-11,32 -Region,East Midlands,747,2017-08-18,33 -Region,East Midlands,783,2017-08-25,34 -Region,East Midlands,667,2017-09-01,35 -Region,East Midlands,808,2017-09-08,36 -Region,East Midlands,758,2017-09-15,37 -Region,East Midlands,814,2017-09-22,38 -Region,East Midlands,782,2017-09-29,39 -Region,East Midlands,818,2017-10-06,40 -Region,East Midlands,827,2017-10-13,41 -Region,East Midlands,806,2017-10-20,42 -Region,East Midlands,743,2017-10-27,43 -Region,East Midlands,850,2017-11-03,44 -Region,East Midlands,931,2017-11-10,45 -Region,East Midlands,898,2017-11-17,46 -Region,East Midlands,862,2017-11-24,47 -Region,East Midlands,878,2017-12-01,48 -Region,East Midlands,970,2017-12-08,49 -Region,East Midlands,971,2017-12-15,50 -Region,East Midlands,1039,2017-12-22,51 -Region,East Midlands,685,2017-12-29,52 -Region,West Midlands,1243,2017-01-06,1 -Region,West Midlands,1439,2017-01-13,2 -Region,West Midlands,1414,2017-01-20,3 -Region,West Midlands,1362,2017-01-27,4 -Region,West Midlands,1293,2017-02-03,5 -Region,West Midlands,1234,2017-02-10,6 -Region,West Midlands,1243,2017-02-17,7 -Region,West Midlands,1216,2017-02-24,8 -Region,West Midlands,1184,2017-03-03,9 -Region,West Midlands,1163,2017-03-10,10 -Region,West Midlands,1140,2017-03-17,11 -Region,West Midlands,1034,2017-03-24,12 -Region,West Midlands,1024,2017-03-31,13 -Region,West Midlands,1048,2017-04-07,14 -Region,West Midlands,868,2017-04-14,15 -Region,West Midlands,978,2017-04-21,16 -Region,West Midlands,1125,2017-04-28,17 -Region,West Midlands,902,2017-05-05,18 -Region,West Midlands,1059,2017-05-12,19 -Region,West Midlands,1079,2017-05-19,20 -Region,West Midlands,1088,2017-05-26,21 -Region,West Midlands,849,2017-06-02,22 -Region,West Midlands,1060,2017-06-09,23 -Region,West Midlands,1016,2017-06-16,24 -Region,West Midlands,991,2017-06-23,25 -Region,West Midlands,996,2017-06-30,26 -Region,West Midlands,985,2017-07-07,27 -Region,West Midlands,973,2017-07-14,28 -Region,West Midlands,947,2017-07-21,29 -Region,West Midlands,941,2017-07-28,30 -Region,West Midlands,911,2017-08-04,31 -Region,West Midlands,943,2017-08-11,32 -Region,West Midlands,936,2017-08-18,33 -Region,West Midlands,966,2017-08-25,34 -Region,West Midlands,780,2017-09-01,35 -Region,West Midlands,1017,2017-09-08,36 -Region,West Midlands,1001,2017-09-15,37 -Region,West Midlands,978,2017-09-22,38 -Region,West Midlands,990,2017-09-29,39 -Region,West Midlands,1003,2017-10-06,40 -Region,West Midlands,1001,2017-10-13,41 -Region,West Midlands,997,2017-10-20,42 -Region,West Midlands,1058,2017-10-27,43 -Region,West Midlands,1014,2017-11-03,44 -Region,West Midlands,1117,2017-11-10,45 -Region,West Midlands,1096,2017-11-17,46 -Region,West Midlands,1080,2017-11-24,47 -Region,West Midlands,1065,2017-12-01,48 -Region,West Midlands,1066,2017-12-08,49 -Region,West Midlands,1128,2017-12-15,50 -Region,West Midlands,1318,2017-12-22,51 -Region,West Midlands,844,2017-12-29,52 -Region,East,1187,2017-01-06,1 -Region,East,1450,2017-01-13,2 -Region,East,1484,2017-01-20,3 -Region,East,1488,2017-01-27,4 -Region,East,1384,2017-02-03,5 -Region,East,1411,2017-02-10,6 -Region,East,1253,2017-02-17,7 -Region,East,1327,2017-02-24,8 -Region,East,1328,2017-03-03,9 -Region,East,1230,2017-03-10,10 -Region,East,1150,2017-03-17,11 -Region,East,1134,2017-03-24,12 -Region,East,1109,2017-03-31,13 -Region,East,1056,2017-04-07,14 -Region,East,918,2017-04-14,15 -Region,East,996,2017-04-21,16 -Region,East,1137,2017-04-28,17 -Region,East,956,2017-05-05,18 -Region,East,1153,2017-05-12,19 -Region,East,1124,2017-05-19,20 -Region,East,1118,2017-05-26,21 -Region,East,813,2017-06-02,22 -Region,East,1016,2017-06-09,23 -Region,East,990,2017-06-16,24 -Region,East,991,2017-06-23,25 -Region,East,1028,2017-06-30,26 -Region,East,1010,2017-07-07,27 -Region,East,1005,2017-07-14,28 -Region,East,970,2017-07-21,29 -Region,East,949,2017-07-28,30 -Region,East,955,2017-08-04,31 -Region,East,1005,2017-08-11,32 -Region,East,1018,2017-08-18,33 -Region,East,1002,2017-08-25,34 -Region,East,853,2017-09-01,35 -Region,East,1066,2017-09-08,36 -Region,East,990,2017-09-15,37 -Region,East,1096,2017-09-22,38 -Region,East,1071,2017-09-29,39 -Region,East,1057,2017-10-06,40 -Region,East,1085,2017-10-13,41 -Region,East,1056,2017-10-20,42 -Region,East,1037,2017-10-27,43 -Region,East,1129,2017-11-03,44 -Region,East,1132,2017-11-10,45 -Region,East,1091,2017-11-17,46 -Region,East,1148,2017-11-24,47 -Region,East,1168,2017-12-01,48 -Region,East,1139,2017-12-08,49 -Region,East,1226,2017-12-15,50 -Region,East,1322,2017-12-22,51 -Region,East,878,2017-12-29,52 -Region,London,1173,2017-01-06,1 -Region,London,1296,2017-01-13,2 -Region,London,1276,2017-01-20,3 -Region,London,1198,2017-01-27,4 -Region,London,1210,2017-02-03,5 -Region,London,1161,2017-02-10,6 -Region,London,1095,2017-02-17,7 -Region,London,1114,2017-02-24,8 -Region,London,930,2017-03-03,9 -Region,London,969,2017-03-10,10 -Region,London,946,2017-03-17,11 -Region,London,930,2017-03-24,12 -Region,London,888,2017-03-31,13 -Region,London,905,2017-04-07,14 -Region,London,801,2017-04-14,15 -Region,London,896,2017-04-21,16 -Region,London,1053,2017-04-28,17 -Region,London,804,2017-05-05,18 -Region,London,970,2017-05-12,19 -Region,London,914,2017-05-19,20 -Region,London,953,2017-05-26,21 -Region,London,787,2017-06-02,22 -Region,London,876,2017-06-09,23 -Region,London,829,2017-06-16,24 -Region,London,902,2017-06-23,25 -Region,London,903,2017-06-30,26 -Region,London,820,2017-07-07,27 -Region,London,843,2017-07-14,28 -Region,London,867,2017-07-21,29 -Region,London,783,2017-07-28,30 -Region,London,792,2017-08-04,31 -Region,London,858,2017-08-11,32 -Region,London,929,2017-08-18,33 -Region,London,907,2017-08-25,34 -Region,London,766,2017-09-01,35 -Region,London,866,2017-09-08,36 -Region,London,871,2017-09-15,37 -Region,London,900,2017-09-22,38 -Region,London,882,2017-09-29,39 -Region,London,923,2017-10-06,40 -Region,London,928,2017-10-13,41 -Region,London,934,2017-10-20,42 -Region,London,931,2017-10-27,43 -Region,London,897,2017-11-03,44 -Region,London,931,2017-11-10,45 -Region,London,949,2017-11-17,46 -Region,London,1038,2017-11-24,47 -Region,London,972,2017-12-01,48 -Region,London,1008,2017-12-08,49 -Region,London,1042,2017-12-15,50 -Region,London,1153,2017-12-22,51 -Region,London,814,2017-12-29,52 -Region,South East,1899,2017-01-06,1 -Region,South East,2161,2017-01-13,2 -Region,South East,2195,2017-01-20,3 -Region,South East,1999,2017-01-27,4 -Region,South East,1920,2017-02-03,5 -Region,South East,1916,2017-02-10,6 -Region,South East,1847,2017-02-17,7 -Region,South East,1834,2017-02-24,8 -Region,South East,1673,2017-03-03,9 -Region,South East,1738,2017-03-10,10 -Region,South East,1593,2017-03-17,11 -Region,South East,1557,2017-03-24,12 -Region,South East,1520,2017-03-31,13 -Region,South East,1522,2017-04-07,14 -Region,South East,1316,2017-04-14,15 -Region,South East,1409,2017-04-21,16 -Region,South East,1678,2017-04-28,17 -Region,South East,1356,2017-05-05,18 -Region,South East,1685,2017-05-12,19 -Region,South East,1639,2017-05-19,20 -Region,South East,1526,2017-05-26,21 -Region,South East,1217,2017-06-02,22 -Region,South East,1527,2017-06-09,23 -Region,South East,1380,2017-06-16,24 -Region,South East,1473,2017-06-23,25 -Region,South East,1456,2017-06-30,26 -Region,South East,1395,2017-07-07,27 -Region,South East,1393,2017-07-14,28 -Region,South East,1389,2017-07-21,29 -Region,South East,1381,2017-07-28,30 -Region,South East,1345,2017-08-04,31 -Region,South East,1346,2017-08-11,32 -Region,South East,1481,2017-08-18,33 -Region,South East,1502,2017-08-25,34 -Region,South East,1205,2017-09-01,35 -Region,South East,1445,2017-09-08,36 -Region,South East,1493,2017-09-15,37 -Region,South East,1422,2017-09-22,38 -Region,South East,1468,2017-09-29,39 -Region,South East,1521,2017-10-06,40 -Region,South East,1497,2017-10-13,41 -Region,South East,1541,2017-10-20,42 -Region,South East,1539,2017-10-27,43 -Region,South East,1473,2017-11-03,44 -Region,South East,1572,2017-11-10,45 -Region,South East,1539,2017-11-17,46 -Region,South East,1623,2017-11-24,47 -Region,South East,1608,2017-12-01,48 -Region,South East,1649,2017-12-08,49 -Region,South East,1765,2017-12-15,50 -Region,South East,1961,2017-12-22,51 -Region,South East,1305,2017-12-29,52 -Region,South West,1228,2017-01-06,1 -Region,South West,1419,2017-01-13,2 -Region,South West,1346,2017-01-20,3 -Region,South West,1278,2017-01-27,4 -Region,South West,1359,2017-02-03,5 -Region,South West,1339,2017-02-10,6 -Region,South West,1217,2017-02-17,7 -Region,South West,1312,2017-02-24,8 -Region,South West,1221,2017-03-03,9 -Region,South West,1144,2017-03-10,10 -Region,South West,1083,2017-03-17,11 -Region,South West,1107,2017-03-24,12 -Region,South West,1064,2017-03-31,13 -Region,South West,1075,2017-04-07,14 -Region,South West,863,2017-04-14,15 -Region,South West,984,2017-04-21,16 -Region,South West,1159,2017-04-28,17 -Region,South West,997,2017-05-05,18 -Region,South West,1155,2017-05-12,19 -Region,South West,1161,2017-05-19,20 -Region,South West,1118,2017-05-26,21 -Region,South West,897,2017-06-02,22 -Region,South West,1066,2017-06-09,23 -Region,South West,1015,2017-06-16,24 -Region,South West,1058,2017-06-23,25 -Region,South West,1038,2017-06-30,26 -Region,South West,996,2017-07-07,27 -Region,South West,1031,2017-07-14,28 -Region,South West,979,2017-07-21,29 -Region,South West,963,2017-07-28,30 -Region,South West,946,2017-08-04,31 -Region,South West,982,2017-08-11,32 -Region,South West,998,2017-08-18,33 -Region,South West,1001,2017-08-25,34 -Region,South West,908,2017-09-01,35 -Region,South West,993,2017-09-08,36 -Region,South West,1006,2017-09-15,37 -Region,South West,1074,2017-09-22,38 -Region,South West,1109,2017-09-29,39 -Region,South West,1063,2017-10-06,40 -Region,South West,1068,2017-10-13,41 -Region,South West,1098,2017-10-20,42 -Region,South West,1020,2017-10-27,43 -Region,South West,1105,2017-11-03,44 -Region,South West,1117,2017-11-10,45 -Region,South West,1103,2017-11-17,46 -Region,South West,1151,2017-11-24,47 -Region,South West,1123,2017-12-01,48 -Region,South West,1140,2017-12-08,49 -Region,South West,1204,2017-12-15,50 -Region,South West,1332,2017-12-22,51 -Region,South West,863,2017-12-29,52 -Region,Wales,744,2017-01-06,1 -Region,Wales,825,2017-01-13,2 -Region,Wales,835,2017-01-20,3 -Region,Wales,881,2017-01-27,4 -Region,Wales,749,2017-02-03,5 -Region,Wales,723,2017-02-10,6 -Region,Wales,690,2017-02-17,7 -Region,Wales,701,2017-02-24,8 -Region,Wales,715,2017-03-03,9 -Region,Wales,634,2017-03-10,10 -Region,Wales,653,2017-03-17,11 -Region,Wales,635,2017-03-24,12 -Region,Wales,658,2017-03-31,13 -Region,Wales,642,2017-04-07,14 -Region,Wales,577,2017-04-14,15 -Region,Wales,654,2017-04-21,16 -Region,Wales,727,2017-04-28,17 -Region,Wales,600,2017-05-05,18 -Region,Wales,687,2017-05-12,19 -Region,Wales,615,2017-05-19,20 -Region,Wales,602,2017-05-26,21 -Region,Wales,586,2017-06-02,22 -Region,Wales,584,2017-06-09,23 -Region,Wales,599,2017-06-16,24 -Region,Wales,608,2017-06-23,25 -Region,Wales,546,2017-06-30,26 -Region,Wales,556,2017-07-07,27 -Region,Wales,564,2017-07-14,28 -Region,Wales,551,2017-07-21,29 -Region,Wales,586,2017-07-28,30 -Region,Wales,590,2017-08-04,31 -Region,Wales,572,2017-08-11,32 -Region,Wales,592,2017-08-18,33 -Region,Wales,570,2017-08-25,34 -Region,Wales,555,2017-09-01,35 -Region,Wales,542,2017-09-08,36 -Region,Wales,609,2017-09-15,37 -Region,Wales,585,2017-09-22,38 -Region,Wales,593,2017-09-29,39 -Region,Wales,631,2017-10-06,40 -Region,Wales,640,2017-10-13,41 -Region,Wales,650,2017-10-20,42 -Region,Wales,608,2017-10-27,43 -Region,Wales,595,2017-11-03,44 -Region,Wales,598,2017-11-10,45 -Region,Wales,666,2017-11-17,46 -Region,Wales,639,2017-11-24,47 -Region,Wales,636,2017-12-01,48 -Region,Wales,630,2017-12-08,49 -Region,Wales,708,2017-12-15,50 -Region,Wales,762,2017-12-22,51 -Region,Wales,541,2017-12-29,52 -Total deaths,all ages,12723,2018-01-05,1 -Total deaths,all ages,15050,2018-01-12,2 -Total deaths,all ages,14256,2018-01-19,3 -Total deaths,all ages,13935,2018-01-26,4 -Total deaths,all ages,13285,2018-02-02,5 -Total deaths,all ages,12495,2018-02-09,6 -Total deaths,all ages,12246,2018-02-16,7 -Total deaths,all ages,12142,2018-02-23,8 -Total deaths,all ages,10854,2018-03-02,9 -Total deaths,all ages,12997,2018-03-09,10 -Total deaths,all ages,12788,2018-03-16,11 -Total deaths,all ages,11913,2018-03-23,12 -Total deaths,all ages,9941,2018-03-30,13 -Total deaths,all ages,10794,2018-04-06,14 -Total deaths,all ages,12301,2018-04-13,15 -Total deaths,all ages,11223,2018-04-20,16 -Total deaths,all ages,10306,2018-04-27,17 -Total deaths,all ages,10153,2018-05-04,18 -Total deaths,all ages,8624,2018-05-11,19 -Total deaths,all ages,10141,2018-05-18,20 -Total deaths,all ages,9636,2018-05-25,21 -Total deaths,all ages,8147,2018-06-01,22 -Total deaths,all ages,9950,2018-06-08,23 -Total deaths,all ages,9343,2018-06-15,24 -Total deaths,all ages,9256,2018-06-22,25 -Total deaths,all ages,9212,2018-06-29,26 -Total deaths,all ages,9258,2018-07-06,27 -Total deaths,all ages,9293,2018-07-13,28 -Total deaths,all ages,9127,2018-07-20,29 -Total deaths,all ages,9141,2018-07-27,30 -Total deaths,all ages,9161,2018-08-03,31 -Total deaths,all ages,9319,2018-08-10,32 -Total deaths,all ages,8830,2018-08-17,33 -Total deaths,all ages,8978,2018-08-24,34 -Total deaths,all ages,7865,2018-08-31,35 -Total deaths,all ages,9445,2018-09-07,36 -Total deaths,all ages,9191,2018-09-14,37 -Total deaths,all ages,9305,2018-09-21,38 -Total deaths,all ages,9150,2018-09-28,39 -Total deaths,all ages,9503,2018-10-05,40 -Total deaths,all ages,9649,2018-10-12,41 -Total deaths,all ages,9864,2018-10-19,42 -Total deaths,all ages,9603,2018-10-26,43 -Total deaths,all ages,9529,2018-11-02,44 -Total deaths,all ages,10151,2018-11-09,45 -Total deaths,all ages,10193,2018-11-16,46 -Total deaths,all ages,9957,2018-11-23,47 -Total deaths,all ages,10033,2018-11-30,48 -Total deaths,all ages,10287,2018-12-07,49 -Total deaths,all ages,10550,2018-12-14,50 -Total deaths,all ages,11116,2018-12-21,51 -Total deaths,all ages,7131,2018-12-28,52 -Total deaths,average of same week over 5 years,12079,2018-01-05,1 -Total deaths,average of same week over 5 years,13167,2018-01-12,2 -Total deaths,average of same week over 5 years,12418,2018-01-19,3 -Total deaths,average of same week over 5 years,11954,2018-01-26,4 -Total deaths,average of same week over 5 years,11605,2018-02-02,5 -Total deaths,average of same week over 5 years,11333,2018-02-09,6 -Total deaths,average of same week over 5 years,11059,2018-02-16,7 -Total deaths,average of same week over 5 years,11125,2018-02-23,8 -Total deaths,average of same week over 5 years,11037,2018-03-02,9 -Total deaths,average of same week over 5 years,10935,2018-03-09,10 -Total deaths,average of same week over 5 years,10774,2018-03-16,11 -Total deaths,average of same week over 5 years,10289,2018-03-23,12 -Total deaths,average of same week over 5 years,9944,2018-03-30,13 -Total deaths,average of same week over 5 years,10286,2018-04-06,14 -Total deaths,average of same week over 5 years,10328,2018-04-13,15 -Total deaths,average of same week over 5 years,10395,2018-04-20,16 -Total deaths,average of same week over 5 years,10381,2018-04-27,17 -Total deaths,average of same week over 5 years,9807,2018-05-04,18 -Total deaths,average of same week over 5 years,9526,2018-05-11,19 -Total deaths,average of same week over 5 years,9978,2018-05-18,20 -Total deaths,average of same week over 5 years,9727,2018-05-25,21 -Total deaths,average of same week over 5 years,8163,2018-06-01,22 -Total deaths,average of same week over 5 years,9767,2018-06-08,23 -Total deaths,average of same week over 5 years,9313,2018-06-15,24 -Total deaths,average of same week over 5 years,9232,2018-06-22,25 -Total deaths,average of same week over 5 years,9052,2018-06-29,26 -Total deaths,average of same week over 5 years,9030,2018-07-06,27 -Total deaths,average of same week over 5 years,9018,2018-07-13,28 -Total deaths,average of same week over 5 years,9032,2018-07-20,29 -Total deaths,average of same week over 5 years,8890,2018-07-27,30 -Total deaths,average of same week over 5 years,8763,2018-08-03,31 -Total deaths,average of same week over 5 years,8818,2018-08-10,32 -Total deaths,average of same week over 5 years,8905,2018-08-17,33 -Total deaths,average of same week over 5 years,9033,2018-08-24,34 -Total deaths,average of same week over 5 years,8162,2018-08-31,35 -Total deaths,average of same week over 5 years,9069,2018-09-07,36 -Total deaths,average of same week over 5 years,9091,2018-09-14,37 -Total deaths,average of same week over 5 years,9063,2018-09-21,38 -Total deaths,average of same week over 5 years,9285,2018-09-28,39 -Total deaths,average of same week over 5 years,9388,2018-10-05,40 -Total deaths,average of same week over 5 years,9511,2018-10-12,41 -Total deaths,average of same week over 5 years,9602,2018-10-19,42 -Total deaths,average of same week over 5 years,9601,2018-10-26,43 -Total deaths,average of same week over 5 years,9692,2018-11-02,44 -Total deaths,average of same week over 5 years,10003,2018-11-09,45 -Total deaths,average of same week over 5 years,10104,2018-11-16,46 -Total deaths,average of same week over 5 years,10050,2018-11-23,47 -Total deaths,average of same week over 5 years,10087,2018-11-30,48 -Total deaths,average of same week over 5 years,10509,2018-12-07,49 -Total deaths,average of same week over 5 years,10519,2018-12-14,50 -Total deaths,average of same week over 5 years,11343,2018-12-21,51 -Total deaths,average of same week over 5 years,7909,2018-12-28,52 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),2361,2018-01-05,1 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),3075,2018-01-12,2 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),2829,2018-01-19,3 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),2672,2018-01-26,4 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),2479,2018-02-02,5 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),2197,2018-02-09,6 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),2081,2018-02-16,7 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),2128,2018-02-23,8 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1900,2018-03-02,9 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),2302,2018-03-09,10 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),2271,2018-03-16,11 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1946,2018-03-23,12 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1657,2018-03-30,13 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1761,2018-04-06,14 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1971,2018-04-13,15 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1641,2018-04-20,16 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1426,2018-04-27,17 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1369,2018-05-04,18 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1055,2018-05-11,19 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1248,2018-05-18,20 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1179,2018-05-25,21 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1065,2018-06-01,22 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1270,2018-06-08,23 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1150,2018-06-15,24 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1103,2018-06-22,25 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1055,2018-06-29,26 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1086,2018-07-06,27 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1123,2018-07-13,28 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1107,2018-07-20,29 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1019,2018-07-27,30 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1005,2018-08-03,31 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1019,2018-08-10,32 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),941,2018-08-17,33 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),921,2018-08-24,34 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),827,2018-08-31,35 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1098,2018-09-07,36 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),999,2018-09-14,37 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1034,2018-09-21,38 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),987,2018-09-28,39 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1050,2018-10-05,40 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1124,2018-10-12,41 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1141,2018-10-19,42 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1154,2018-10-26,43 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1090,2018-11-02,44 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1295,2018-11-09,45 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1268,2018-11-16,46 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1240,2018-11-23,47 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1224,2018-11-30,48 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1341,2018-12-07,49 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1386,2018-12-14,50 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1509,2018-12-21,51 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1053,2018-12-28,52 -Persons,Under 1 year,52,2018-01-05,1 -Persons,Under 1 year,73,2018-01-12,2 -Persons,Under 1 year,59,2018-01-19,3 -Persons,Under 1 year,50,2018-01-26,4 -Persons,Under 1 year,41,2018-02-02,5 -Persons,Under 1 year,45,2018-02-09,6 -Persons,Under 1 year,48,2018-02-16,7 -Persons,Under 1 year,26,2018-02-23,8 -Persons,Under 1 year,45,2018-03-02,9 -Persons,Under 1 year,47,2018-03-09,10 -Persons,Under 1 year,47,2018-03-16,11 -Persons,Under 1 year,46,2018-03-23,12 -Persons,Under 1 year,43,2018-03-30,13 -Persons,Under 1 year,46,2018-04-06,14 -Persons,Under 1 year,36,2018-04-13,15 -Persons,Under 1 year,54,2018-04-20,16 -Persons,Under 1 year,57,2018-04-27,17 -Persons,Under 1 year,51,2018-05-04,18 -Persons,Under 1 year,48,2018-05-11,19 -Persons,Under 1 year,52,2018-05-18,20 -Persons,Under 1 year,60,2018-05-25,21 -Persons,Under 1 year,46,2018-06-01,22 -Persons,Under 1 year,46,2018-06-08,23 -Persons,Under 1 year,60,2018-06-15,24 -Persons,Under 1 year,55,2018-06-22,25 -Persons,Under 1 year,43,2018-06-29,26 -Persons,Under 1 year,50,2018-07-06,27 -Persons,Under 1 year,48,2018-07-13,28 -Persons,Under 1 year,45,2018-07-20,29 -Persons,Under 1 year,59,2018-07-27,30 -Persons,Under 1 year,62,2018-08-03,31 -Persons,Under 1 year,59,2018-08-10,32 -Persons,Under 1 year,64,2018-08-17,33 -Persons,Under 1 year,44,2018-08-24,34 -Persons,Under 1 year,51,2018-08-31,35 -Persons,Under 1 year,45,2018-09-07,36 -Persons,Under 1 year,55,2018-09-14,37 -Persons,Under 1 year,69,2018-09-21,38 -Persons,Under 1 year,50,2018-09-28,39 -Persons,Under 1 year,40,2018-10-05,40 -Persons,Under 1 year,47,2018-10-12,41 -Persons,Under 1 year,43,2018-10-19,42 -Persons,Under 1 year,65,2018-10-26,43 -Persons,Under 1 year,46,2018-11-02,44 -Persons,Under 1 year,44,2018-11-09,45 -Persons,Under 1 year,47,2018-11-16,46 -Persons,Under 1 year,62,2018-11-23,47 -Persons,Under 1 year,58,2018-11-30,48 -Persons,Under 1 year,45,2018-12-07,49 -Persons,Under 1 year,51,2018-12-14,50 -Persons,Under 1 year,41,2018-12-21,51 -Persons,Under 1 year,22,2018-12-28,52 -Persons,01-14,18,2018-01-05,1 -Persons,01-14,17,2018-01-12,2 -Persons,01-14,22,2018-01-19,3 -Persons,01-14,25,2018-01-26,4 -Persons,01-14,14,2018-02-02,5 -Persons,01-14,23,2018-02-09,6 -Persons,01-14,17,2018-02-16,7 -Persons,01-14,13,2018-02-23,8 -Persons,01-14,11,2018-03-02,9 -Persons,01-14,27,2018-03-09,10 -Persons,01-14,17,2018-03-16,11 -Persons,01-14,15,2018-03-23,12 -Persons,01-14,20,2018-03-30,13 -Persons,01-14,22,2018-04-06,14 -Persons,01-14,25,2018-04-13,15 -Persons,01-14,21,2018-04-20,16 -Persons,01-14,12,2018-04-27,17 -Persons,01-14,21,2018-05-04,18 -Persons,01-14,21,2018-05-11,19 -Persons,01-14,24,2018-05-18,20 -Persons,01-14,13,2018-05-25,21 -Persons,01-14,18,2018-06-01,22 -Persons,01-14,19,2018-06-08,23 -Persons,01-14,17,2018-06-15,24 -Persons,01-14,21,2018-06-22,25 -Persons,01-14,22,2018-06-29,26 -Persons,01-14,23,2018-07-06,27 -Persons,01-14,21,2018-07-13,28 -Persons,01-14,15,2018-07-20,29 -Persons,01-14,13,2018-07-27,30 -Persons,01-14,18,2018-08-03,31 -Persons,01-14,18,2018-08-10,32 -Persons,01-14,11,2018-08-17,33 -Persons,01-14,22,2018-08-24,34 -Persons,01-14,11,2018-08-31,35 -Persons,01-14,20,2018-09-07,36 -Persons,01-14,18,2018-09-14,37 -Persons,01-14,18,2018-09-21,38 -Persons,01-14,10,2018-09-28,39 -Persons,01-14,17,2018-10-05,40 -Persons,01-14,20,2018-10-12,41 -Persons,01-14,18,2018-10-19,42 -Persons,01-14,24,2018-10-26,43 -Persons,01-14,24,2018-11-02,44 -Persons,01-14,12,2018-11-09,45 -Persons,01-14,29,2018-11-16,46 -Persons,01-14,22,2018-11-23,47 -Persons,01-14,20,2018-11-30,48 -Persons,01-14,15,2018-12-07,49 -Persons,01-14,13,2018-12-14,50 -Persons,01-14,23,2018-12-21,51 -Persons,01-14,11,2018-12-28,52 -Persons,15-44,208,2018-01-05,1 -Persons,15-44,302,2018-01-12,2 -Persons,15-44,286,2018-01-19,3 -Persons,15-44,298,2018-01-26,4 -Persons,15-44,339,2018-02-02,5 -Persons,15-44,293,2018-02-09,6 -Persons,15-44,318,2018-02-16,7 -Persons,15-44,294,2018-02-23,8 -Persons,15-44,254,2018-03-02,9 -Persons,15-44,287,2018-03-09,10 -Persons,15-44,329,2018-03-16,11 -Persons,15-44,278,2018-03-23,12 -Persons,15-44,261,2018-03-30,13 -Persons,15-44,260,2018-04-06,14 -Persons,15-44,337,2018-04-13,15 -Persons,15-44,301,2018-04-20,16 -Persons,15-44,340,2018-04-27,17 -Persons,15-44,308,2018-05-04,18 -Persons,15-44,247,2018-05-11,19 -Persons,15-44,300,2018-05-18,20 -Persons,15-44,294,2018-05-25,21 -Persons,15-44,250,2018-06-01,22 -Persons,15-44,298,2018-06-08,23 -Persons,15-44,286,2018-06-15,24 -Persons,15-44,308,2018-06-22,25 -Persons,15-44,306,2018-06-29,26 -Persons,15-44,286,2018-07-06,27 -Persons,15-44,304,2018-07-13,28 -Persons,15-44,304,2018-07-20,29 -Persons,15-44,291,2018-07-27,30 -Persons,15-44,286,2018-08-03,31 -Persons,15-44,328,2018-08-10,32 -Persons,15-44,253,2018-08-17,33 -Persons,15-44,250,2018-08-24,34 -Persons,15-44,233,2018-08-31,35 -Persons,15-44,323,2018-09-07,36 -Persons,15-44,275,2018-09-14,37 -Persons,15-44,292,2018-09-21,38 -Persons,15-44,270,2018-09-28,39 -Persons,15-44,287,2018-10-05,40 -Persons,15-44,328,2018-10-12,41 -Persons,15-44,301,2018-10-19,42 -Persons,15-44,309,2018-10-26,43 -Persons,15-44,289,2018-11-02,44 -Persons,15-44,308,2018-11-09,45 -Persons,15-44,292,2018-11-16,46 -Persons,15-44,312,2018-11-23,47 -Persons,15-44,317,2018-11-30,48 -Persons,15-44,326,2018-12-07,49 -Persons,15-44,295,2018-12-14,50 -Persons,15-44,333,2018-12-21,51 -Persons,15-44,166,2018-12-28,52 -Persons,45-64,1290,2018-01-05,1 -Persons,45-64,1561,2018-01-12,2 -Persons,45-64,1507,2018-01-19,3 -Persons,45-64,1459,2018-01-26,4 -Persons,45-64,1404,2018-02-02,5 -Persons,45-64,1347,2018-02-09,6 -Persons,45-64,1377,2018-02-16,7 -Persons,45-64,1378,2018-02-23,8 -Persons,45-64,1229,2018-03-02,9 -Persons,45-64,1362,2018-03-09,10 -Persons,45-64,1316,2018-03-16,11 -Persons,45-64,1349,2018-03-23,12 -Persons,45-64,1065,2018-03-30,13 -Persons,45-64,1229,2018-04-06,14 -Persons,45-64,1382,2018-04-13,15 -Persons,45-64,1386,2018-04-20,16 -Persons,45-64,1213,2018-04-27,17 -Persons,45-64,1363,2018-05-04,18 -Persons,45-64,1115,2018-05-11,19 -Persons,45-64,1330,2018-05-18,20 -Persons,45-64,1258,2018-05-25,21 -Persons,45-64,998,2018-06-01,22 -Persons,45-64,1195,2018-06-08,23 -Persons,45-64,1199,2018-06-15,24 -Persons,45-64,1161,2018-06-22,25 -Persons,45-64,1184,2018-06-29,26 -Persons,45-64,1150,2018-07-06,27 -Persons,45-64,1140,2018-07-13,28 -Persons,45-64,1166,2018-07-20,29 -Persons,45-64,1193,2018-07-27,30 -Persons,45-64,1155,2018-08-03,31 -Persons,45-64,1175,2018-08-10,32 -Persons,45-64,1130,2018-08-17,33 -Persons,45-64,1083,2018-08-24,34 -Persons,45-64,1017,2018-08-31,35 -Persons,45-64,1196,2018-09-07,36 -Persons,45-64,1180,2018-09-14,37 -Persons,45-64,1171,2018-09-21,38 -Persons,45-64,1083,2018-09-28,39 -Persons,45-64,1200,2018-10-05,40 -Persons,45-64,1212,2018-10-12,41 -Persons,45-64,1209,2018-10-19,42 -Persons,45-64,1200,2018-10-26,43 -Persons,45-64,1151,2018-11-02,44 -Persons,45-64,1157,2018-11-09,45 -Persons,45-64,1238,2018-11-16,46 -Persons,45-64,1223,2018-11-23,47 -Persons,45-64,1246,2018-11-30,48 -Persons,45-64,1218,2018-12-07,49 -Persons,45-64,1265,2018-12-14,50 -Persons,45-64,1306,2018-12-21,51 -Persons,45-64,792,2018-12-28,52 -Persons,65-74,1976,2018-01-05,1 -Persons,65-74,2321,2018-01-12,2 -Persons,65-74,2191,2018-01-19,3 -Persons,65-74,2157,2018-01-26,4 -Persons,65-74,1988,2018-02-02,5 -Persons,65-74,2032,2018-02-09,6 -Persons,65-74,1953,2018-02-16,7 -Persons,65-74,1896,2018-02-23,8 -Persons,65-74,1728,2018-03-02,9 -Persons,65-74,2019,2018-03-09,10 -Persons,65-74,1989,2018-03-16,11 -Persons,65-74,1917,2018-03-23,12 -Persons,65-74,1586,2018-03-30,13 -Persons,65-74,1764,2018-04-06,14 -Persons,65-74,2053,2018-04-13,15 -Persons,65-74,1880,2018-04-20,16 -Persons,65-74,1707,2018-04-27,17 -Persons,65-74,1725,2018-05-04,18 -Persons,65-74,1437,2018-05-11,19 -Persons,65-74,1760,2018-05-18,20 -Persons,65-74,1659,2018-05-25,21 -Persons,65-74,1431,2018-06-01,22 -Persons,65-74,1700,2018-06-08,23 -Persons,65-74,1607,2018-06-15,24 -Persons,65-74,1613,2018-06-22,25 -Persons,65-74,1652,2018-06-29,26 -Persons,65-74,1548,2018-07-06,27 -Persons,65-74,1600,2018-07-13,28 -Persons,65-74,1577,2018-07-20,29 -Persons,65-74,1566,2018-07-27,30 -Persons,65-74,1536,2018-08-03,31 -Persons,65-74,1608,2018-08-10,32 -Persons,65-74,1558,2018-08-17,33 -Persons,65-74,1601,2018-08-24,34 -Persons,65-74,1442,2018-08-31,35 -Persons,65-74,1621,2018-09-07,36 -Persons,65-74,1600,2018-09-14,37 -Persons,65-74,1623,2018-09-21,38 -Persons,65-74,1607,2018-09-28,39 -Persons,65-74,1627,2018-10-05,40 -Persons,65-74,1607,2018-10-12,41 -Persons,65-74,1654,2018-10-19,42 -Persons,65-74,1657,2018-10-26,43 -Persons,65-74,1569,2018-11-02,44 -Persons,65-74,1666,2018-11-09,45 -Persons,65-74,1716,2018-11-16,46 -Persons,65-74,1700,2018-11-23,47 -Persons,65-74,1658,2018-11-30,48 -Persons,65-74,1696,2018-12-07,49 -Persons,65-74,1814,2018-12-14,50 -Persons,65-74,1867,2018-12-21,51 -Persons,65-74,1205,2018-12-28,52 -Persons,75-84,3612,2018-01-05,1 -Persons,75-84,4155,2018-01-12,2 -Persons,75-84,3866,2018-01-19,3 -Persons,75-84,3824,2018-01-26,4 -Persons,75-84,3661,2018-02-02,5 -Persons,75-84,3376,2018-02-09,6 -Persons,75-84,3492,2018-02-16,7 -Persons,75-84,3398,2018-02-23,8 -Persons,75-84,3028,2018-03-02,9 -Persons,75-84,3691,2018-03-09,10 -Persons,75-84,3594,2018-03-16,11 -Persons,75-84,3342,2018-03-23,12 -Persons,75-84,2884,2018-03-30,13 -Persons,75-84,3013,2018-04-06,14 -Persons,75-84,3442,2018-04-13,15 -Persons,75-84,3109,2018-04-20,16 -Persons,75-84,2906,2018-04-27,17 -Persons,75-84,2907,2018-05-04,18 -Persons,75-84,2384,2018-05-11,19 -Persons,75-84,2791,2018-05-18,20 -Persons,75-84,2687,2018-05-25,21 -Persons,75-84,2330,2018-06-01,22 -Persons,75-84,2881,2018-06-08,23 -Persons,75-84,2670,2018-06-15,24 -Persons,75-84,2550,2018-06-22,25 -Persons,75-84,2508,2018-06-29,26 -Persons,75-84,2611,2018-07-06,27 -Persons,75-84,2633,2018-07-13,28 -Persons,75-84,2484,2018-07-20,29 -Persons,75-84,2628,2018-07-27,30 -Persons,75-84,2620,2018-08-03,31 -Persons,75-84,2563,2018-08-10,32 -Persons,75-84,2489,2018-08-17,33 -Persons,75-84,2560,2018-08-24,34 -Persons,75-84,2150,2018-08-31,35 -Persons,75-84,2638,2018-09-07,36 -Persons,75-84,2576,2018-09-14,37 -Persons,75-84,2601,2018-09-21,38 -Persons,75-84,2629,2018-09-28,39 -Persons,75-84,2696,2018-10-05,40 -Persons,75-84,2741,2018-10-12,41 -Persons,75-84,2769,2018-10-19,42 -Persons,75-84,2642,2018-10-26,43 -Persons,75-84,2700,2018-11-02,44 -Persons,75-84,2949,2018-11-09,45 -Persons,75-84,2819,2018-11-16,46 -Persons,75-84,2766,2018-11-23,47 -Persons,75-84,2829,2018-11-30,48 -Persons,75-84,2965,2018-12-07,49 -Persons,75-84,2962,2018-12-14,50 -Persons,75-84,3136,2018-12-21,51 -Persons,75-84,2013,2018-12-28,52 -Persons,85+,5565,2018-01-05,1 -Persons,85+,6621,2018-01-12,2 -Persons,85+,6325,2018-01-19,3 -Persons,85+,6122,2018-01-26,4 -Persons,85+,5838,2018-02-02,5 -Persons,85+,5374,2018-02-09,6 -Persons,85+,5041,2018-02-16,7 -Persons,85+,5137,2018-02-23,8 -Persons,85+,4559,2018-03-02,9 -Persons,85+,5564,2018-03-09,10 -Persons,85+,5496,2018-03-16,11 -Persons,85+,4966,2018-03-23,12 -Persons,85+,4082,2018-03-30,13 -Persons,85+,4460,2018-04-06,14 -Persons,85+,5026,2018-04-13,15 -Persons,85+,4472,2018-04-20,16 -Persons,85+,4071,2018-04-27,17 -Persons,85+,3778,2018-05-04,18 -Persons,85+,3372,2018-05-11,19 -Persons,85+,3884,2018-05-18,20 -Persons,85+,3665,2018-05-25,21 -Persons,85+,3074,2018-06-01,22 -Persons,85+,3811,2018-06-08,23 -Persons,85+,3504,2018-06-15,24 -Persons,85+,3548,2018-06-22,25 -Persons,85+,3497,2018-06-29,26 -Persons,85+,3590,2018-07-06,27 -Persons,85+,3547,2018-07-13,28 -Persons,85+,3536,2018-07-20,29 -Persons,85+,3391,2018-07-27,30 -Persons,85+,3484,2018-08-03,31 -Persons,85+,3568,2018-08-10,32 -Persons,85+,3325,2018-08-17,33 -Persons,85+,3418,2018-08-24,34 -Persons,85+,2961,2018-08-31,35 -Persons,85+,3602,2018-09-07,36 -Persons,85+,3487,2018-09-14,37 -Persons,85+,3531,2018-09-21,38 -Persons,85+,3501,2018-09-28,39 -Persons,85+,3636,2018-10-05,40 -Persons,85+,3694,2018-10-12,41 -Persons,85+,3870,2018-10-19,42 -Persons,85+,3706,2018-10-26,43 -Persons,85+,3750,2018-11-02,44 -Persons,85+,4015,2018-11-09,45 -Persons,85+,4052,2018-11-16,46 -Persons,85+,3872,2018-11-23,47 -Persons,85+,3905,2018-11-30,48 -Persons,85+,4022,2018-12-07,49 -Persons,85+,4150,2018-12-14,50 -Persons,85+,4410,2018-12-21,51 -Persons,85+,2922,2018-12-28,52 -Males,Under 1 year,32,2018-01-05,1 -Males,Under 1 year,42,2018-01-12,2 -Males,Under 1 year,33,2018-01-19,3 -Males,Under 1 year,26,2018-01-26,4 -Males,Under 1 year,24,2018-02-02,5 -Males,Under 1 year,26,2018-02-09,6 -Males,Under 1 year,24,2018-02-16,7 -Males,Under 1 year,18,2018-02-23,8 -Males,Under 1 year,25,2018-03-02,9 -Males,Under 1 year,26,2018-03-09,10 -Males,Under 1 year,25,2018-03-16,11 -Males,Under 1 year,35,2018-03-23,12 -Males,Under 1 year,21,2018-03-30,13 -Males,Under 1 year,28,2018-04-06,14 -Males,Under 1 year,19,2018-04-13,15 -Males,Under 1 year,29,2018-04-20,16 -Males,Under 1 year,32,2018-04-27,17 -Males,Under 1 year,29,2018-05-04,18 -Males,Under 1 year,26,2018-05-11,19 -Males,Under 1 year,29,2018-05-18,20 -Males,Under 1 year,33,2018-05-25,21 -Males,Under 1 year,27,2018-06-01,22 -Males,Under 1 year,32,2018-06-08,23 -Males,Under 1 year,33,2018-06-15,24 -Males,Under 1 year,27,2018-06-22,25 -Males,Under 1 year,23,2018-06-29,26 -Males,Under 1 year,26,2018-07-06,27 -Males,Under 1 year,25,2018-07-13,28 -Males,Under 1 year,28,2018-07-20,29 -Males,Under 1 year,36,2018-07-27,30 -Males,Under 1 year,33,2018-08-03,31 -Males,Under 1 year,30,2018-08-10,32 -Males,Under 1 year,38,2018-08-17,33 -Males,Under 1 year,30,2018-08-24,34 -Males,Under 1 year,30,2018-08-31,35 -Males,Under 1 year,27,2018-09-07,36 -Males,Under 1 year,29,2018-09-14,37 -Males,Under 1 year,42,2018-09-21,38 -Males,Under 1 year,29,2018-09-28,39 -Males,Under 1 year,16,2018-10-05,40 -Males,Under 1 year,23,2018-10-12,41 -Males,Under 1 year,26,2018-10-19,42 -Males,Under 1 year,34,2018-10-26,43 -Males,Under 1 year,27,2018-11-02,44 -Males,Under 1 year,24,2018-11-09,45 -Males,Under 1 year,24,2018-11-16,46 -Males,Under 1 year,35,2018-11-23,47 -Males,Under 1 year,32,2018-11-30,48 -Males,Under 1 year,24,2018-12-07,49 -Males,Under 1 year,26,2018-12-14,50 -Males,Under 1 year,24,2018-12-21,51 -Males,Under 1 year,10,2018-12-28,52 -Males,01-14,11,2018-01-05,1 -Males,01-14,5,2018-01-12,2 -Males,01-14,12,2018-01-19,3 -Males,01-14,18,2018-01-26,4 -Males,01-14,8,2018-02-02,5 -Males,01-14,13,2018-02-09,6 -Males,01-14,11,2018-02-16,7 -Males,01-14,7,2018-02-23,8 -Males,01-14,6,2018-03-02,9 -Males,01-14,16,2018-03-09,10 -Males,01-14,7,2018-03-16,11 -Males,01-14,5,2018-03-23,12 -Males,01-14,7,2018-03-30,13 -Males,01-14,13,2018-04-06,14 -Males,01-14,14,2018-04-13,15 -Males,01-14,10,2018-04-20,16 -Males,01-14,6,2018-04-27,17 -Males,01-14,14,2018-05-04,18 -Males,01-14,12,2018-05-11,19 -Males,01-14,16,2018-05-18,20 -Males,01-14,8,2018-05-25,21 -Males,01-14,14,2018-06-01,22 -Males,01-14,9,2018-06-08,23 -Males,01-14,7,2018-06-15,24 -Males,01-14,13,2018-06-22,25 -Males,01-14,15,2018-06-29,26 -Males,01-14,15,2018-07-06,27 -Males,01-14,15,2018-07-13,28 -Males,01-14,8,2018-07-20,29 -Males,01-14,10,2018-07-27,30 -Males,01-14,12,2018-08-03,31 -Males,01-14,11,2018-08-10,32 -Males,01-14,7,2018-08-17,33 -Males,01-14,8,2018-08-24,34 -Males,01-14,8,2018-08-31,35 -Males,01-14,9,2018-09-07,36 -Males,01-14,9,2018-09-14,37 -Males,01-14,11,2018-09-21,38 -Males,01-14,6,2018-09-28,39 -Males,01-14,7,2018-10-05,40 -Males,01-14,14,2018-10-12,41 -Males,01-14,14,2018-10-19,42 -Males,01-14,15,2018-10-26,43 -Males,01-14,15,2018-11-02,44 -Males,01-14,7,2018-11-09,45 -Males,01-14,15,2018-11-16,46 -Males,01-14,8,2018-11-23,47 -Males,01-14,5,2018-11-30,48 -Males,01-14,9,2018-12-07,49 -Males,01-14,9,2018-12-14,50 -Males,01-14,15,2018-12-21,51 -Males,01-14,7,2018-12-28,52 -Males,15-44,118,2018-01-05,1 -Males,15-44,186,2018-01-12,2 -Males,15-44,185,2018-01-19,3 -Males,15-44,219,2018-01-26,4 -Males,15-44,216,2018-02-02,5 -Males,15-44,190,2018-02-09,6 -Males,15-44,196,2018-02-16,7 -Males,15-44,206,2018-02-23,8 -Males,15-44,168,2018-03-02,9 -Males,15-44,195,2018-03-09,10 -Males,15-44,219,2018-03-16,11 -Males,15-44,182,2018-03-23,12 -Males,15-44,179,2018-03-30,13 -Males,15-44,167,2018-04-06,14 -Males,15-44,220,2018-04-13,15 -Males,15-44,191,2018-04-20,16 -Males,15-44,227,2018-04-27,17 -Males,15-44,201,2018-05-04,18 -Males,15-44,163,2018-05-11,19 -Males,15-44,205,2018-05-18,20 -Males,15-44,170,2018-05-25,21 -Males,15-44,171,2018-06-01,22 -Males,15-44,193,2018-06-08,23 -Males,15-44,182,2018-06-15,24 -Males,15-44,203,2018-06-22,25 -Males,15-44,193,2018-06-29,26 -Males,15-44,181,2018-07-06,27 -Males,15-44,204,2018-07-13,28 -Males,15-44,187,2018-07-20,29 -Males,15-44,197,2018-07-27,30 -Males,15-44,190,2018-08-03,31 -Males,15-44,237,2018-08-10,32 -Males,15-44,161,2018-08-17,33 -Males,15-44,165,2018-08-24,34 -Males,15-44,151,2018-08-31,35 -Males,15-44,194,2018-09-07,36 -Males,15-44,179,2018-09-14,37 -Males,15-44,179,2018-09-21,38 -Males,15-44,184,2018-09-28,39 -Males,15-44,173,2018-10-05,40 -Males,15-44,229,2018-10-12,41 -Males,15-44,195,2018-10-19,42 -Males,15-44,202,2018-10-26,43 -Males,15-44,192,2018-11-02,44 -Males,15-44,195,2018-11-09,45 -Males,15-44,196,2018-11-16,46 -Males,15-44,197,2018-11-23,47 -Males,15-44,205,2018-11-30,48 -Males,15-44,220,2018-12-07,49 -Males,15-44,190,2018-12-14,50 -Males,15-44,222,2018-12-21,51 -Males,15-44,103,2018-12-28,52 -Males,45-64,748,2018-01-05,1 -Males,45-64,918,2018-01-12,2 -Males,45-64,888,2018-01-19,3 -Males,45-64,889,2018-01-26,4 -Males,45-64,809,2018-02-02,5 -Males,45-64,816,2018-02-09,6 -Males,45-64,836,2018-02-16,7 -Males,45-64,840,2018-02-23,8 -Males,45-64,745,2018-03-02,9 -Males,45-64,806,2018-03-09,10 -Males,45-64,798,2018-03-16,11 -Males,45-64,810,2018-03-23,12 -Males,45-64,674,2018-03-30,13 -Males,45-64,718,2018-04-06,14 -Males,45-64,812,2018-04-13,15 -Males,45-64,830,2018-04-20,16 -Males,45-64,731,2018-04-27,17 -Males,45-64,815,2018-05-04,18 -Males,45-64,648,2018-05-11,19 -Males,45-64,791,2018-05-18,20 -Males,45-64,731,2018-05-25,21 -Males,45-64,581,2018-06-01,22 -Males,45-64,723,2018-06-08,23 -Males,45-64,698,2018-06-15,24 -Males,45-64,696,2018-06-22,25 -Males,45-64,726,2018-06-29,26 -Males,45-64,697,2018-07-06,27 -Males,45-64,677,2018-07-13,28 -Males,45-64,703,2018-07-20,29 -Males,45-64,727,2018-07-27,30 -Males,45-64,685,2018-08-03,31 -Males,45-64,725,2018-08-10,32 -Males,45-64,669,2018-08-17,33 -Males,45-64,659,2018-08-24,34 -Males,45-64,575,2018-08-31,35 -Males,45-64,709,2018-09-07,36 -Males,45-64,722,2018-09-14,37 -Males,45-64,709,2018-09-21,38 -Males,45-64,652,2018-09-28,39 -Males,45-64,709,2018-10-05,40 -Males,45-64,699,2018-10-12,41 -Males,45-64,760,2018-10-19,42 -Males,45-64,702,2018-10-26,43 -Males,45-64,677,2018-11-02,44 -Males,45-64,687,2018-11-09,45 -Males,45-64,734,2018-11-16,46 -Males,45-64,700,2018-11-23,47 -Males,45-64,733,2018-11-30,48 -Males,45-64,701,2018-12-07,49 -Males,45-64,747,2018-12-14,50 -Males,45-64,810,2018-12-21,51 -Males,45-64,450,2018-12-28,52 -Males,65-74,1120,2018-01-05,1 -Males,65-74,1347,2018-01-12,2 -Males,65-74,1268,2018-01-19,3 -Males,65-74,1273,2018-01-26,4 -Males,65-74,1186,2018-02-02,5 -Males,65-74,1183,2018-02-09,6 -Males,65-74,1168,2018-02-16,7 -Males,65-74,1067,2018-02-23,8 -Males,65-74,998,2018-03-02,9 -Males,65-74,1158,2018-03-09,10 -Males,65-74,1157,2018-03-16,11 -Males,65-74,1133,2018-03-23,12 -Males,65-74,921,2018-03-30,13 -Males,65-74,1029,2018-04-06,14 -Males,65-74,1197,2018-04-13,15 -Males,65-74,1106,2018-04-20,16 -Males,65-74,980,2018-04-27,17 -Males,65-74,1008,2018-05-04,18 -Males,65-74,841,2018-05-11,19 -Males,65-74,1017,2018-05-18,20 -Males,65-74,994,2018-05-25,21 -Males,65-74,845,2018-06-01,22 -Males,65-74,968,2018-06-08,23 -Males,65-74,949,2018-06-15,24 -Males,65-74,994,2018-06-22,25 -Males,65-74,936,2018-06-29,26 -Males,65-74,892,2018-07-06,27 -Males,65-74,957,2018-07-13,28 -Males,65-74,925,2018-07-20,29 -Males,65-74,922,2018-07-27,30 -Males,65-74,863,2018-08-03,31 -Males,65-74,960,2018-08-10,32 -Males,65-74,918,2018-08-17,33 -Males,65-74,901,2018-08-24,34 -Males,65-74,815,2018-08-31,35 -Males,65-74,985,2018-09-07,36 -Males,65-74,922,2018-09-14,37 -Males,65-74,945,2018-09-21,38 -Males,65-74,929,2018-09-28,39 -Males,65-74,965,2018-10-05,40 -Males,65-74,987,2018-10-12,41 -Males,65-74,965,2018-10-19,42 -Males,65-74,953,2018-10-26,43 -Males,65-74,937,2018-11-02,44 -Males,65-74,971,2018-11-09,45 -Males,65-74,986,2018-11-16,46 -Males,65-74,982,2018-11-23,47 -Males,65-74,953,2018-11-30,48 -Males,65-74,991,2018-12-07,49 -Males,65-74,1057,2018-12-14,50 -Males,65-74,1112,2018-12-21,51 -Males,65-74,694,2018-12-28,52 -Males,75-84,1865,2018-01-05,1 -Males,75-84,2120,2018-01-12,2 -Males,75-84,2009,2018-01-19,3 -Males,75-84,1978,2018-01-26,4 -Males,75-84,1960,2018-02-02,5 -Males,75-84,1786,2018-02-09,6 -Males,75-84,1851,2018-02-16,7 -Males,75-84,1731,2018-02-23,8 -Males,75-84,1579,2018-03-02,9 -Males,75-84,1945,2018-03-09,10 -Males,75-84,1879,2018-03-16,11 -Males,75-84,1732,2018-03-23,12 -Males,75-84,1580,2018-03-30,13 -Males,75-84,1605,2018-04-06,14 -Males,75-84,1870,2018-04-13,15 -Males,75-84,1678,2018-04-20,16 -Males,75-84,1522,2018-04-27,17 -Males,75-84,1539,2018-05-04,18 -Males,75-84,1280,2018-05-11,19 -Males,75-84,1509,2018-05-18,20 -Males,75-84,1431,2018-05-25,21 -Males,75-84,1259,2018-06-01,22 -Males,75-84,1510,2018-06-08,23 -Males,75-84,1479,2018-06-15,24 -Males,75-84,1382,2018-06-22,25 -Males,75-84,1346,2018-06-29,26 -Males,75-84,1418,2018-07-06,27 -Males,75-84,1421,2018-07-13,28 -Males,75-84,1333,2018-07-20,29 -Males,75-84,1417,2018-07-27,30 -Males,75-84,1357,2018-08-03,31 -Males,75-84,1439,2018-08-10,32 -Males,75-84,1311,2018-08-17,33 -Males,75-84,1381,2018-08-24,34 -Males,75-84,1123,2018-08-31,35 -Males,75-84,1361,2018-09-07,36 -Males,75-84,1353,2018-09-14,37 -Males,75-84,1373,2018-09-21,38 -Males,75-84,1443,2018-09-28,39 -Males,75-84,1461,2018-10-05,40 -Males,75-84,1451,2018-10-12,41 -Males,75-84,1493,2018-10-19,42 -Males,75-84,1474,2018-10-26,43 -Males,75-84,1448,2018-11-02,44 -Males,75-84,1589,2018-11-09,45 -Males,75-84,1519,2018-11-16,46 -Males,75-84,1455,2018-11-23,47 -Males,75-84,1504,2018-11-30,48 -Males,75-84,1573,2018-12-07,49 -Males,75-84,1576,2018-12-14,50 -Males,75-84,1680,2018-12-21,51 -Males,75-84,1051,2018-12-28,52 -Males,85+,2080,2018-01-05,1 -Males,85+,2499,2018-01-12,2 -Males,85+,2390,2018-01-19,3 -Males,85+,2264,2018-01-26,4 -Males,85+,2204,2018-02-02,5 -Males,85+,2043,2018-02-09,6 -Males,85+,1999,2018-02-16,7 -Males,85+,1915,2018-02-23,8 -Males,85+,1751,2018-03-02,9 -Males,85+,2142,2018-03-09,10 -Males,85+,2075,2018-03-16,11 -Males,85+,1885,2018-03-23,12 -Males,85+,1505,2018-03-30,13 -Males,85+,1699,2018-04-06,14 -Males,85+,1974,2018-04-13,15 -Males,85+,1722,2018-04-20,16 -Males,85+,1566,2018-04-27,17 -Males,85+,1511,2018-05-04,18 -Males,85+,1343,2018-05-11,19 -Males,85+,1543,2018-05-18,20 -Males,85+,1509,2018-05-25,21 -Males,85+,1210,2018-06-01,22 -Males,85+,1524,2018-06-08,23 -Males,85+,1368,2018-06-15,24 -Males,85+,1447,2018-06-22,25 -Males,85+,1393,2018-06-29,26 -Males,85+,1443,2018-07-06,27 -Males,85+,1388,2018-07-13,28 -Males,85+,1455,2018-07-20,29 -Males,85+,1277,2018-07-27,30 -Males,85+,1388,2018-08-03,31 -Males,85+,1378,2018-08-10,32 -Males,85+,1339,2018-08-17,33 -Males,85+,1365,2018-08-24,34 -Males,85+,1177,2018-08-31,35 -Males,85+,1475,2018-09-07,36 -Males,85+,1387,2018-09-14,37 -Males,85+,1431,2018-09-21,38 -Males,85+,1397,2018-09-28,39 -Males,85+,1443,2018-10-05,40 -Males,85+,1437,2018-10-12,41 -Males,85+,1549,2018-10-19,42 -Males,85+,1466,2018-10-26,43 -Males,85+,1530,2018-11-02,44 -Males,85+,1549,2018-11-09,45 -Males,85+,1684,2018-11-16,46 -Males,85+,1568,2018-11-23,47 -Males,85+,1531,2018-11-30,48 -Males,85+,1532,2018-12-07,49 -Males,85+,1598,2018-12-14,50 -Males,85+,1708,2018-12-21,51 -Males,85+,1146,2018-12-28,52 -Females,Under 1 year,20,2018-01-05,1 -Females,Under 1 year,31,2018-01-12,2 -Females,Under 1 year,26,2018-01-19,3 -Females,Under 1 year,24,2018-01-26,4 -Females,Under 1 year,17,2018-02-02,5 -Females,Under 1 year,19,2018-02-09,6 -Females,Under 1 year,24,2018-02-16,7 -Females,Under 1 year,8,2018-02-23,8 -Females,Under 1 year,20,2018-03-02,9 -Females,Under 1 year,21,2018-03-09,10 -Females,Under 1 year,22,2018-03-16,11 -Females,Under 1 year,11,2018-03-23,12 -Females,Under 1 year,22,2018-03-30,13 -Females,Under 1 year,18,2018-04-06,14 -Females,Under 1 year,17,2018-04-13,15 -Females,Under 1 year,25,2018-04-20,16 -Females,Under 1 year,25,2018-04-27,17 -Females,Under 1 year,22,2018-05-04,18 -Females,Under 1 year,22,2018-05-11,19 -Females,Under 1 year,23,2018-05-18,20 -Females,Under 1 year,27,2018-05-25,21 -Females,Under 1 year,19,2018-06-01,22 -Females,Under 1 year,14,2018-06-08,23 -Females,Under 1 year,27,2018-06-15,24 -Females,Under 1 year,28,2018-06-22,25 -Females,Under 1 year,20,2018-06-29,26 -Females,Under 1 year,24,2018-07-06,27 -Females,Under 1 year,23,2018-07-13,28 -Females,Under 1 year,17,2018-07-20,29 -Females,Under 1 year,23,2018-07-27,30 -Females,Under 1 year,29,2018-08-03,31 -Females,Under 1 year,29,2018-08-10,32 -Females,Under 1 year,26,2018-08-17,33 -Females,Under 1 year,14,2018-08-24,34 -Females,Under 1 year,21,2018-08-31,35 -Females,Under 1 year,18,2018-09-07,36 -Females,Under 1 year,26,2018-09-14,37 -Females,Under 1 year,27,2018-09-21,38 -Females,Under 1 year,21,2018-09-28,39 -Females,Under 1 year,24,2018-10-05,40 -Females,Under 1 year,24,2018-10-12,41 -Females,Under 1 year,17,2018-10-19,42 -Females,Under 1 year,31,2018-10-26,43 -Females,Under 1 year,19,2018-11-02,44 -Females,Under 1 year,20,2018-11-09,45 -Females,Under 1 year,23,2018-11-16,46 -Females,Under 1 year,27,2018-11-23,47 -Females,Under 1 year,26,2018-11-30,48 -Females,Under 1 year,21,2018-12-07,49 -Females,Under 1 year,25,2018-12-14,50 -Females,Under 1 year,17,2018-12-21,51 -Females,Under 1 year,12,2018-12-28,52 -Females,01-14,7,2018-01-05,1 -Females,01-14,12,2018-01-12,2 -Females,01-14,10,2018-01-19,3 -Females,01-14,7,2018-01-26,4 -Females,01-14,6,2018-02-02,5 -Females,01-14,10,2018-02-09,6 -Females,01-14,6,2018-02-16,7 -Females,01-14,6,2018-02-23,8 -Females,01-14,5,2018-03-02,9 -Females,01-14,11,2018-03-09,10 -Females,01-14,10,2018-03-16,11 -Females,01-14,10,2018-03-23,12 -Females,01-14,13,2018-03-30,13 -Females,01-14,9,2018-04-06,14 -Females,01-14,11,2018-04-13,15 -Females,01-14,11,2018-04-20,16 -Females,01-14,6,2018-04-27,17 -Females,01-14,7,2018-05-04,18 -Females,01-14,9,2018-05-11,19 -Females,01-14,8,2018-05-18,20 -Females,01-14,5,2018-05-25,21 -Females,01-14,4,2018-06-01,22 -Females,01-14,10,2018-06-08,23 -Females,01-14,10,2018-06-15,24 -Females,01-14,8,2018-06-22,25 -Females,01-14,7,2018-06-29,26 -Females,01-14,8,2018-07-06,27 -Females,01-14,6,2018-07-13,28 -Females,01-14,7,2018-07-20,29 -Females,01-14,3,2018-07-27,30 -Females,01-14,6,2018-08-03,31 -Females,01-14,7,2018-08-10,32 -Females,01-14,4,2018-08-17,33 -Females,01-14,14,2018-08-24,34 -Females,01-14,3,2018-08-31,35 -Females,01-14,11,2018-09-07,36 -Females,01-14,9,2018-09-14,37 -Females,01-14,7,2018-09-21,38 -Females,01-14,4,2018-09-28,39 -Females,01-14,10,2018-10-05,40 -Females,01-14,6,2018-10-12,41 -Females,01-14,4,2018-10-19,42 -Females,01-14,9,2018-10-26,43 -Females,01-14,9,2018-11-02,44 -Females,01-14,5,2018-11-09,45 -Females,01-14,14,2018-11-16,46 -Females,01-14,14,2018-11-23,47 -Females,01-14,15,2018-11-30,48 -Females,01-14,6,2018-12-07,49 -Females,01-14,4,2018-12-14,50 -Females,01-14,8,2018-12-21,51 -Females,01-14,4,2018-12-28,52 -Females,15-44,90,2018-01-05,1 -Females,15-44,116,2018-01-12,2 -Females,15-44,101,2018-01-19,3 -Females,15-44,79,2018-01-26,4 -Females,15-44,123,2018-02-02,5 -Females,15-44,103,2018-02-09,6 -Females,15-44,122,2018-02-16,7 -Females,15-44,88,2018-02-23,8 -Females,15-44,86,2018-03-02,9 -Females,15-44,92,2018-03-09,10 -Females,15-44,110,2018-03-16,11 -Females,15-44,96,2018-03-23,12 -Females,15-44,82,2018-03-30,13 -Females,15-44,93,2018-04-06,14 -Females,15-44,117,2018-04-13,15 -Females,15-44,110,2018-04-20,16 -Females,15-44,113,2018-04-27,17 -Females,15-44,107,2018-05-04,18 -Females,15-44,84,2018-05-11,19 -Females,15-44,95,2018-05-18,20 -Females,15-44,124,2018-05-25,21 -Females,15-44,79,2018-06-01,22 -Females,15-44,105,2018-06-08,23 -Females,15-44,104,2018-06-15,24 -Females,15-44,105,2018-06-22,25 -Females,15-44,113,2018-06-29,26 -Females,15-44,105,2018-07-06,27 -Females,15-44,100,2018-07-13,28 -Females,15-44,117,2018-07-20,29 -Females,15-44,94,2018-07-27,30 -Females,15-44,96,2018-08-03,31 -Females,15-44,91,2018-08-10,32 -Females,15-44,92,2018-08-17,33 -Females,15-44,85,2018-08-24,34 -Females,15-44,82,2018-08-31,35 -Females,15-44,129,2018-09-07,36 -Females,15-44,96,2018-09-14,37 -Females,15-44,113,2018-09-21,38 -Females,15-44,86,2018-09-28,39 -Females,15-44,114,2018-10-05,40 -Females,15-44,99,2018-10-12,41 -Females,15-44,106,2018-10-19,42 -Females,15-44,107,2018-10-26,43 -Females,15-44,97,2018-11-02,44 -Females,15-44,113,2018-11-09,45 -Females,15-44,96,2018-11-16,46 -Females,15-44,115,2018-11-23,47 -Females,15-44,112,2018-11-30,48 -Females,15-44,106,2018-12-07,49 -Females,15-44,105,2018-12-14,50 -Females,15-44,111,2018-12-21,51 -Females,15-44,63,2018-12-28,52 -Females,45-64,542,2018-01-05,1 -Females,45-64,643,2018-01-12,2 -Females,45-64,619,2018-01-19,3 -Females,45-64,570,2018-01-26,4 -Females,45-64,595,2018-02-02,5 -Females,45-64,531,2018-02-09,6 -Females,45-64,541,2018-02-16,7 -Females,45-64,538,2018-02-23,8 -Females,45-64,484,2018-03-02,9 -Females,45-64,556,2018-03-09,10 -Females,45-64,518,2018-03-16,11 -Females,45-64,539,2018-03-23,12 -Females,45-64,391,2018-03-30,13 -Females,45-64,511,2018-04-06,14 -Females,45-64,570,2018-04-13,15 -Females,45-64,556,2018-04-20,16 -Females,45-64,482,2018-04-27,17 -Females,45-64,548,2018-05-04,18 -Females,45-64,467,2018-05-11,19 -Females,45-64,539,2018-05-18,20 -Females,45-64,527,2018-05-25,21 -Females,45-64,417,2018-06-01,22 -Females,45-64,472,2018-06-08,23 -Females,45-64,501,2018-06-15,24 -Females,45-64,465,2018-06-22,25 -Females,45-64,458,2018-06-29,26 -Females,45-64,453,2018-07-06,27 -Females,45-64,463,2018-07-13,28 -Females,45-64,463,2018-07-20,29 -Females,45-64,466,2018-07-27,30 -Females,45-64,470,2018-08-03,31 -Females,45-64,450,2018-08-10,32 -Females,45-64,461,2018-08-17,33 -Females,45-64,424,2018-08-24,34 -Females,45-64,442,2018-08-31,35 -Females,45-64,487,2018-09-07,36 -Females,45-64,458,2018-09-14,37 -Females,45-64,462,2018-09-21,38 -Females,45-64,431,2018-09-28,39 -Females,45-64,491,2018-10-05,40 -Females,45-64,513,2018-10-12,41 -Females,45-64,449,2018-10-19,42 -Females,45-64,498,2018-10-26,43 -Females,45-64,474,2018-11-02,44 -Females,45-64,470,2018-11-09,45 -Females,45-64,504,2018-11-16,46 -Females,45-64,523,2018-11-23,47 -Females,45-64,513,2018-11-30,48 -Females,45-64,517,2018-12-07,49 -Females,45-64,518,2018-12-14,50 -Females,45-64,496,2018-12-21,51 -Females,45-64,342,2018-12-28,52 -Females,65-74,856,2018-01-05,1 -Females,65-74,974,2018-01-12,2 -Females,65-74,923,2018-01-19,3 -Females,65-74,884,2018-01-26,4 -Females,65-74,802,2018-02-02,5 -Females,65-74,849,2018-02-09,6 -Females,65-74,785,2018-02-16,7 -Females,65-74,829,2018-02-23,8 -Females,65-74,730,2018-03-02,9 -Females,65-74,861,2018-03-09,10 -Females,65-74,832,2018-03-16,11 -Females,65-74,784,2018-03-23,12 -Females,65-74,665,2018-03-30,13 -Females,65-74,735,2018-04-06,14 -Females,65-74,856,2018-04-13,15 -Females,65-74,774,2018-04-20,16 -Females,65-74,727,2018-04-27,17 -Females,65-74,717,2018-05-04,18 -Females,65-74,596,2018-05-11,19 -Females,65-74,743,2018-05-18,20 -Females,65-74,665,2018-05-25,21 -Females,65-74,586,2018-06-01,22 -Females,65-74,732,2018-06-08,23 -Females,65-74,658,2018-06-15,24 -Females,65-74,619,2018-06-22,25 -Females,65-74,716,2018-06-29,26 -Females,65-74,656,2018-07-06,27 -Females,65-74,643,2018-07-13,28 -Females,65-74,652,2018-07-20,29 -Females,65-74,644,2018-07-27,30 -Females,65-74,673,2018-08-03,31 -Females,65-74,648,2018-08-10,32 -Females,65-74,640,2018-08-17,33 -Females,65-74,700,2018-08-24,34 -Females,65-74,627,2018-08-31,35 -Females,65-74,636,2018-09-07,36 -Females,65-74,678,2018-09-14,37 -Females,65-74,678,2018-09-21,38 -Females,65-74,678,2018-09-28,39 -Females,65-74,662,2018-10-05,40 -Females,65-74,620,2018-10-12,41 -Females,65-74,689,2018-10-19,42 -Females,65-74,704,2018-10-26,43 -Females,65-74,632,2018-11-02,44 -Females,65-74,695,2018-11-09,45 -Females,65-74,730,2018-11-16,46 -Females,65-74,718,2018-11-23,47 -Females,65-74,705,2018-11-30,48 -Females,65-74,705,2018-12-07,49 -Females,65-74,757,2018-12-14,50 -Females,65-74,755,2018-12-21,51 -Females,65-74,511,2018-12-28,52 -Females,75-84,1747,2018-01-05,1 -Females,75-84,2035,2018-01-12,2 -Females,75-84,1857,2018-01-19,3 -Females,75-84,1846,2018-01-26,4 -Females,75-84,1701,2018-02-02,5 -Females,75-84,1590,2018-02-09,6 -Females,75-84,1641,2018-02-16,7 -Females,75-84,1667,2018-02-23,8 -Females,75-84,1449,2018-03-02,9 -Females,75-84,1746,2018-03-09,10 -Females,75-84,1715,2018-03-16,11 -Females,75-84,1610,2018-03-23,12 -Females,75-84,1304,2018-03-30,13 -Females,75-84,1408,2018-04-06,14 -Females,75-84,1572,2018-04-13,15 -Females,75-84,1431,2018-04-20,16 -Females,75-84,1384,2018-04-27,17 -Females,75-84,1368,2018-05-04,18 -Females,75-84,1104,2018-05-11,19 -Females,75-84,1282,2018-05-18,20 -Females,75-84,1256,2018-05-25,21 -Females,75-84,1071,2018-06-01,22 -Females,75-84,1371,2018-06-08,23 -Females,75-84,1191,2018-06-15,24 -Females,75-84,1168,2018-06-22,25 -Females,75-84,1162,2018-06-29,26 -Females,75-84,1193,2018-07-06,27 -Females,75-84,1212,2018-07-13,28 -Females,75-84,1151,2018-07-20,29 -Females,75-84,1211,2018-07-27,30 -Females,75-84,1263,2018-08-03,31 -Females,75-84,1124,2018-08-10,32 -Females,75-84,1178,2018-08-17,33 -Females,75-84,1179,2018-08-24,34 -Females,75-84,1027,2018-08-31,35 -Females,75-84,1277,2018-09-07,36 -Females,75-84,1223,2018-09-14,37 -Females,75-84,1228,2018-09-21,38 -Females,75-84,1186,2018-09-28,39 -Females,75-84,1235,2018-10-05,40 -Females,75-84,1290,2018-10-12,41 -Females,75-84,1276,2018-10-19,42 -Females,75-84,1168,2018-10-26,43 -Females,75-84,1252,2018-11-02,44 -Females,75-84,1360,2018-11-09,45 -Females,75-84,1300,2018-11-16,46 -Females,75-84,1311,2018-11-23,47 -Females,75-84,1325,2018-11-30,48 -Females,75-84,1392,2018-12-07,49 -Females,75-84,1386,2018-12-14,50 -Females,75-84,1456,2018-12-21,51 -Females,75-84,962,2018-12-28,52 -Females,85+,3485,2018-01-05,1 -Females,85+,4122,2018-01-12,2 -Females,85+,3935,2018-01-19,3 -Females,85+,3858,2018-01-26,4 -Females,85+,3634,2018-02-02,5 -Females,85+,3331,2018-02-09,6 -Females,85+,3042,2018-02-16,7 -Females,85+,3222,2018-02-23,8 -Females,85+,2808,2018-03-02,9 -Females,85+,3422,2018-03-09,10 -Females,85+,3421,2018-03-16,11 -Females,85+,3081,2018-03-23,12 -Females,85+,2577,2018-03-30,13 -Females,85+,2761,2018-04-06,14 -Females,85+,3052,2018-04-13,15 -Females,85+,2750,2018-04-20,16 -Females,85+,2505,2018-04-27,17 -Females,85+,2267,2018-05-04,18 -Females,85+,2029,2018-05-11,19 -Females,85+,2341,2018-05-18,20 -Females,85+,2156,2018-05-25,21 -Females,85+,1864,2018-06-01,22 -Females,85+,2287,2018-06-08,23 -Females,85+,2136,2018-06-15,24 -Females,85+,2101,2018-06-22,25 -Females,85+,2104,2018-06-29,26 -Females,85+,2147,2018-07-06,27 -Females,85+,2159,2018-07-13,28 -Females,85+,2081,2018-07-20,29 -Females,85+,2114,2018-07-27,30 -Females,85+,2096,2018-08-03,31 -Females,85+,2190,2018-08-10,32 -Females,85+,1986,2018-08-17,33 -Females,85+,2053,2018-08-24,34 -Females,85+,1784,2018-08-31,35 -Females,85+,2127,2018-09-07,36 -Females,85+,2100,2018-09-14,37 -Females,85+,2100,2018-09-21,38 -Females,85+,2104,2018-09-28,39 -Females,85+,2193,2018-10-05,40 -Females,85+,2257,2018-10-12,41 -Females,85+,2321,2018-10-19,42 -Females,85+,2240,2018-10-26,43 -Females,85+,2220,2018-11-02,44 -Females,85+,2466,2018-11-09,45 -Females,85+,2368,2018-11-16,46 -Females,85+,2304,2018-11-23,47 -Females,85+,2374,2018-11-30,48 -Females,85+,2490,2018-12-07,49 -Females,85+,2552,2018-12-14,50 -Females,85+,2702,2018-12-21,51 -Females,85+,1776,2018-12-28,52 -Region,North East,640,2018-01-05,1 -Region,North East,837,2018-01-12,2 -Region,North East,783,2018-01-19,3 -Region,North East,779,2018-01-26,4 -Region,North East,740,2018-02-02,5 -Region,North East,663,2018-02-09,6 -Region,North East,612,2018-02-16,7 -Region,North East,671,2018-02-23,8 -Region,North East,551,2018-03-02,9 -Region,North East,677,2018-03-09,10 -Region,North East,614,2018-03-16,11 -Region,North East,576,2018-03-23,12 -Region,North East,498,2018-03-30,13 -Region,North East,534,2018-04-06,14 -Region,North East,631,2018-04-13,15 -Region,North East,559,2018-04-20,16 -Region,North East,516,2018-04-27,17 -Region,North East,534,2018-05-04,18 -Region,North East,510,2018-05-11,19 -Region,North East,504,2018-05-18,20 -Region,North East,501,2018-05-25,21 -Region,North East,458,2018-06-01,22 -Region,North East,548,2018-06-08,23 -Region,North East,454,2018-06-15,24 -Region,North East,475,2018-06-22,25 -Region,North East,484,2018-06-29,26 -Region,North East,477,2018-07-06,27 -Region,North East,470,2018-07-13,28 -Region,North East,471,2018-07-20,29 -Region,North East,477,2018-07-27,30 -Region,North East,486,2018-08-03,31 -Region,North East,448,2018-08-10,32 -Region,North East,446,2018-08-17,33 -Region,North East,477,2018-08-24,34 -Region,North East,437,2018-08-31,35 -Region,North East,534,2018-09-07,36 -Region,North East,465,2018-09-14,37 -Region,North East,475,2018-09-21,38 -Region,North East,483,2018-09-28,39 -Region,North East,514,2018-10-05,40 -Region,North East,486,2018-10-12,41 -Region,North East,527,2018-10-19,42 -Region,North East,526,2018-10-26,43 -Region,North East,511,2018-11-02,44 -Region,North East,520,2018-11-09,45 -Region,North East,490,2018-11-16,46 -Region,North East,511,2018-11-23,47 -Region,North East,505,2018-11-30,48 -Region,North East,539,2018-12-07,49 -Region,North East,561,2018-12-14,50 -Region,North East,625,2018-12-21,51 -Region,North East,459,2018-12-28,52 -Region,North West,1747,2018-01-05,1 -Region,North West,2113,2018-01-12,2 -Region,North West,1828,2018-01-19,3 -Region,North West,1855,2018-01-26,4 -Region,North West,1728,2018-02-02,5 -Region,North West,1615,2018-02-09,6 -Region,North West,1665,2018-02-16,7 -Region,North West,1677,2018-02-23,8 -Region,North West,1485,2018-03-02,9 -Region,North West,1690,2018-03-09,10 -Region,North West,1690,2018-03-16,11 -Region,North West,1516,2018-03-23,12 -Region,North West,1335,2018-03-30,13 -Region,North West,1470,2018-04-06,14 -Region,North West,1613,2018-04-13,15 -Region,North West,1456,2018-04-20,16 -Region,North West,1391,2018-04-27,17 -Region,North West,1347,2018-05-04,18 -Region,North West,1116,2018-05-11,19 -Region,North West,1390,2018-05-18,20 -Region,North West,1278,2018-05-25,21 -Region,North West,1142,2018-06-01,22 -Region,North West,1309,2018-06-08,23 -Region,North West,1167,2018-06-15,24 -Region,North West,1217,2018-06-22,25 -Region,North West,1214,2018-06-29,26 -Region,North West,1280,2018-07-06,27 -Region,North West,1239,2018-07-13,28 -Region,North West,1229,2018-07-20,29 -Region,North West,1219,2018-07-27,30 -Region,North West,1228,2018-08-03,31 -Region,North West,1231,2018-08-10,32 -Region,North West,1171,2018-08-17,33 -Region,North West,1134,2018-08-24,34 -Region,North West,1058,2018-08-31,35 -Region,North West,1152,2018-09-07,36 -Region,North West,1231,2018-09-14,37 -Region,North West,1226,2018-09-21,38 -Region,North West,1262,2018-09-28,39 -Region,North West,1302,2018-10-05,40 -Region,North West,1291,2018-10-12,41 -Region,North West,1274,2018-10-19,42 -Region,North West,1215,2018-10-26,43 -Region,North West,1330,2018-11-02,44 -Region,North West,1403,2018-11-09,45 -Region,North West,1408,2018-11-16,46 -Region,North West,1357,2018-11-23,47 -Region,North West,1330,2018-11-30,48 -Region,North West,1377,2018-12-07,49 -Region,North West,1422,2018-12-14,50 -Region,North West,1439,2018-12-21,51 -Region,North West,1020,2018-12-28,52 -Region,Yorkshire and The Humber,1300,2018-01-05,1 -Region,Yorkshire and The Humber,1481,2018-01-12,2 -Region,Yorkshire and The Humber,1387,2018-01-19,3 -Region,Yorkshire and The Humber,1363,2018-01-26,4 -Region,Yorkshire and The Humber,1285,2018-02-02,5 -Region,Yorkshire and The Humber,1206,2018-02-09,6 -Region,Yorkshire and The Humber,1230,2018-02-16,7 -Region,Yorkshire and The Humber,1196,2018-02-23,8 -Region,Yorkshire and The Humber,1125,2018-03-02,9 -Region,Yorkshire and The Humber,1192,2018-03-09,10 -Region,Yorkshire and The Humber,1203,2018-03-16,11 -Region,Yorkshire and The Humber,1124,2018-03-23,12 -Region,Yorkshire and The Humber,973,2018-03-30,13 -Region,Yorkshire and The Humber,1105,2018-04-06,14 -Region,Yorkshire and The Humber,1199,2018-04-13,15 -Region,Yorkshire and The Humber,1037,2018-04-20,16 -Region,Yorkshire and The Humber,987,2018-04-27,17 -Region,Yorkshire and The Humber,922,2018-05-04,18 -Region,Yorkshire and The Humber,886,2018-05-11,19 -Region,Yorkshire and The Humber,888,2018-05-18,20 -Region,Yorkshire and The Humber,913,2018-05-25,21 -Region,Yorkshire and The Humber,769,2018-06-01,22 -Region,Yorkshire and The Humber,985,2018-06-08,23 -Region,Yorkshire and The Humber,947,2018-06-15,24 -Region,Yorkshire and The Humber,944,2018-06-22,25 -Region,Yorkshire and The Humber,882,2018-06-29,26 -Region,Yorkshire and The Humber,895,2018-07-06,27 -Region,Yorkshire and The Humber,901,2018-07-13,28 -Region,Yorkshire and The Humber,942,2018-07-20,29 -Region,Yorkshire and The Humber,907,2018-07-27,30 -Region,Yorkshire and The Humber,817,2018-08-03,31 -Region,Yorkshire and The Humber,913,2018-08-10,32 -Region,Yorkshire and The Humber,880,2018-08-17,33 -Region,Yorkshire and The Humber,913,2018-08-24,34 -Region,Yorkshire and The Humber,779,2018-08-31,35 -Region,Yorkshire and The Humber,956,2018-09-07,36 -Region,Yorkshire and The Humber,865,2018-09-14,37 -Region,Yorkshire and The Humber,912,2018-09-21,38 -Region,Yorkshire and The Humber,904,2018-09-28,39 -Region,Yorkshire and The Humber,948,2018-10-05,40 -Region,Yorkshire and The Humber,963,2018-10-12,41 -Region,Yorkshire and The Humber,968,2018-10-19,42 -Region,Yorkshire and The Humber,956,2018-10-26,43 -Region,Yorkshire and The Humber,964,2018-11-02,44 -Region,Yorkshire and The Humber,981,2018-11-09,45 -Region,Yorkshire and The Humber,969,2018-11-16,46 -Region,Yorkshire and The Humber,1013,2018-11-23,47 -Region,Yorkshire and The Humber,998,2018-11-30,48 -Region,Yorkshire and The Humber,1006,2018-12-07,49 -Region,Yorkshire and The Humber,1108,2018-12-14,50 -Region,Yorkshire and The Humber,1148,2018-12-21,51 -Region,Yorkshire and The Humber,688,2018-12-28,52 -Region,East Midlands,1085,2018-01-05,1 -Region,East Midlands,1266,2018-01-12,2 -Region,East Midlands,1175,2018-01-19,3 -Region,East Midlands,1165,2018-01-26,4 -Region,East Midlands,1154,2018-02-02,5 -Region,East Midlands,1109,2018-02-09,6 -Region,East Midlands,1024,2018-02-16,7 -Region,East Midlands,1034,2018-02-23,8 -Region,East Midlands,907,2018-03-02,9 -Region,East Midlands,1072,2018-03-09,10 -Region,East Midlands,1116,2018-03-16,11 -Region,East Midlands,1038,2018-03-23,12 -Region,East Midlands,819,2018-03-30,13 -Region,East Midlands,886,2018-04-06,14 -Region,East Midlands,1068,2018-04-13,15 -Region,East Midlands,986,2018-04-20,16 -Region,East Midlands,904,2018-04-27,17 -Region,East Midlands,892,2018-05-04,18 -Region,East Midlands,740,2018-05-11,19 -Region,East Midlands,943,2018-05-18,20 -Region,East Midlands,828,2018-05-25,21 -Region,East Midlands,716,2018-06-01,22 -Region,East Midlands,884,2018-06-08,23 -Region,East Midlands,777,2018-06-15,24 -Region,East Midlands,764,2018-06-22,25 -Region,East Midlands,822,2018-06-29,26 -Region,East Midlands,788,2018-07-06,27 -Region,East Midlands,758,2018-07-13,28 -Region,East Midlands,730,2018-07-20,29 -Region,East Midlands,762,2018-07-27,30 -Region,East Midlands,830,2018-08-03,31 -Region,East Midlands,793,2018-08-10,32 -Region,East Midlands,742,2018-08-17,33 -Region,East Midlands,780,2018-08-24,34 -Region,East Midlands,630,2018-08-31,35 -Region,East Midlands,804,2018-09-07,36 -Region,East Midlands,814,2018-09-14,37 -Region,East Midlands,776,2018-09-21,38 -Region,East Midlands,766,2018-09-28,39 -Region,East Midlands,781,2018-10-05,40 -Region,East Midlands,832,2018-10-12,41 -Region,East Midlands,815,2018-10-19,42 -Region,East Midlands,880,2018-10-26,43 -Region,East Midlands,810,2018-11-02,44 -Region,East Midlands,813,2018-11-09,45 -Region,East Midlands,899,2018-11-16,46 -Region,East Midlands,848,2018-11-23,47 -Region,East Midlands,838,2018-11-30,48 -Region,East Midlands,830,2018-12-07,49 -Region,East Midlands,873,2018-12-14,50 -Region,East Midlands,930,2018-12-21,51 -Region,East Midlands,651,2018-12-28,52 -Region,West Midlands,1313,2018-01-05,1 -Region,West Midlands,1468,2018-01-12,2 -Region,West Midlands,1544,2018-01-19,3 -Region,West Midlands,1433,2018-01-26,4 -Region,West Midlands,1441,2018-02-02,5 -Region,West Midlands,1335,2018-02-09,6 -Region,West Midlands,1285,2018-02-16,7 -Region,West Midlands,1251,2018-02-23,8 -Region,West Midlands,1308,2018-03-02,9 -Region,West Midlands,1390,2018-03-09,10 -Region,West Midlands,1343,2018-03-16,11 -Region,West Midlands,1263,2018-03-23,12 -Region,West Midlands,1019,2018-03-30,13 -Region,West Midlands,1054,2018-04-06,14 -Region,West Midlands,1228,2018-04-13,15 -Region,West Midlands,1170,2018-04-20,16 -Region,West Midlands,969,2018-04-27,17 -Region,West Midlands,1113,2018-05-04,18 -Region,West Midlands,823,2018-05-11,19 -Region,West Midlands,1105,2018-05-18,20 -Region,West Midlands,983,2018-05-25,21 -Region,West Midlands,859,2018-06-01,22 -Region,West Midlands,1065,2018-06-08,23 -Region,West Midlands,967,2018-06-15,24 -Region,West Midlands,971,2018-06-22,25 -Region,West Midlands,954,2018-06-29,26 -Region,West Midlands,998,2018-07-06,27 -Region,West Midlands,961,2018-07-13,28 -Region,West Midlands,949,2018-07-20,29 -Region,West Midlands,897,2018-07-27,30 -Region,West Midlands,961,2018-08-03,31 -Region,West Midlands,946,2018-08-10,32 -Region,West Midlands,910,2018-08-17,33 -Region,West Midlands,983,2018-08-24,34 -Region,West Midlands,793,2018-08-31,35 -Region,West Midlands,1005,2018-09-07,36 -Region,West Midlands,956,2018-09-14,37 -Region,West Midlands,947,2018-09-21,38 -Region,West Midlands,965,2018-09-28,39 -Region,West Midlands,1020,2018-10-05,40 -Region,West Midlands,980,2018-10-12,41 -Region,West Midlands,979,2018-10-19,42 -Region,West Midlands,1079,2018-10-26,43 -Region,West Midlands,890,2018-11-02,44 -Region,West Midlands,1081,2018-11-09,45 -Region,West Midlands,1047,2018-11-16,46 -Region,West Midlands,1001,2018-11-23,47 -Region,West Midlands,1076,2018-11-30,48 -Region,West Midlands,1098,2018-12-07,49 -Region,West Midlands,1034,2018-12-14,50 -Region,West Midlands,1145,2018-12-21,51 -Region,West Midlands,660,2018-12-28,52 -Region,East,1404,2018-01-05,1 -Region,East,1677,2018-01-12,2 -Region,East,1562,2018-01-19,3 -Region,East,1553,2018-01-26,4 -Region,East,1468,2018-02-02,5 -Region,East,1359,2018-02-09,6 -Region,East,1307,2018-02-16,7 -Region,East,1300,2018-02-23,8 -Region,East,1088,2018-03-02,9 -Region,East,1390,2018-03-09,10 -Region,East,1358,2018-03-16,11 -Region,East,1251,2018-03-23,12 -Region,East,1074,2018-03-30,13 -Region,East,1196,2018-04-06,14 -Region,East,1425,2018-04-13,15 -Region,East,1248,2018-04-20,16 -Region,East,1209,2018-04-27,17 -Region,East,1117,2018-05-04,18 -Region,East,937,2018-05-11,19 -Region,East,1125,2018-05-18,20 -Region,East,1053,2018-05-25,21 -Region,East,839,2018-06-01,22 -Region,East,1157,2018-06-08,23 -Region,East,991,2018-06-15,24 -Region,East,985,2018-06-22,25 -Region,East,1011,2018-06-29,26 -Region,East,940,2018-07-06,27 -Region,East,993,2018-07-13,28 -Region,East,953,2018-07-20,29 -Region,East,1008,2018-07-27,30 -Region,East,1010,2018-08-03,31 -Region,East,1028,2018-08-10,32 -Region,East,991,2018-08-17,33 -Region,East,993,2018-08-24,34 -Region,East,877,2018-08-31,35 -Region,East,996,2018-09-07,36 -Region,East,999,2018-09-14,37 -Region,East,990,2018-09-21,38 -Region,East,957,2018-09-28,39 -Region,East,990,2018-10-05,40 -Region,East,1071,2018-10-12,41 -Region,East,1045,2018-10-19,42 -Region,East,993,2018-10-26,43 -Region,East,1042,2018-11-02,44 -Region,East,1094,2018-11-09,45 -Region,East,1128,2018-11-16,46 -Region,East,1071,2018-11-23,47 -Region,East,1077,2018-11-30,48 -Region,East,1106,2018-12-07,49 -Region,East,1130,2018-12-14,50 -Region,East,1124,2018-12-21,51 -Region,East,695,2018-12-28,52 -Region,London,1130,2018-01-05,1 -Region,London,1342,2018-01-12,2 -Region,London,1239,2018-01-19,3 -Region,London,1264,2018-01-26,4 -Region,London,1208,2018-02-02,5 -Region,London,1041,2018-02-09,6 -Region,London,1171,2018-02-16,7 -Region,London,1105,2018-02-23,8 -Region,London,1060,2018-03-02,9 -Region,London,1177,2018-03-09,10 -Region,London,1121,2018-03-16,11 -Region,London,1095,2018-03-23,12 -Region,London,910,2018-03-30,13 -Region,London,1014,2018-04-06,14 -Region,London,1133,2018-04-13,15 -Region,London,1039,2018-04-20,16 -Region,London,947,2018-04-27,17 -Region,London,917,2018-05-04,18 -Region,London,841,2018-05-11,19 -Region,London,913,2018-05-18,20 -Region,London,932,2018-05-25,21 -Region,London,784,2018-06-01,22 -Region,London,890,2018-06-08,23 -Region,London,921,2018-06-15,24 -Region,London,855,2018-06-22,25 -Region,London,824,2018-06-29,26 -Region,London,814,2018-07-06,27 -Region,London,941,2018-07-13,28 -Region,London,905,2018-07-20,29 -Region,London,955,2018-07-27,30 -Region,London,883,2018-08-03,31 -Region,London,947,2018-08-10,32 -Region,London,870,2018-08-17,33 -Region,London,808,2018-08-24,34 -Region,London,741,2018-08-31,35 -Region,London,904,2018-09-07,36 -Region,London,834,2018-09-14,37 -Region,London,865,2018-09-21,38 -Region,London,868,2018-09-28,39 -Region,London,898,2018-10-05,40 -Region,London,860,2018-10-12,41 -Region,London,941,2018-10-19,42 -Region,London,905,2018-10-26,43 -Region,London,896,2018-11-02,44 -Region,London,925,2018-11-09,45 -Region,London,940,2018-11-16,46 -Region,London,903,2018-11-23,47 -Region,London,948,2018-11-30,48 -Region,London,958,2018-12-07,49 -Region,London,1007,2018-12-14,50 -Region,London,1035,2018-12-21,51 -Region,London,655,2018-12-28,52 -Region,South East,1902,2018-01-05,1 -Region,South East,2371,2018-01-12,2 -Region,South East,2287,2018-01-19,3 -Region,South East,2184,2018-01-26,4 -Region,South East,2046,2018-02-02,5 -Region,South East,1867,2018-02-09,6 -Region,South East,1810,2018-02-16,7 -Region,South East,1757,2018-02-23,8 -Region,South East,1611,2018-03-02,9 -Region,South East,1919,2018-03-09,10 -Region,South East,1954,2018-03-16,11 -Region,South East,1853,2018-03-23,12 -Region,South East,1518,2018-03-30,13 -Region,South East,1578,2018-04-06,14 -Region,South East,1883,2018-04-13,15 -Region,South East,1743,2018-04-20,16 -Region,South East,1613,2018-04-27,17 -Region,South East,1570,2018-05-04,18 -Region,South East,1294,2018-05-11,19 -Region,South East,1511,2018-05-18,20 -Region,South East,1512,2018-05-25,21 -Region,South East,1187,2018-06-01,22 -Region,South East,1435,2018-06-08,23 -Region,South East,1442,2018-06-15,24 -Region,South East,1448,2018-06-22,25 -Region,South East,1408,2018-06-29,26 -Region,South East,1426,2018-07-06,27 -Region,South East,1403,2018-07-13,28 -Region,South East,1373,2018-07-20,29 -Region,South East,1374,2018-07-27,30 -Region,South East,1396,2018-08-03,31 -Region,South East,1453,2018-08-10,32 -Region,South East,1361,2018-08-17,33 -Region,South East,1392,2018-08-24,34 -Region,South East,1170,2018-08-31,35 -Region,South East,1464,2018-09-07,36 -Region,South East,1440,2018-09-14,37 -Region,South East,1503,2018-09-21,38 -Region,South East,1375,2018-09-28,39 -Region,South East,1387,2018-10-05,40 -Region,South East,1491,2018-10-12,41 -Region,South East,1570,2018-10-19,42 -Region,South East,1376,2018-10-26,43 -Region,South East,1465,2018-11-02,44 -Region,South East,1543,2018-11-09,45 -Region,South East,1538,2018-11-16,46 -Region,South East,1503,2018-11-23,47 -Region,South East,1523,2018-11-30,48 -Region,South East,1594,2018-12-07,49 -Region,South East,1573,2018-12-14,50 -Region,South East,1688,2018-12-21,51 -Region,South East,1062,2018-12-28,52 -Region,South West,1393,2018-01-05,1 -Region,South West,1552,2018-01-12,2 -Region,South West,1535,2018-01-19,3 -Region,South West,1460,2018-01-26,4 -Region,South West,1382,2018-02-02,5 -Region,South West,1378,2018-02-09,6 -Region,South West,1283,2018-02-16,7 -Region,South West,1314,2018-02-23,8 -Region,South West,997,2018-03-02,9 -Region,South West,1560,2018-03-09,10 -Region,South West,1414,2018-03-16,11 -Region,South West,1283,2018-03-23,12 -Region,South West,1047,2018-03-30,13 -Region,South West,1142,2018-04-06,14 -Region,South West,1293,2018-04-13,15 -Region,South West,1212,2018-04-20,16 -Region,South West,1117,2018-04-27,17 -Region,South West,1082,2018-05-04,18 -Region,South West,929,2018-05-11,19 -Region,South West,1068,2018-05-18,20 -Region,South West,997,2018-05-25,21 -Region,South West,830,2018-06-01,22 -Region,South West,1057,2018-06-08,23 -Region,South West,1085,2018-06-15,24 -Region,South West,1019,2018-06-22,25 -Region,South West,983,2018-06-29,26 -Region,South West,991,2018-07-06,27 -Region,South West,1025,2018-07-13,28 -Region,South West,971,2018-07-20,29 -Region,South West,941,2018-07-27,30 -Region,South West,957,2018-08-03,31 -Region,South West,997,2018-08-10,32 -Region,South West,902,2018-08-17,33 -Region,South West,900,2018-08-24,34 -Region,South West,845,2018-08-31,35 -Region,South West,1000,2018-09-07,36 -Region,South West,986,2018-09-14,37 -Region,South West,986,2018-09-21,38 -Region,South West,965,2018-09-28,39 -Region,South West,1020,2018-10-05,40 -Region,South West,1043,2018-10-12,41 -Region,South West,1088,2018-10-19,42 -Region,South West,1004,2018-10-26,43 -Region,South West,988,2018-11-02,44 -Region,South West,1106,2018-11-09,45 -Region,South West,1077,2018-11-16,46 -Region,South West,1062,2018-11-23,47 -Region,South West,1040,2018-11-30,48 -Region,South West,1076,2018-12-07,49 -Region,South West,1106,2018-12-14,50 -Region,South West,1225,2018-12-21,51 -Region,South West,756,2018-12-28,52 -Region,Wales,783,2018-01-05,1 -Region,Wales,904,2018-01-12,2 -Region,Wales,885,2018-01-19,3 -Region,Wales,850,2018-01-26,4 -Region,Wales,815,2018-02-02,5 -Region,Wales,801,2018-02-09,6 -Region,Wales,803,2018-02-16,7 -Region,Wales,789,2018-02-23,8 -Region,Wales,634,2018-03-02,9 -Region,Wales,896,2018-03-09,10 -Region,Wales,918,2018-03-16,11 -Region,Wales,774,2018-03-23,12 -Region,Wales,633,2018-03-30,13 -Region,Wales,730,2018-04-06,14 -Region,Wales,743,2018-04-13,15 -Region,Wales,688,2018-04-20,16 -Region,Wales,614,2018-04-27,17 -Region,Wales,633,2018-05-04,18 -Region,Wales,530,2018-05-11,19 -Region,Wales,667,2018-05-18,20 -Region,Wales,603,2018-05-25,21 -Region,Wales,538,2018-06-01,22 -Region,Wales,607,2018-06-08,23 -Region,Wales,561,2018-06-15,24 -Region,Wales,562,2018-06-22,25 -Region,Wales,599,2018-06-29,26 -Region,Wales,625,2018-07-06,27 -Region,Wales,583,2018-07-13,28 -Region,Wales,548,2018-07-20,29 -Region,Wales,560,2018-07-27,30 -Region,Wales,574,2018-08-03,31 -Region,Wales,537,2018-08-10,32 -Region,Wales,518,2018-08-17,33 -Region,Wales,565,2018-08-24,34 -Region,Wales,511,2018-08-31,35 -Region,Wales,594,2018-09-07,36 -Region,Wales,579,2018-09-14,37 -Region,Wales,598,2018-09-21,38 -Region,Wales,560,2018-09-28,39 -Region,Wales,595,2018-10-05,40 -Region,Wales,606,2018-10-12,41 -Region,Wales,640,2018-10-19,42 -Region,Wales,633,2018-10-26,43 -Region,Wales,604,2018-11-02,44 -Region,Wales,642,2018-11-09,45 -Region,Wales,656,2018-11-16,46 -Region,Wales,657,2018-11-23,47 -Region,Wales,673,2018-11-30,48 -Region,Wales,674,2018-12-07,49 -Region,Wales,708,2018-12-14,50 -Region,Wales,724,2018-12-21,51 -Region,Wales,461,2018-12-28,52 -Total deaths,all ages,10955,2019-01-04,1 -Total deaths,all ages,12609,2019-01-11,2 -Total deaths,all ages,11860,2019-01-18,3 -Total deaths,all ages,11740,2019-01-25,4 -Total deaths,all ages,11297,2019-02-01,5 -Total deaths,all ages,11660,2019-02-08,6 -Total deaths,all ages,11824,2019-02-15,7 -Total deaths,all ages,11295,2019-02-22,8 -Total deaths,all ages,11044,2019-03-01,9 -Total deaths,all ages,10898,2019-03-08,10 -Total deaths,all ages,10567,2019-03-15,11 -Total deaths,all ages,10402,2019-03-22,12 -Total deaths,all ages,9867,2019-03-29,13 -Total deaths,all ages,10126,2019-04-05,14 -Total deaths,all ages,10291,2019-04-12,15 -Total deaths,all ages,9025,2019-04-19,16 -Total deaths,all ages,10059,2019-04-26,17 -Total deaths,all ages,11207,2019-05-03,18 -Total deaths,all ages,9055,2019-05-10,19 -Total deaths,all ages,10272,2019-05-17,20 -Total deaths,all ages,10284,2019-05-24,21 -Total deaths,all ages,8260,2019-05-31,22 -Total deaths,all ages,10140,2019-06-07,23 -Total deaths,all ages,9445,2019-06-14,24 -Total deaths,all ages,9458,2019-06-21,25 -Total deaths,all ages,9511,2019-06-28,26 -Total deaths,all ages,9062,2019-07-05,27 -Total deaths,all ages,9179,2019-07-12,28 -Total deaths,all ages,9080,2019-07-19,29 -Total deaths,all ages,9112,2019-07-26,30 -Total deaths,all ages,9271,2019-08-02,31 -Total deaths,all ages,9122,2019-08-09,32 -Total deaths,all ages,9093,2019-08-16,33 -Total deaths,all ages,8994,2019-08-23,34 -Total deaths,all ages,8242,2019-08-30,35 -Total deaths,all ages,9695,2019-09-06,36 -Total deaths,all ages,9513,2019-09-13,37 -Total deaths,all ages,9440,2019-09-20,38 -Total deaths,all ages,9517,2019-09-27,39 -Total deaths,all ages,9799,2019-10-04,40 -Total deaths,all ages,9973,2019-10-11,41 -Total deaths,all ages,10156,2019-10-18,42 -Total deaths,all ages,10021,2019-10-25,43 -Total deaths,all ages,10164,2019-11-01,44 -Total deaths,all ages,10697,2019-11-08,45 -Total deaths,all ages,10650,2019-11-15,46 -Total deaths,all ages,10882,2019-11-22,47 -Total deaths,all ages,10958,2019-11-29,48 -Total deaths,all ages,10816,2019-12-06,49 -Total deaths,all ages,11188,2019-12-13,50 -Total deaths,all ages,11926,2019-12-20,51 -Total deaths,all ages,7533,2019-12-27,52 -Total deaths,average of same week over 5 years,12273,2019-01-04,1 -Total deaths,average of same week over 5 years,13670,2019-01-11,2 -Total deaths,average of same week over 5 years,13056,2019-01-18,3 -Total deaths,average of same week over 5 years,12486,2019-01-25,4 -Total deaths,average of same week over 5 years,11998,2019-02-01,5 -Total deaths,average of same week over 5 years,11623,2019-02-08,6 -Total deaths,average of same week over 5 years,11301,2019-02-15,7 -Total deaths,average of same week over 5 years,11383,2019-02-22,8 -Total deaths,average of same week over 5 years,11051,2019-03-01,9 -Total deaths,average of same week over 5 years,11286,2019-03-08,10 -Total deaths,average of same week over 5 years,11095,2019-03-15,11 -Total deaths,average of same week over 5 years,10456,2019-03-22,12 -Total deaths,average of same week over 5 years,10076,2019-03-29,13 -Total deaths,average of same week over 5 years,10268,2019-04-05,14 -Total deaths,average of same week over 5 years,10362,2019-04-12,15 -Total deaths,average of same week over 5 years,10291,2019-04-19,16 -Total deaths,average of same week over 5 years,10317,2019-04-26,17 -Total deaths,average of same week over 5 years,9804,2019-05-03,18 -Total deaths,average of same week over 5 years,9488,2019-05-10,19 -Total deaths,average of same week over 5 years,10036,2019-05-17,20 -Total deaths,average of same week over 5 years,9747,2019-05-24,21 -Total deaths,average of same week over 5 years,8125,2019-05-31,22 -Total deaths,average of same week over 5 years,9860,2019-06-07,23 -Total deaths,average of same week over 5 years,9408,2019-06-14,24 -Total deaths,average of same week over 5 years,9302,2019-06-21,25 -Total deaths,average of same week over 5 years,9177,2019-06-28,26 -Total deaths,average of same week over 5 years,9123,2019-07-05,27 -Total deaths,average of same week over 5 years,9170,2019-07-12,28 -Total deaths,average of same week over 5 years,9100,2019-07-19,29 -Total deaths,average of same week over 5 years,9023,2019-07-26,30 -Total deaths,average of same week over 5 years,8963,2019-08-02,31 -Total deaths,average of same week over 5 years,9026,2019-08-09,32 -Total deaths,average of same week over 5 years,9025,2019-08-16,33 -Total deaths,average of same week over 5 years,9113,2019-08-23,34 -Total deaths,average of same week over 5 years,8197,2019-08-30,35 -Total deaths,average of same week over 5 years,9177,2019-09-06,36 -Total deaths,average of same week over 5 years,9260,2019-09-13,37 -Total deaths,average of same week over 5 years,9197,2019-09-20,38 -Total deaths,average of same week over 5 years,9283,2019-09-27,39 -Total deaths,average of same week over 5 years,9450,2019-10-04,40 -Total deaths,average of same week over 5 years,9651,2019-10-11,41 -Total deaths,average of same week over 5 years,9726,2019-10-18,42 -Total deaths,average of same week over 5 years,9674,2019-10-25,43 -Total deaths,average of same week over 5 years,9777,2019-11-01,44 -Total deaths,average of same week over 5 years,10142,2019-11-08,45 -Total deaths,average of same week over 5 years,10226,2019-11-15,46 -Total deaths,average of same week over 5 years,10124,2019-11-22,47 -Total deaths,average of same week over 5 years,10164,2019-11-29,48 -Total deaths,average of same week over 5 years,10585,2019-12-06,49 -Total deaths,average of same week over 5 years,10622,2019-12-13,50 -Total deaths,average of same week over 5 years,11499,2019-12-20,51 -Total deaths,average of same week over 5 years,8014,2019-12-27,52 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1736,2019-01-04,1 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),2214,2019-01-11,2 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1972,2019-01-18,3 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1942,2019-01-25,4 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1931,2019-02-01,5 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1918,2019-02-08,6 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1931,2019-02-15,7 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1890,2019-02-22,8 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1786,2019-03-01,9 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1657,2019-03-08,10 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1559,2019-03-15,11 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1486,2019-03-22,12 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1314,2019-03-29,13 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1412,2019-04-05,14 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1396,2019-04-12,15 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1262,2019-04-19,16 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1406,2019-04-26,17 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1581,2019-05-03,18 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1239,2019-05-10,19 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1355,2019-05-17,20 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1324,2019-05-24,21 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1105,2019-05-31,22 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1290,2019-06-07,23 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1134,2019-06-14,24 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1134,2019-06-21,25 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1143,2019-06-28,26 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1076,2019-07-05,27 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1081,2019-07-12,28 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1024,2019-07-19,29 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),996,2019-07-26,30 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1116,2019-08-02,31 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1048,2019-08-09,32 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1033,2019-08-16,33 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),981,2019-08-23,34 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),854,2019-08-30,35 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1125,2019-09-06,36 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1028,2019-09-13,37 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1056,2019-09-20,38 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1045,2019-09-27,39 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1114,2019-10-04,40 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1209,2019-10-11,41 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1236,2019-10-18,42 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1252,2019-10-25,43 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1333,2019-11-01,44 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1363,2019-11-08,45 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1451,2019-11-15,46 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1423,2019-11-22,47 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1566,2019-11-29,48 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1505,2019-12-06,49 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1637,2019-12-13,50 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1839,2019-12-20,51 -All respiratory diseases (ICD-10 J00-J99) ICD-10,v 2013 (IRIS),1166,2019-12-27,52 -Persons,Under 1 year,43,2019-01-04,1 -Persons,Under 1 year,50,2019-01-11,2 -Persons,Under 1 year,59,2019-01-18,3 -Persons,Under 1 year,42,2019-01-25,4 -Persons,Under 1 year,57,2019-02-01,5 -Persons,Under 1 year,54,2019-02-08,6 -Persons,Under 1 year,49,2019-02-15,7 -Persons,Under 1 year,59,2019-02-22,8 -Persons,Under 1 year,52,2019-03-01,9 -Persons,Under 1 year,45,2019-03-08,10 -Persons,Under 1 year,57,2019-03-15,11 -Persons,Under 1 year,49,2019-03-22,12 -Persons,Under 1 year,45,2019-03-29,13 -Persons,Under 1 year,41,2019-04-05,14 -Persons,Under 1 year,47,2019-04-12,15 -Persons,Under 1 year,48,2019-04-19,16 -Persons,Under 1 year,34,2019-04-26,17 -Persons,Under 1 year,46,2019-05-03,18 -Persons,Under 1 year,56,2019-05-10,19 -Persons,Under 1 year,44,2019-05-17,20 -Persons,Under 1 year,51,2019-05-24,21 -Persons,Under 1 year,45,2019-05-31,22 -Persons,Under 1 year,48,2019-06-07,23 -Persons,Under 1 year,46,2019-06-14,24 -Persons,Under 1 year,46,2019-06-21,25 -Persons,Under 1 year,39,2019-06-28,26 -Persons,Under 1 year,33,2019-07-05,27 -Persons,Under 1 year,44,2019-07-12,28 -Persons,Under 1 year,45,2019-07-19,29 -Persons,Under 1 year,57,2019-07-26,30 -Persons,Under 1 year,57,2019-08-02,31 -Persons,Under 1 year,57,2019-08-09,32 -Persons,Under 1 year,54,2019-08-16,33 -Persons,Under 1 year,47,2019-08-23,34 -Persons,Under 1 year,45,2019-08-30,35 -Persons,Under 1 year,54,2019-09-06,36 -Persons,Under 1 year,60,2019-09-13,37 -Persons,Under 1 year,45,2019-09-20,38 -Persons,Under 1 year,55,2019-09-27,39 -Persons,Under 1 year,68,2019-10-04,40 -Persons,Under 1 year,46,2019-10-11,41 -Persons,Under 1 year,54,2019-10-18,42 -Persons,Under 1 year,49,2019-10-25,43 -Persons,Under 1 year,45,2019-11-01,44 -Persons,Under 1 year,52,2019-11-08,45 -Persons,Under 1 year,46,2019-11-15,46 -Persons,Under 1 year,57,2019-11-22,47 -Persons,Under 1 year,56,2019-11-29,48 -Persons,Under 1 year,50,2019-12-06,49 -Persons,Under 1 year,52,2019-12-13,50 -Persons,Under 1 year,53,2019-12-20,51 -Persons,Under 1 year,34,2019-12-27,52 -Persons,01-14,15,2019-01-04,1 -Persons,01-14,20,2019-01-11,2 -Persons,01-14,29,2019-01-18,3 -Persons,01-14,22,2019-01-25,4 -Persons,01-14,15,2019-02-01,5 -Persons,01-14,25,2019-02-08,6 -Persons,01-14,17,2019-02-15,7 -Persons,01-14,30,2019-02-22,8 -Persons,01-14,20,2019-03-01,9 -Persons,01-14,16,2019-03-08,10 -Persons,01-14,24,2019-03-15,11 -Persons,01-14,24,2019-03-22,12 -Persons,01-14,17,2019-03-29,13 -Persons,01-14,13,2019-04-05,14 -Persons,01-14,23,2019-04-12,15 -Persons,01-14,21,2019-04-19,16 -Persons,01-14,18,2019-04-26,17 -Persons,01-14,18,2019-05-03,18 -Persons,01-14,17,2019-05-10,19 -Persons,01-14,14,2019-05-17,20 -Persons,01-14,21,2019-05-24,21 -Persons,01-14,16,2019-05-31,22 -Persons,01-14,18,2019-06-07,23 -Persons,01-14,18,2019-06-14,24 -Persons,01-14,20,2019-06-21,25 -Persons,01-14,21,2019-06-28,26 -Persons,01-14,26,2019-07-05,27 -Persons,01-14,16,2019-07-12,28 -Persons,01-14,14,2019-07-19,29 -Persons,01-14,14,2019-07-26,30 -Persons,01-14,11,2019-08-02,31 -Persons,01-14,12,2019-08-09,32 -Persons,01-14,24,2019-08-16,33 -Persons,01-14,8,2019-08-23,34 -Persons,01-14,16,2019-08-30,35 -Persons,01-14,19,2019-09-06,36 -Persons,01-14,12,2019-09-13,37 -Persons,01-14,18,2019-09-20,38 -Persons,01-14,14,2019-09-27,39 -Persons,01-14,15,2019-10-04,40 -Persons,01-14,16,2019-10-11,41 -Persons,01-14,14,2019-10-18,42 -Persons,01-14,14,2019-10-25,43 -Persons,01-14,19,2019-11-01,44 -Persons,01-14,7,2019-11-08,45 -Persons,01-14,19,2019-11-15,46 -Persons,01-14,19,2019-11-22,47 -Persons,01-14,14,2019-11-29,48 -Persons,01-14,17,2019-12-06,49 -Persons,01-14,32,2019-12-13,50 -Persons,01-14,19,2019-12-20,51 -Persons,01-14,13,2019-12-27,52 -Persons,15-44,215,2019-01-04,1 -Persons,15-44,280,2019-01-11,2 -Persons,15-44,319,2019-01-18,3 -Persons,15-44,339,2019-01-25,4 -Persons,15-44,307,2019-02-01,5 -Persons,15-44,267,2019-02-08,6 -Persons,15-44,305,2019-02-15,7 -Persons,15-44,276,2019-02-22,8 -Persons,15-44,288,2019-03-01,9 -Persons,15-44,303,2019-03-08,10 -Persons,15-44,299,2019-03-15,11 -Persons,15-44,293,2019-03-22,12 -Persons,15-44,289,2019-03-29,13 -Persons,15-44,296,2019-04-05,14 -Persons,15-44,288,2019-04-12,15 -Persons,15-44,251,2019-04-19,16 -Persons,15-44,273,2019-04-26,17 -Persons,15-44,297,2019-05-03,18 -Persons,15-44,262,2019-05-10,19 -Persons,15-44,304,2019-05-17,20 -Persons,15-44,309,2019-05-24,21 -Persons,15-44,239,2019-05-31,22 -Persons,15-44,306,2019-06-07,23 -Persons,15-44,298,2019-06-14,24 -Persons,15-44,279,2019-06-21,25 -Persons,15-44,273,2019-06-28,26 -Persons,15-44,255,2019-07-05,27 -Persons,15-44,259,2019-07-12,28 -Persons,15-44,279,2019-07-19,29 -Persons,15-44,267,2019-07-26,30 -Persons,15-44,265,2019-08-02,31 -Persons,15-44,245,2019-08-09,32 -Persons,15-44,277,2019-08-16,33 -Persons,15-44,264,2019-08-23,34 -Persons,15-44,224,2019-08-30,35 -Persons,15-44,268,2019-09-06,36 -Persons,15-44,297,2019-09-13,37 -Persons,15-44,264,2019-09-20,38 -Persons,15-44,269,2019-09-27,39 -Persons,15-44,325,2019-10-04,40 -Persons,15-44,302,2019-10-11,41 -Persons,15-44,303,2019-10-18,42 -Persons,15-44,281,2019-10-25,43 -Persons,15-44,289,2019-11-01,44 -Persons,15-44,314,2019-11-08,45 -Persons,15-44,271,2019-11-15,46 -Persons,15-44,283,2019-11-22,47 -Persons,15-44,312,2019-11-29,48 -Persons,15-44,315,2019-12-06,49 -Persons,15-44,315,2019-12-13,50 -Persons,15-44,368,2019-12-20,51 -Persons,15-44,148,2019-12-27,52 -Persons,45-64,1199,2019-01-04,1 -Persons,45-64,1419,2019-01-11,2 -Persons,45-64,1373,2019-01-18,3 -Persons,45-64,1438,2019-01-25,4 -Persons,45-64,1367,2019-02-01,5 -Persons,45-64,1387,2019-02-08,6 -Persons,45-64,1372,2019-02-15,7 -Persons,45-64,1395,2019-02-22,8 -Persons,45-64,1264,2019-03-01,9 -Persons,45-64,1342,2019-03-08,10 -Persons,45-64,1311,2019-03-15,11 -Persons,45-64,1249,2019-03-22,12 -Persons,45-64,1222,2019-03-29,13 -Persons,45-64,1232,2019-04-05,14 -Persons,45-64,1265,2019-04-12,15 -Persons,45-64,1100,2019-04-19,16 -Persons,45-64,1207,2019-04-26,17 -Persons,45-64,1334,2019-05-03,18 -Persons,45-64,1094,2019-05-10,19 -Persons,45-64,1274,2019-05-17,20 -Persons,45-64,1262,2019-05-24,21 -Persons,45-64,991,2019-05-31,22 -Persons,45-64,1223,2019-06-07,23 -Persons,45-64,1149,2019-06-14,24 -Persons,45-64,1150,2019-06-21,25 -Persons,45-64,1214,2019-06-28,26 -Persons,45-64,1112,2019-07-05,27 -Persons,45-64,1140,2019-07-12,28 -Persons,45-64,1136,2019-07-19,29 -Persons,45-64,1117,2019-07-26,30 -Persons,45-64,1123,2019-08-02,31 -Persons,45-64,1095,2019-08-09,32 -Persons,45-64,1244,2019-08-16,33 -Persons,45-64,1127,2019-08-23,34 -Persons,45-64,1026,2019-08-30,35 -Persons,45-64,1199,2019-09-06,36 -Persons,45-64,1169,2019-09-13,37 -Persons,45-64,1174,2019-09-20,38 -Persons,45-64,1197,2019-09-27,39 -Persons,45-64,1189,2019-10-04,40 -Persons,45-64,1137,2019-10-11,41 -Persons,45-64,1154,2019-10-18,42 -Persons,45-64,1198,2019-10-25,43 -Persons,45-64,1196,2019-11-01,44 -Persons,45-64,1236,2019-11-08,45 -Persons,45-64,1254,2019-11-15,46 -Persons,45-64,1225,2019-11-22,47 -Persons,45-64,1237,2019-11-29,48 -Persons,45-64,1275,2019-12-06,49 -Persons,45-64,1313,2019-12-13,50 -Persons,45-64,1316,2019-12-20,51 -Persons,45-64,773,2019-12-27,52 -Persons,65-74,1766,2019-01-04,1 -Persons,65-74,2179,2019-01-11,2 -Persons,65-74,2004,2019-01-18,3 -Persons,65-74,1936,2019-01-25,4 -Persons,65-74,1852,2019-02-01,5 -Persons,65-74,1955,2019-02-08,6 -Persons,65-74,1911,2019-02-15,7 -Persons,65-74,1824,2019-02-22,8 -Persons,65-74,1826,2019-03-01,9 -Persons,65-74,1857,2019-03-08,10 -Persons,65-74,1718,2019-03-15,11 -Persons,65-74,1713,2019-03-22,12 -Persons,65-74,1643,2019-03-29,13 -Persons,65-74,1614,2019-04-05,14 -Persons,65-74,1712,2019-04-12,15 -Persons,65-74,1446,2019-04-19,16 -Persons,65-74,1730,2019-04-26,17 -Persons,65-74,1869,2019-05-03,18 -Persons,65-74,1513,2019-05-10,19 -Persons,65-74,1650,2019-05-17,20 -Persons,65-74,1765,2019-05-24,21 -Persons,65-74,1382,2019-05-31,22 -Persons,65-74,1741,2019-06-07,23 -Persons,65-74,1658,2019-06-14,24 -Persons,65-74,1625,2019-06-21,25 -Persons,65-74,1605,2019-06-28,26 -Persons,65-74,1561,2019-07-05,27 -Persons,65-74,1564,2019-07-12,28 -Persons,65-74,1500,2019-07-19,29 -Persons,65-74,1598,2019-07-26,30 -Persons,65-74,1597,2019-08-02,31 -Persons,65-74,1578,2019-08-09,32 -Persons,65-74,1573,2019-08-16,33 -Persons,65-74,1582,2019-08-23,34 -Persons,65-74,1419,2019-08-30,35 -Persons,65-74,1643,2019-09-06,36 -Persons,65-74,1617,2019-09-13,37 -Persons,65-74,1592,2019-09-20,38 -Persons,65-74,1547,2019-09-27,39 -Persons,65-74,1665,2019-10-04,40 -Persons,65-74,1595,2019-10-11,41 -Persons,65-74,1628,2019-10-18,42 -Persons,65-74,1663,2019-10-25,43 -Persons,65-74,1663,2019-11-01,44 -Persons,65-74,1676,2019-11-08,45 -Persons,65-74,1673,2019-11-15,46 -Persons,65-74,1743,2019-11-22,47 -Persons,65-74,1751,2019-11-29,48 -Persons,65-74,1689,2019-12-06,49 -Persons,65-74,1793,2019-12-13,50 -Persons,65-74,1903,2019-12-20,51 -Persons,65-74,1185,2019-12-27,52 -Persons,75-84,3078,2019-01-04,1 -Persons,75-84,3590,2019-01-11,2 -Persons,75-84,3414,2019-01-18,3 -Persons,75-84,3266,2019-01-25,4 -Persons,75-84,3126,2019-02-01,5 -Persons,75-84,3251,2019-02-08,6 -Persons,75-84,3392,2019-02-15,7 -Persons,75-84,3169,2019-02-22,8 -Persons,75-84,3117,2019-03-01,9 -Persons,75-84,3042,2019-03-08,10 -Persons,75-84,2933,2019-03-15,11 -Persons,75-84,2948,2019-03-22,12 -Persons,75-84,2794,2019-03-29,13 -Persons,75-84,2937,2019-04-05,14 -Persons,75-84,2907,2019-04-12,15 -Persons,75-84,2547,2019-04-19,16 -Persons,75-84,2811,2019-04-26,17 -Persons,75-84,3207,2019-05-03,18 -Persons,75-84,2579,2019-05-10,19 -Persons,75-84,2864,2019-05-17,20 -Persons,75-84,2946,2019-05-24,21 -Persons,75-84,2403,2019-05-31,22 -Persons,75-84,2846,2019-06-07,23 -Persons,75-84,2672,2019-06-14,24 -Persons,75-84,2711,2019-06-21,25 -Persons,75-84,2692,2019-06-28,26 -Persons,75-84,2650,2019-07-05,27 -Persons,75-84,2616,2019-07-12,28 -Persons,75-84,2610,2019-07-19,29 -Persons,75-84,2580,2019-07-26,30 -Persons,75-84,2664,2019-08-02,31 -Persons,75-84,2575,2019-08-09,32 -Persons,75-84,2530,2019-08-16,33 -Persons,75-84,2479,2019-08-23,34 -Persons,75-84,2319,2019-08-30,35 -Persons,75-84,2775,2019-09-06,36 -Persons,75-84,2654,2019-09-13,37 -Persons,75-84,2695,2019-09-20,38 -Persons,75-84,2760,2019-09-27,39 -Persons,75-84,2780,2019-10-04,40 -Persons,75-84,2869,2019-10-11,41 -Persons,75-84,2920,2019-10-18,42 -Persons,75-84,2799,2019-10-25,43 -Persons,75-84,2938,2019-11-01,44 -Persons,75-84,2998,2019-11-08,45 -Persons,75-84,3070,2019-11-15,46 -Persons,75-84,3163,2019-11-22,47 -Persons,75-84,3142,2019-11-29,48 -Persons,75-84,3078,2019-12-06,49 -Persons,75-84,3215,2019-12-13,50 -Persons,75-84,3299,2019-12-20,51 -Persons,75-84,2231,2019-12-27,52 -Persons,85+,4639,2019-01-04,1 -Persons,85+,5071,2019-01-11,2 -Persons,85+,4662,2019-01-18,3 -Persons,85+,4697,2019-01-25,4 -Persons,85+,4573,2019-02-01,5 -Persons,85+,4721,2019-02-08,6 -Persons,85+,4778,2019-02-15,7 -Persons,85+,4542,2019-02-22,8 -Persons,85+,4477,2019-03-01,9 -Persons,85+,4293,2019-03-08,10 -Persons,85+,4225,2019-03-15,11 -Persons,85+,4126,2019-03-22,12 -Persons,85+,3857,2019-03-29,13 -Persons,85+,3993,2019-04-05,14 -Persons,85+,4049,2019-04-12,15 -Persons,85+,3612,2019-04-19,16 -Persons,85+,3986,2019-04-26,17 -Persons,85+,4436,2019-05-03,18 -Persons,85+,3534,2019-05-10,19 -Persons,85+,4122,2019-05-17,20 -Persons,85+,3930,2019-05-24,21 -Persons,85+,3184,2019-05-31,22 -Persons,85+,3958,2019-06-07,23 -Persons,85+,3604,2019-06-14,24 -Persons,85+,3627,2019-06-21,25 -Persons,85+,3667,2019-06-28,26 -Persons,85+,3425,2019-07-05,27 -Persons,85+,3540,2019-07-12,28 -Persons,85+,3496,2019-07-19,29 -Persons,85+,3479,2019-07-26,30 -Persons,85+,3554,2019-08-02,31 -Persons,85+,3560,2019-08-09,32 -Persons,85+,3391,2019-08-16,33 -Persons,85+,3487,2019-08-23,34 -Persons,85+,3193,2019-08-30,35 -Persons,85+,3737,2019-09-06,36 -Persons,85+,3704,2019-09-13,37 -Persons,85+,3652,2019-09-20,38 -Persons,85+,3675,2019-09-27,39 -Persons,85+,3757,2019-10-04,40 -Persons,85+,4008,2019-10-11,41 -Persons,85+,4083,2019-10-18,42 -Persons,85+,4017,2019-10-25,43 -Persons,85+,4014,2019-11-01,44 -Persons,85+,4414,2019-11-08,45 -Persons,85+,4317,2019-11-15,46 -Persons,85+,4392,2019-11-22,47 -Persons,85+,4446,2019-11-29,48 -Persons,85+,4392,2019-12-06,49 -Persons,85+,4468,2019-12-13,50 -Persons,85+,4968,2019-12-20,51 -Persons,85+,3149,2019-12-27,52 -Males,Under 1 year,28,2019-01-04,1 -Males,Under 1 year,20,2019-01-11,2 -Males,Under 1 year,39,2019-01-18,3 -Males,Under 1 year,26,2019-01-25,4 -Males,Under 1 year,38,2019-02-01,5 -Males,Under 1 year,36,2019-02-08,6 -Males,Under 1 year,27,2019-02-15,7 -Males,Under 1 year,30,2019-02-22,8 -Males,Under 1 year,24,2019-03-01,9 -Males,Under 1 year,32,2019-03-08,10 -Males,Under 1 year,30,2019-03-15,11 -Males,Under 1 year,29,2019-03-22,12 -Males,Under 1 year,26,2019-03-29,13 -Males,Under 1 year,21,2019-04-05,14 -Males,Under 1 year,31,2019-04-12,15 -Males,Under 1 year,24,2019-04-19,16 -Males,Under 1 year,16,2019-04-26,17 -Males,Under 1 year,26,2019-05-03,18 -Males,Under 1 year,34,2019-05-10,19 -Males,Under 1 year,24,2019-05-17,20 -Males,Under 1 year,29,2019-05-24,21 -Males,Under 1 year,22,2019-05-31,22 -Males,Under 1 year,26,2019-06-07,23 -Males,Under 1 year,22,2019-06-14,24 -Males,Under 1 year,25,2019-06-21,25 -Males,Under 1 year,22,2019-06-28,26 -Males,Under 1 year,24,2019-07-05,27 -Males,Under 1 year,23,2019-07-12,28 -Males,Under 1 year,31,2019-07-19,29 -Males,Under 1 year,36,2019-07-26,30 -Males,Under 1 year,30,2019-08-02,31 -Males,Under 1 year,26,2019-08-09,32 -Males,Under 1 year,28,2019-08-16,33 -Males,Under 1 year,31,2019-08-23,34 -Males,Under 1 year,23,2019-08-30,35 -Males,Under 1 year,29,2019-09-06,36 -Males,Under 1 year,31,2019-09-13,37 -Males,Under 1 year,23,2019-09-20,38 -Males,Under 1 year,28,2019-09-27,39 -Males,Under 1 year,37,2019-10-04,40 -Males,Under 1 year,26,2019-10-11,41 -Males,Under 1 year,32,2019-10-18,42 -Males,Under 1 year,23,2019-10-25,43 -Males,Under 1 year,27,2019-11-01,44 -Males,Under 1 year,29,2019-11-08,45 -Males,Under 1 year,19,2019-11-15,46 -Males,Under 1 year,32,2019-11-22,47 -Males,Under 1 year,35,2019-11-29,48 -Males,Under 1 year,32,2019-12-06,49 -Males,Under 1 year,29,2019-12-13,50 -Males,Under 1 year,25,2019-12-20,51 -Males,Under 1 year,20,2019-12-27,52 -Males,01-14,5,2019-01-04,1 -Males,01-14,13,2019-01-11,2 -Males,01-14,14,2019-01-18,3 -Males,01-14,10,2019-01-25,4 -Males,01-14,10,2019-02-01,5 -Males,01-14,17,2019-02-08,6 -Males,01-14,8,2019-02-15,7 -Males,01-14,16,2019-02-22,8 -Males,01-14,10,2019-03-01,9 -Males,01-14,10,2019-03-08,10 -Males,01-14,11,2019-03-15,11 -Males,01-14,9,2019-03-22,12 -Males,01-14,8,2019-03-29,13 -Males,01-14,8,2019-04-05,14 -Males,01-14,14,2019-04-12,15 -Males,01-14,11,2019-04-19,16 -Males,01-14,9,2019-04-26,17 -Males,01-14,14,2019-05-03,18 -Males,01-14,9,2019-05-10,19 -Males,01-14,7,2019-05-17,20 -Males,01-14,12,2019-05-24,21 -Males,01-14,11,2019-05-31,22 -Males,01-14,9,2019-06-07,23 -Males,01-14,11,2019-06-14,24 -Males,01-14,11,2019-06-21,25 -Males,01-14,9,2019-06-28,26 -Males,01-14,17,2019-07-05,27 -Males,01-14,7,2019-07-12,28 -Males,01-14,10,2019-07-19,29 -Males,01-14,7,2019-07-26,30 -Males,01-14,6,2019-08-02,31 -Males,01-14,9,2019-08-09,32 -Males,01-14,13,2019-08-16,33 -Males,01-14,4,2019-08-23,34 -Males,01-14,10,2019-08-30,35 -Males,01-14,9,2019-09-06,36 -Males,01-14,3,2019-09-13,37 -Males,01-14,11,2019-09-20,38 -Males,01-14,8,2019-09-27,39 -Males,01-14,7,2019-10-04,40 -Males,01-14,10,2019-10-11,41 -Males,01-14,10,2019-10-18,42 -Males,01-14,6,2019-10-25,43 -Males,01-14,9,2019-11-01,44 -Males,01-14,3,2019-11-08,45 -Males,01-14,9,2019-11-15,46 -Males,01-14,9,2019-11-22,47 -Males,01-14,10,2019-11-29,48 -Males,01-14,11,2019-12-06,49 -Males,01-14,16,2019-12-13,50 -Males,01-14,9,2019-12-20,51 -Males,01-14,6,2019-12-27,52 -Males,15-44,128,2019-01-04,1 -Males,15-44,168,2019-01-11,2 -Males,15-44,211,2019-01-18,3 -Males,15-44,225,2019-01-25,4 -Males,15-44,208,2019-02-01,5 -Males,15-44,152,2019-02-08,6 -Males,15-44,201,2019-02-15,7 -Males,15-44,159,2019-02-22,8 -Males,15-44,182,2019-03-01,9 -Males,15-44,197,2019-03-08,10 -Males,15-44,194,2019-03-15,11 -Males,15-44,200,2019-03-22,12 -Males,15-44,205,2019-03-29,13 -Males,15-44,184,2019-04-05,14 -Males,15-44,194,2019-04-12,15 -Males,15-44,146,2019-04-19,16 -Males,15-44,171,2019-04-26,17 -Males,15-44,207,2019-05-03,18 -Males,15-44,159,2019-05-10,19 -Males,15-44,192,2019-05-17,20 -Males,15-44,193,2019-05-24,21 -Males,15-44,147,2019-05-31,22 -Males,15-44,199,2019-06-07,23 -Males,15-44,198,2019-06-14,24 -Males,15-44,196,2019-06-21,25 -Males,15-44,186,2019-06-28,26 -Males,15-44,170,2019-07-05,27 -Males,15-44,174,2019-07-12,28 -Males,15-44,180,2019-07-19,29 -Males,15-44,165,2019-07-26,30 -Males,15-44,164,2019-08-02,31 -Males,15-44,156,2019-08-09,32 -Males,15-44,197,2019-08-16,33 -Males,15-44,169,2019-08-23,34 -Males,15-44,138,2019-08-30,35 -Males,15-44,183,2019-09-06,36 -Males,15-44,178,2019-09-13,37 -Males,15-44,165,2019-09-20,38 -Males,15-44,174,2019-09-27,39 -Males,15-44,218,2019-10-04,40 -Males,15-44,208,2019-10-11,41 -Males,15-44,193,2019-10-18,42 -Males,15-44,186,2019-10-25,43 -Males,15-44,176,2019-11-01,44 -Males,15-44,199,2019-11-08,45 -Males,15-44,172,2019-11-15,46 -Males,15-44,168,2019-11-22,47 -Males,15-44,209,2019-11-29,48 -Males,15-44,204,2019-12-06,49 -Males,15-44,187,2019-12-13,50 -Males,15-44,229,2019-12-20,51 -Males,15-44,85,2019-12-27,52 -Males,45-64,693,2019-01-04,1 -Males,45-64,852,2019-01-11,2 -Males,45-64,831,2019-01-18,3 -Males,45-64,860,2019-01-25,4 -Males,45-64,805,2019-02-01,5 -Males,45-64,869,2019-02-08,6 -Males,45-64,799,2019-02-15,7 -Males,45-64,850,2019-02-22,8 -Males,45-64,745,2019-03-01,9 -Males,45-64,839,2019-03-08,10 -Males,45-64,788,2019-03-15,11 -Males,45-64,774,2019-03-22,12 -Males,45-64,728,2019-03-29,13 -Males,45-64,725,2019-04-05,14 -Males,45-64,783,2019-04-12,15 -Males,45-64,644,2019-04-19,16 -Males,45-64,724,2019-04-26,17 -Males,45-64,821,2019-05-03,18 -Males,45-64,624,2019-05-10,19 -Males,45-64,795,2019-05-17,20 -Males,45-64,751,2019-05-24,21 -Males,45-64,565,2019-05-31,22 -Males,45-64,757,2019-06-07,23 -Males,45-64,673,2019-06-14,24 -Males,45-64,714,2019-06-21,25 -Males,45-64,738,2019-06-28,26 -Males,45-64,637,2019-07-05,27 -Males,45-64,698,2019-07-12,28 -Males,45-64,683,2019-07-19,29 -Males,45-64,660,2019-07-26,30 -Males,45-64,702,2019-08-02,31 -Males,45-64,662,2019-08-09,32 -Males,45-64,743,2019-08-16,33 -Males,45-64,681,2019-08-23,34 -Males,45-64,629,2019-08-30,35 -Males,45-64,715,2019-09-06,36 -Males,45-64,709,2019-09-13,37 -Males,45-64,716,2019-09-20,38 -Males,45-64,704,2019-09-27,39 -Males,45-64,705,2019-10-04,40 -Males,45-64,686,2019-10-11,41 -Males,45-64,676,2019-10-18,42 -Males,45-64,699,2019-10-25,43 -Males,45-64,682,2019-11-01,44 -Males,45-64,738,2019-11-08,45 -Males,45-64,739,2019-11-15,46 -Males,45-64,724,2019-11-22,47 -Males,45-64,739,2019-11-29,48 -Males,45-64,756,2019-12-06,49 -Males,45-64,746,2019-12-13,50 -Males,45-64,768,2019-12-20,51 -Males,45-64,448,2019-12-27,52 -Males,65-74,992,2019-01-04,1 -Males,65-74,1265,2019-01-11,2 -Males,65-74,1131,2019-01-18,3 -Males,65-74,1154,2019-01-25,4 -Males,65-74,1045,2019-02-01,5 -Males,65-74,1100,2019-02-08,6 -Males,65-74,1117,2019-02-15,7 -Males,65-74,1088,2019-02-22,8 -Males,65-74,1059,2019-03-01,9 -Males,65-74,1112,2019-03-08,10 -Males,65-74,1043,2019-03-15,11 -Males,65-74,965,2019-03-22,12 -Males,65-74,978,2019-03-29,13 -Males,65-74,930,2019-04-05,14 -Males,65-74,995,2019-04-12,15 -Males,65-74,852,2019-04-19,16 -Males,65-74,970,2019-04-26,17 -Males,65-74,1089,2019-05-03,18 -Males,65-74,868,2019-05-10,19 -Males,65-74,977,2019-05-17,20 -Males,65-74,1044,2019-05-24,21 -Males,65-74,784,2019-05-31,22 -Males,65-74,1015,2019-06-07,23 -Males,65-74,963,2019-06-14,24 -Males,65-74,963,2019-06-21,25 -Males,65-74,969,2019-06-28,26 -Males,65-74,910,2019-07-05,27 -Males,65-74,900,2019-07-12,28 -Males,65-74,863,2019-07-19,29 -Males,65-74,951,2019-07-26,30 -Males,65-74,921,2019-08-02,31 -Males,65-74,938,2019-08-09,32 -Males,65-74,927,2019-08-16,33 -Males,65-74,942,2019-08-23,34 -Males,65-74,846,2019-08-30,35 -Males,65-74,955,2019-09-06,36 -Males,65-74,946,2019-09-13,37 -Males,65-74,918,2019-09-20,38 -Males,65-74,922,2019-09-27,39 -Males,65-74,950,2019-10-04,40 -Males,65-74,966,2019-10-11,41 -Males,65-74,937,2019-10-18,42 -Males,65-74,963,2019-10-25,43 -Males,65-74,980,2019-11-01,44 -Males,65-74,991,2019-11-08,45 -Males,65-74,980,2019-11-15,46 -Males,65-74,1042,2019-11-22,47 -Males,65-74,1008,2019-11-29,48 -Males,65-74,985,2019-12-06,49 -Males,65-74,1028,2019-12-13,50 -Males,65-74,1095,2019-12-20,51 -Males,65-74,666,2019-12-27,52 -Males,75-84,1590,2019-01-04,1 -Males,75-84,1857,2019-01-11,2 -Males,75-84,1837,2019-01-18,3 -Males,75-84,1766,2019-01-25,4 -Males,75-84,1664,2019-02-01,5 -Males,75-84,1718,2019-02-08,6 -Males,75-84,1776,2019-02-15,7 -Males,75-84,1696,2019-02-22,8 -Males,75-84,1656,2019-03-01,9 -Males,75-84,1664,2019-03-08,10 -Males,75-84,1531,2019-03-15,11 -Males,75-84,1596,2019-03-22,12 -Males,75-84,1470,2019-03-29,13 -Males,75-84,1589,2019-04-05,14 -Males,75-84,1543,2019-04-12,15 -Males,75-84,1420,2019-04-19,16 -Males,75-84,1543,2019-04-26,17 -Males,75-84,1709,2019-05-03,18 -Males,75-84,1362,2019-05-10,19 -Males,75-84,1528,2019-05-17,20 -Males,75-84,1564,2019-05-24,21 -Males,75-84,1247,2019-05-31,22 -Males,75-84,1599,2019-06-07,23 -Males,75-84,1464,2019-06-14,24 -Males,75-84,1480,2019-06-21,25 -Males,75-84,1509,2019-06-28,26 -Males,75-84,1420,2019-07-05,27 -Males,75-84,1394,2019-07-12,28 -Males,75-84,1380,2019-07-19,29 -Males,75-84,1374,2019-07-26,30 -Males,75-84,1445,2019-08-02,31 -Males,75-84,1410,2019-08-09,32 -Males,75-84,1371,2019-08-16,33 -Males,75-84,1357,2019-08-23,34 -Males,75-84,1240,2019-08-30,35 -Males,75-84,1487,2019-09-06,36 -Males,75-84,1421,2019-09-13,37 -Males,75-84,1412,2019-09-20,38 -Males,75-84,1514,2019-09-27,39 -Males,75-84,1489,2019-10-04,40 -Males,75-84,1525,2019-10-11,41 -Males,75-84,1551,2019-10-18,42 -Males,75-84,1550,2019-10-25,43 -Males,75-84,1501,2019-11-01,44 -Males,75-84,1616,2019-11-08,45 -Males,75-84,1635,2019-11-15,46 -Males,75-84,1724,2019-11-22,47 -Males,75-84,1746,2019-11-29,48 -Males,75-84,1639,2019-12-06,49 -Males,75-84,1711,2019-12-13,50 -Males,75-84,1733,2019-12-20,51 -Males,75-84,1123,2019-12-27,52 -Males,85+,1758,2019-01-04,1 -Males,85+,1997,2019-01-11,2 -Males,85+,1828,2019-01-18,3 -Males,85+,1862,2019-01-25,4 -Males,85+,1834,2019-02-01,5 -Males,85+,1895,2019-02-08,6 -Males,85+,1932,2019-02-15,7 -Males,85+,1804,2019-02-22,8 -Males,85+,1787,2019-03-01,9 -Males,85+,1689,2019-03-08,10 -Males,85+,1633,2019-03-15,11 -Males,85+,1630,2019-03-22,12 -Males,85+,1501,2019-03-29,13 -Males,85+,1592,2019-04-05,14 -Males,85+,1629,2019-04-12,15 -Males,85+,1430,2019-04-19,16 -Males,85+,1588,2019-04-26,17 -Males,85+,1725,2019-05-03,18 -Males,85+,1411,2019-05-10,19 -Males,85+,1685,2019-05-17,20 -Males,85+,1532,2019-05-24,21 -Males,85+,1287,2019-05-31,22 -Males,85+,1614,2019-06-07,23 -Males,85+,1442,2019-06-14,24 -Males,85+,1427,2019-06-21,25 -Males,85+,1503,2019-06-28,26 -Males,85+,1318,2019-07-05,27 -Males,85+,1471,2019-07-12,28 -Males,85+,1426,2019-07-19,29 -Males,85+,1351,2019-07-26,30 -Males,85+,1455,2019-08-02,31 -Males,85+,1387,2019-08-09,32 -Males,85+,1436,2019-08-16,33 -Males,85+,1439,2019-08-23,34 -Males,85+,1232,2019-08-30,35 -Males,85+,1480,2019-09-06,36 -Males,85+,1547,2019-09-13,37 -Males,85+,1463,2019-09-20,38 -Males,85+,1527,2019-09-27,39 -Males,85+,1508,2019-10-04,40 -Males,85+,1609,2019-10-11,41 -Males,85+,1641,2019-10-18,42 -Males,85+,1617,2019-10-25,43 -Males,85+,1573,2019-11-01,44 -Males,85+,1737,2019-11-08,45 -Males,85+,1692,2019-11-15,46 -Males,85+,1776,2019-11-22,47 -Males,85+,1808,2019-11-29,48 -Males,85+,1748,2019-12-06,49 -Males,85+,1772,2019-12-13,50 -Males,85+,1995,2019-12-20,51 -Males,85+,1218,2019-12-27,52 -Females,Under 1 year,15,2019-01-04,1 -Females,Under 1 year,30,2019-01-11,2 -Females,Under 1 year,20,2019-01-18,3 -Females,Under 1 year,16,2019-01-25,4 -Females,Under 1 year,19,2019-02-01,5 -Females,Under 1 year,18,2019-02-08,6 -Females,Under 1 year,22,2019-02-15,7 -Females,Under 1 year,29,2019-02-22,8 -Females,Under 1 year,28,2019-03-01,9 -Females,Under 1 year,13,2019-03-08,10 -Females,Under 1 year,27,2019-03-15,11 -Females,Under 1 year,20,2019-03-22,12 -Females,Under 1 year,19,2019-03-29,13 -Females,Under 1 year,20,2019-04-05,14 -Females,Under 1 year,16,2019-04-12,15 -Females,Under 1 year,24,2019-04-19,16 -Females,Under 1 year,18,2019-04-26,17 -Females,Under 1 year,20,2019-05-03,18 -Females,Under 1 year,22,2019-05-10,19 -Females,Under 1 year,20,2019-05-17,20 -Females,Under 1 year,22,2019-05-24,21 -Females,Under 1 year,23,2019-05-31,22 -Females,Under 1 year,22,2019-06-07,23 -Females,Under 1 year,24,2019-06-14,24 -Females,Under 1 year,21,2019-06-21,25 -Females,Under 1 year,17,2019-06-28,26 -Females,Under 1 year,9,2019-07-05,27 -Females,Under 1 year,21,2019-07-12,28 -Females,Under 1 year,14,2019-07-19,29 -Females,Under 1 year,21,2019-07-26,30 -Females,Under 1 year,27,2019-08-02,31 -Females,Under 1 year,31,2019-08-09,32 -Females,Under 1 year,26,2019-08-16,33 -Females,Under 1 year,16,2019-08-23,34 -Females,Under 1 year,22,2019-08-30,35 -Females,Under 1 year,25,2019-09-06,36 -Females,Under 1 year,29,2019-09-13,37 -Females,Under 1 year,22,2019-09-20,38 -Females,Under 1 year,27,2019-09-27,39 -Females,Under 1 year,31,2019-10-04,40 -Females,Under 1 year,20,2019-10-11,41 -Females,Under 1 year,22,2019-10-18,42 -Females,Under 1 year,26,2019-10-25,43 -Females,Under 1 year,18,2019-11-01,44 -Females,Under 1 year,23,2019-11-08,45 -Females,Under 1 year,27,2019-11-15,46 -Females,Under 1 year,25,2019-11-22,47 -Females,Under 1 year,21,2019-11-29,48 -Females,Under 1 year,18,2019-12-06,49 -Females,Under 1 year,23,2019-12-13,50 -Females,Under 1 year,28,2019-12-20,51 -Females,Under 1 year,14,2019-12-27,52 -Females,01-14,10,2019-01-04,1 -Females,01-14,7,2019-01-11,2 -Females,01-14,15,2019-01-18,3 -Females,01-14,12,2019-01-25,4 -Females,01-14,5,2019-02-01,5 -Females,01-14,8,2019-02-08,6 -Females,01-14,9,2019-02-15,7 -Females,01-14,14,2019-02-22,8 -Females,01-14,10,2019-03-01,9 -Females,01-14,6,2019-03-08,10 -Females,01-14,13,2019-03-15,11 -Females,01-14,15,2019-03-22,12 -Females,01-14,9,2019-03-29,13 -Females,01-14,5,2019-04-05,14 -Females,01-14,9,2019-04-12,15 -Females,01-14,10,2019-04-19,16 -Females,01-14,9,2019-04-26,17 -Females,01-14,4,2019-05-03,18 -Females,01-14,8,2019-05-10,19 -Females,01-14,7,2019-05-17,20 -Females,01-14,9,2019-05-24,21 -Females,01-14,5,2019-05-31,22 -Females,01-14,9,2019-06-07,23 -Females,01-14,7,2019-06-14,24 -Females,01-14,9,2019-06-21,25 -Females,01-14,12,2019-06-28,26 -Females,01-14,9,2019-07-05,27 -Females,01-14,9,2019-07-12,28 -Females,01-14,4,2019-07-19,29 -Females,01-14,7,2019-07-26,30 -Females,01-14,5,2019-08-02,31 -Females,01-14,3,2019-08-09,32 -Females,01-14,11,2019-08-16,33 -Females,01-14,4,2019-08-23,34 -Females,01-14,6,2019-08-30,35 -Females,01-14,10,2019-09-06,36 -Females,01-14,9,2019-09-13,37 -Females,01-14,7,2019-09-20,38 -Females,01-14,6,2019-09-27,39 -Females,01-14,8,2019-10-04,40 -Females,01-14,6,2019-10-11,41 -Females,01-14,4,2019-10-18,42 -Females,01-14,8,2019-10-25,43 -Females,01-14,10,2019-11-01,44 -Females,01-14,4,2019-11-08,45 -Females,01-14,10,2019-11-15,46 -Females,01-14,10,2019-11-22,47 -Females,01-14,4,2019-11-29,48 -Females,01-14,6,2019-12-06,49 -Females,01-14,16,2019-12-13,50 -Females,01-14,10,2019-12-20,51 -Females,01-14,7,2019-12-27,52 -Females,15-44,87,2019-01-04,1 -Females,15-44,112,2019-01-11,2 -Females,15-44,108,2019-01-18,3 -Females,15-44,114,2019-01-25,4 -Females,15-44,99,2019-02-01,5 -Females,15-44,115,2019-02-08,6 -Females,15-44,104,2019-02-15,7 -Females,15-44,117,2019-02-22,8 -Females,15-44,106,2019-03-01,9 -Females,15-44,106,2019-03-08,10 -Females,15-44,105,2019-03-15,11 -Females,15-44,93,2019-03-22,12 -Females,15-44,84,2019-03-29,13 -Females,15-44,112,2019-04-05,14 -Females,15-44,94,2019-04-12,15 -Females,15-44,105,2019-04-19,16 -Females,15-44,102,2019-04-26,17 -Females,15-44,90,2019-05-03,18 -Females,15-44,103,2019-05-10,19 -Females,15-44,112,2019-05-17,20 -Females,15-44,116,2019-05-24,21 -Females,15-44,92,2019-05-31,22 -Females,15-44,107,2019-06-07,23 -Females,15-44,100,2019-06-14,24 -Females,15-44,83,2019-06-21,25 -Females,15-44,87,2019-06-28,26 -Females,15-44,85,2019-07-05,27 -Females,15-44,85,2019-07-12,28 -Females,15-44,99,2019-07-19,29 -Females,15-44,102,2019-07-26,30 -Females,15-44,101,2019-08-02,31 -Females,15-44,89,2019-08-09,32 -Females,15-44,80,2019-08-16,33 -Females,15-44,95,2019-08-23,34 -Females,15-44,86,2019-08-30,35 -Females,15-44,85,2019-09-06,36 -Females,15-44,119,2019-09-13,37 -Females,15-44,99,2019-09-20,38 -Females,15-44,95,2019-09-27,39 -Females,15-44,107,2019-10-04,40 -Females,15-44,94,2019-10-11,41 -Females,15-44,110,2019-10-18,42 -Females,15-44,95,2019-10-25,43 -Females,15-44,113,2019-11-01,44 -Females,15-44,115,2019-11-08,45 -Females,15-44,99,2019-11-15,46 -Females,15-44,115,2019-11-22,47 -Females,15-44,103,2019-11-29,48 -Females,15-44,111,2019-12-06,49 -Females,15-44,128,2019-12-13,50 -Females,15-44,139,2019-12-20,51 -Females,15-44,63,2019-12-27,52 -Females,45-64,506,2019-01-04,1 -Females,45-64,567,2019-01-11,2 -Females,45-64,542,2019-01-18,3 -Females,45-64,578,2019-01-25,4 -Females,45-64,562,2019-02-01,5 -Females,45-64,518,2019-02-08,6 -Females,45-64,573,2019-02-15,7 -Females,45-64,545,2019-02-22,8 -Females,45-64,519,2019-03-01,9 -Females,45-64,503,2019-03-08,10 -Females,45-64,523,2019-03-15,11 -Females,45-64,475,2019-03-22,12 -Females,45-64,494,2019-03-29,13 -Females,45-64,507,2019-04-05,14 -Females,45-64,482,2019-04-12,15 -Females,45-64,456,2019-04-19,16 -Females,45-64,483,2019-04-26,17 -Females,45-64,513,2019-05-03,18 -Females,45-64,470,2019-05-10,19 -Females,45-64,479,2019-05-17,20 -Females,45-64,511,2019-05-24,21 -Females,45-64,426,2019-05-31,22 -Females,45-64,466,2019-06-07,23 -Females,45-64,476,2019-06-14,24 -Females,45-64,436,2019-06-21,25 -Females,45-64,476,2019-06-28,26 -Females,45-64,475,2019-07-05,27 -Females,45-64,442,2019-07-12,28 -Females,45-64,453,2019-07-19,29 -Females,45-64,457,2019-07-26,30 -Females,45-64,421,2019-08-02,31 -Females,45-64,433,2019-08-09,32 -Females,45-64,501,2019-08-16,33 -Females,45-64,446,2019-08-23,34 -Females,45-64,397,2019-08-30,35 -Females,45-64,484,2019-09-06,36 -Females,45-64,460,2019-09-13,37 -Females,45-64,458,2019-09-20,38 -Females,45-64,493,2019-09-27,39 -Females,45-64,484,2019-10-04,40 -Females,45-64,451,2019-10-11,41 -Females,45-64,478,2019-10-18,42 -Females,45-64,499,2019-10-25,43 -Females,45-64,514,2019-11-01,44 -Females,45-64,498,2019-11-08,45 -Females,45-64,515,2019-11-15,46 -Females,45-64,501,2019-11-22,47 -Females,45-64,498,2019-11-29,48 -Females,45-64,519,2019-12-06,49 -Females,45-64,567,2019-12-13,50 -Females,45-64,548,2019-12-20,51 -Females,45-64,325,2019-12-27,52 -Females,65-74,774,2019-01-04,1 -Females,65-74,914,2019-01-11,2 -Females,65-74,873,2019-01-18,3 -Females,65-74,782,2019-01-25,4 -Females,65-74,807,2019-02-01,5 -Females,65-74,855,2019-02-08,6 -Females,65-74,794,2019-02-15,7 -Females,65-74,736,2019-02-22,8 -Females,65-74,767,2019-03-01,9 -Females,65-74,745,2019-03-08,10 -Females,65-74,675,2019-03-15,11 -Females,65-74,748,2019-03-22,12 -Females,65-74,665,2019-03-29,13 -Females,65-74,684,2019-04-05,14 -Females,65-74,717,2019-04-12,15 -Females,65-74,594,2019-04-19,16 -Females,65-74,760,2019-04-26,17 -Females,65-74,780,2019-05-03,18 -Females,65-74,645,2019-05-10,19 -Females,65-74,673,2019-05-17,20 -Females,65-74,721,2019-05-24,21 -Females,65-74,598,2019-05-31,22 -Females,65-74,726,2019-06-07,23 -Females,65-74,695,2019-06-14,24 -Females,65-74,662,2019-06-21,25 -Females,65-74,636,2019-06-28,26 -Females,65-74,651,2019-07-05,27 -Females,65-74,664,2019-07-12,28 -Females,65-74,637,2019-07-19,29 -Females,65-74,647,2019-07-26,30 -Females,65-74,676,2019-08-02,31 -Females,65-74,640,2019-08-09,32 -Females,65-74,646,2019-08-16,33 -Females,65-74,640,2019-08-23,34 -Females,65-74,573,2019-08-30,35 -Females,65-74,688,2019-09-06,36 -Females,65-74,671,2019-09-13,37 -Females,65-74,674,2019-09-20,38 -Females,65-74,625,2019-09-27,39 -Females,65-74,715,2019-10-04,40 -Females,65-74,629,2019-10-11,41 -Females,65-74,691,2019-10-18,42 -Females,65-74,700,2019-10-25,43 -Females,65-74,683,2019-11-01,44 -Females,65-74,685,2019-11-08,45 -Females,65-74,693,2019-11-15,46 -Females,65-74,701,2019-11-22,47 -Females,65-74,743,2019-11-29,48 -Females,65-74,704,2019-12-06,49 -Females,65-74,765,2019-12-13,50 -Females,65-74,808,2019-12-20,51 -Females,65-74,519,2019-12-27,52 -Females,75-84,1488,2019-01-04,1 -Females,75-84,1733,2019-01-11,2 -Females,75-84,1577,2019-01-18,3 -Females,75-84,1500,2019-01-25,4 -Females,75-84,1462,2019-02-01,5 -Females,75-84,1533,2019-02-08,6 -Females,75-84,1616,2019-02-15,7 -Females,75-84,1473,2019-02-22,8 -Females,75-84,1461,2019-03-01,9 -Females,75-84,1378,2019-03-08,10 -Females,75-84,1402,2019-03-15,11 -Females,75-84,1352,2019-03-22,12 -Females,75-84,1324,2019-03-29,13 -Females,75-84,1348,2019-04-05,14 -Females,75-84,1364,2019-04-12,15 -Females,75-84,1127,2019-04-19,16 -Females,75-84,1268,2019-04-26,17 -Females,75-84,1498,2019-05-03,18 -Females,75-84,1217,2019-05-10,19 -Females,75-84,1336,2019-05-17,20 -Females,75-84,1382,2019-05-24,21 -Females,75-84,1156,2019-05-31,22 -Females,75-84,1247,2019-06-07,23 -Females,75-84,1208,2019-06-14,24 -Females,75-84,1231,2019-06-21,25 -Females,75-84,1183,2019-06-28,26 -Females,75-84,1230,2019-07-05,27 -Females,75-84,1222,2019-07-12,28 -Females,75-84,1230,2019-07-19,29 -Females,75-84,1206,2019-07-26,30 -Females,75-84,1219,2019-08-02,31 -Females,75-84,1165,2019-08-09,32 -Females,75-84,1159,2019-08-16,33 -Females,75-84,1122,2019-08-23,34 -Females,75-84,1079,2019-08-30,35 -Females,75-84,1288,2019-09-06,36 -Females,75-84,1233,2019-09-13,37 -Females,75-84,1283,2019-09-20,38 -Females,75-84,1246,2019-09-27,39 -Females,75-84,1291,2019-10-04,40 -Females,75-84,1344,2019-10-11,41 -Females,75-84,1369,2019-10-18,42 -Females,75-84,1249,2019-10-25,43 -Females,75-84,1437,2019-11-01,44 -Females,75-84,1382,2019-11-08,45 -Females,75-84,1435,2019-11-15,46 -Females,75-84,1439,2019-11-22,47 -Females,75-84,1396,2019-11-29,48 -Females,75-84,1439,2019-12-06,49 -Females,75-84,1504,2019-12-13,50 -Females,75-84,1566,2019-12-20,51 -Females,75-84,1108,2019-12-27,52 -Females,85+,2881,2019-01-04,1 -Females,85+,3074,2019-01-11,2 -Females,85+,2834,2019-01-18,3 -Females,85+,2835,2019-01-25,4 -Females,85+,2739,2019-02-01,5 -Females,85+,2826,2019-02-08,6 -Females,85+,2846,2019-02-15,7 -Females,85+,2738,2019-02-22,8 -Females,85+,2690,2019-03-01,9 -Females,85+,2604,2019-03-08,10 -Females,85+,2592,2019-03-15,11 -Females,85+,2496,2019-03-22,12 -Females,85+,2356,2019-03-29,13 -Females,85+,2401,2019-04-05,14 -Females,85+,2420,2019-04-12,15 -Females,85+,2182,2019-04-19,16 -Females,85+,2398,2019-04-26,17 -Females,85+,2711,2019-05-03,18 -Females,85+,2123,2019-05-10,19 -Females,85+,2437,2019-05-17,20 -Females,85+,2398,2019-05-24,21 -Females,85+,1897,2019-05-31,22 -Females,85+,2344,2019-06-07,23 -Females,85+,2162,2019-06-14,24 -Females,85+,2200,2019-06-21,25 -Females,85+,2164,2019-06-28,26 -Females,85+,2107,2019-07-05,27 -Females,85+,2069,2019-07-12,28 -Females,85+,2070,2019-07-19,29 -Females,85+,2128,2019-07-26,30 -Females,85+,2099,2019-08-02,31 -Females,85+,2173,2019-08-09,32 -Females,85+,1955,2019-08-16,33 -Females,85+,2048,2019-08-23,34 -Females,85+,1961,2019-08-30,35 -Females,85+,2257,2019-09-06,36 -Females,85+,2157,2019-09-13,37 -Females,85+,2189,2019-09-20,38 -Females,85+,2148,2019-09-27,39 -Females,85+,2249,2019-10-04,40 -Females,85+,2399,2019-10-11,41 -Females,85+,2442,2019-10-18,42 -Females,85+,2400,2019-10-25,43 -Females,85+,2441,2019-11-01,44 -Females,85+,2677,2019-11-08,45 -Females,85+,2625,2019-11-15,46 -Females,85+,2616,2019-11-22,47 -Females,85+,2638,2019-11-29,48 -Females,85+,2644,2019-12-06,49 -Females,85+,2696,2019-12-13,50 -Females,85+,2973,2019-12-20,51 -Females,85+,1931,2019-12-27,52 -Region,North East,574,2019-01-04,1 -Region,North East,643,2019-01-11,2 -Region,North East,627,2019-01-18,3 -Region,North East,640,2019-01-25,4 -Region,North East,618,2019-02-01,5 -Region,North East,608,2019-02-08,6 -Region,North East,569,2019-02-15,7 -Region,North East,610,2019-02-22,8 -Region,North East,572,2019-03-01,9 -Region,North East,582,2019-03-08,10 -Region,North East,527,2019-03-15,11 -Region,North East,532,2019-03-22,12 -Region,North East,529,2019-03-29,13 -Region,North East,518,2019-04-05,14 -Region,North East,510,2019-04-12,15 -Region,North East,459,2019-04-19,16 -Region,North East,551,2019-04-26,17 -Region,North East,541,2019-05-03,18 -Region,North East,484,2019-05-10,19 -Region,North East,548,2019-05-17,20 -Region,North East,530,2019-05-24,21 -Region,North East,436,2019-05-31,22 -Region,North East,554,2019-06-07,23 -Region,North East,507,2019-06-14,24 -Region,North East,478,2019-06-21,25 -Region,North East,475,2019-06-28,26 -Region,North East,437,2019-07-05,27 -Region,North East,458,2019-07-12,28 -Region,North East,478,2019-07-19,29 -Region,North East,534,2019-07-26,30 -Region,North East,536,2019-08-02,31 -Region,North East,530,2019-08-09,32 -Region,North East,497,2019-08-16,33 -Region,North East,505,2019-08-23,34 -Region,North East,466,2019-08-30,35 -Region,North East,473,2019-09-06,36 -Region,North East,482,2019-09-13,37 -Region,North East,494,2019-09-20,38 -Region,North East,538,2019-09-27,39 -Region,North East,491,2019-10-04,40 -Region,North East,527,2019-10-11,41 -Region,North East,567,2019-10-18,42 -Region,North East,540,2019-10-25,43 -Region,North East,537,2019-11-01,44 -Region,North East,553,2019-11-08,45 -Region,North East,607,2019-11-15,46 -Region,North East,582,2019-11-22,47 -Region,North East,563,2019-11-29,48 -Region,North East,558,2019-12-06,49 -Region,North East,585,2019-12-13,50 -Region,North East,670,2019-12-20,51 -Region,North East,411,2019-12-27,52 -Region,North West,1456,2019-01-04,1 -Region,North West,1612,2019-01-11,2 -Region,North West,1566,2019-01-18,3 -Region,North West,1593,2019-01-25,4 -Region,North West,1485,2019-02-01,5 -Region,North West,1595,2019-02-08,6 -Region,North West,1618,2019-02-15,7 -Region,North West,1495,2019-02-22,8 -Region,North West,1425,2019-03-01,9 -Region,North West,1463,2019-03-08,10 -Region,North West,1393,2019-03-15,11 -Region,North West,1437,2019-03-22,12 -Region,North West,1278,2019-03-29,13 -Region,North West,1277,2019-04-05,14 -Region,North West,1341,2019-04-12,15 -Region,North West,1225,2019-04-19,16 -Region,North West,1365,2019-04-26,17 -Region,North West,1493,2019-05-03,18 -Region,North West,1214,2019-05-10,19 -Region,North West,1402,2019-05-17,20 -Region,North West,1397,2019-05-24,21 -Region,North West,1176,2019-05-31,22 -Region,North West,1349,2019-06-07,23 -Region,North West,1313,2019-06-14,24 -Region,North West,1344,2019-06-21,25 -Region,North West,1250,2019-06-28,26 -Region,North West,1269,2019-07-05,27 -Region,North West,1272,2019-07-12,28 -Region,North West,1287,2019-07-19,29 -Region,North West,1237,2019-07-26,30 -Region,North West,1234,2019-08-02,31 -Region,North West,1149,2019-08-09,32 -Region,North West,1237,2019-08-16,33 -Region,North West,1203,2019-08-23,34 -Region,North West,1153,2019-08-30,35 -Region,North West,1248,2019-09-06,36 -Region,North West,1328,2019-09-13,37 -Region,North West,1283,2019-09-20,38 -Region,North West,1299,2019-09-27,39 -Region,North West,1322,2019-10-04,40 -Region,North West,1400,2019-10-11,41 -Region,North West,1400,2019-10-18,42 -Region,North West,1361,2019-10-25,43 -Region,North West,1338,2019-11-01,44 -Region,North West,1455,2019-11-08,45 -Region,North West,1402,2019-11-15,46 -Region,North West,1464,2019-11-22,47 -Region,North West,1469,2019-11-29,48 -Region,North West,1477,2019-12-06,49 -Region,North West,1637,2019-12-13,50 -Region,North West,1712,2019-12-20,51 -Region,North West,1200,2019-12-27,52 -Region,Yorkshire and The Humber,1148,2019-01-04,1 -Region,Yorkshire and The Humber,1279,2019-01-11,2 -Region,Yorkshire and The Humber,1197,2019-01-18,3 -Region,Yorkshire and The Humber,1137,2019-01-25,4 -Region,Yorkshire and The Humber,1131,2019-02-01,5 -Region,Yorkshire and The Humber,1133,2019-02-08,6 -Region,Yorkshire and The Humber,1189,2019-02-15,7 -Region,Yorkshire and The Humber,1124,2019-02-22,8 -Region,Yorkshire and The Humber,1109,2019-03-01,9 -Region,Yorkshire and The Humber,1083,2019-03-08,10 -Region,Yorkshire and The Humber,1054,2019-03-15,11 -Region,Yorkshire and The Humber,1087,2019-03-22,12 -Region,Yorkshire and The Humber,943,2019-03-29,13 -Region,Yorkshire and The Humber,959,2019-04-05,14 -Region,Yorkshire and The Humber,1034,2019-04-12,15 -Region,Yorkshire and The Humber,910,2019-04-19,16 -Region,Yorkshire and The Humber,996,2019-04-26,17 -Region,Yorkshire and The Humber,1125,2019-05-03,18 -Region,Yorkshire and The Humber,924,2019-05-10,19 -Region,Yorkshire and The Humber,980,2019-05-17,20 -Region,Yorkshire and The Humber,1024,2019-05-24,21 -Region,Yorkshire and The Humber,782,2019-05-31,22 -Region,Yorkshire and The Humber,1025,2019-06-07,23 -Region,Yorkshire and The Humber,889,2019-06-14,24 -Region,Yorkshire and The Humber,931,2019-06-21,25 -Region,Yorkshire and The Humber,984,2019-06-28,26 -Region,Yorkshire and The Humber,896,2019-07-05,27 -Region,Yorkshire and The Humber,932,2019-07-12,28 -Region,Yorkshire and The Humber,841,2019-07-19,29 -Region,Yorkshire and The Humber,895,2019-07-26,30 -Region,Yorkshire and The Humber,936,2019-08-02,31 -Region,Yorkshire and The Humber,867,2019-08-09,32 -Region,Yorkshire and The Humber,857,2019-08-16,33 -Region,Yorkshire and The Humber,927,2019-08-23,34 -Region,Yorkshire and The Humber,832,2019-08-30,35 -Region,Yorkshire and The Humber,937,2019-09-06,36 -Region,Yorkshire and The Humber,916,2019-09-13,37 -Region,Yorkshire and The Humber,954,2019-09-20,38 -Region,Yorkshire and The Humber,906,2019-09-27,39 -Region,Yorkshire and The Humber,948,2019-10-04,40 -Region,Yorkshire and The Humber,1005,2019-10-11,41 -Region,Yorkshire and The Humber,1019,2019-10-18,42 -Region,Yorkshire and The Humber,1001,2019-10-25,43 -Region,Yorkshire and The Humber,1033,2019-11-01,44 -Region,Yorkshire and The Humber,1053,2019-11-08,45 -Region,Yorkshire and The Humber,1070,2019-11-15,46 -Region,Yorkshire and The Humber,1039,2019-11-22,47 -Region,Yorkshire and The Humber,1139,2019-11-29,48 -Region,Yorkshire and The Humber,1011,2019-12-06,49 -Region,Yorkshire and The Humber,1102,2019-12-13,50 -Region,Yorkshire and The Humber,1173,2019-12-20,51 -Region,Yorkshire and The Humber,737,2019-12-27,52 -Region,East Midlands,964,2019-01-04,1 -Region,East Midlands,1089,2019-01-11,2 -Region,East Midlands,979,2019-01-18,3 -Region,East Midlands,1037,2019-01-25,4 -Region,East Midlands,963,2019-02-01,5 -Region,East Midlands,988,2019-02-08,6 -Region,East Midlands,1033,2019-02-15,7 -Region,East Midlands,928,2019-02-22,8 -Region,East Midlands,927,2019-03-01,9 -Region,East Midlands,946,2019-03-08,10 -Region,East Midlands,879,2019-03-15,11 -Region,East Midlands,890,2019-03-22,12 -Region,East Midlands,875,2019-03-29,13 -Region,East Midlands,876,2019-04-05,14 -Region,East Midlands,858,2019-04-12,15 -Region,East Midlands,759,2019-04-19,16 -Region,East Midlands,856,2019-04-26,17 -Region,East Midlands,986,2019-05-03,18 -Region,East Midlands,776,2019-05-10,19 -Region,East Midlands,887,2019-05-17,20 -Region,East Midlands,888,2019-05-24,21 -Region,East Midlands,699,2019-05-31,22 -Region,East Midlands,880,2019-06-07,23 -Region,East Midlands,817,2019-06-14,24 -Region,East Midlands,751,2019-06-21,25 -Region,East Midlands,790,2019-06-28,26 -Region,East Midlands,750,2019-07-05,27 -Region,East Midlands,747,2019-07-12,28 -Region,East Midlands,809,2019-07-19,29 -Region,East Midlands,774,2019-07-26,30 -Region,East Midlands,782,2019-08-02,31 -Region,East Midlands,795,2019-08-09,32 -Region,East Midlands,749,2019-08-16,33 -Region,East Midlands,726,2019-08-23,34 -Region,East Midlands,697,2019-08-30,35 -Region,East Midlands,867,2019-09-06,36 -Region,East Midlands,774,2019-09-13,37 -Region,East Midlands,827,2019-09-20,38 -Region,East Midlands,842,2019-09-27,39 -Region,East Midlands,875,2019-10-04,40 -Region,East Midlands,847,2019-10-11,41 -Region,East Midlands,863,2019-10-18,42 -Region,East Midlands,846,2019-10-25,43 -Region,East Midlands,877,2019-11-01,44 -Region,East Midlands,880,2019-11-08,45 -Region,East Midlands,889,2019-11-15,46 -Region,East Midlands,931,2019-11-22,47 -Region,East Midlands,935,2019-11-29,48 -Region,East Midlands,958,2019-12-06,49 -Region,East Midlands,973,2019-12-13,50 -Region,East Midlands,1050,2019-12-20,51 -Region,East Midlands,729,2019-12-27,52 -Region,West Midlands,1180,2019-01-04,1 -Region,West Midlands,1299,2019-01-11,2 -Region,West Midlands,1187,2019-01-18,3 -Region,West Midlands,1131,2019-01-25,4 -Region,West Midlands,1150,2019-02-01,5 -Region,West Midlands,1241,2019-02-08,6 -Region,West Midlands,1231,2019-02-15,7 -Region,West Midlands,1143,2019-02-22,8 -Region,West Midlands,1188,2019-03-01,9 -Region,West Midlands,1150,2019-03-08,10 -Region,West Midlands,1092,2019-03-15,11 -Region,West Midlands,1062,2019-03-22,12 -Region,West Midlands,930,2019-03-29,13 -Region,West Midlands,1050,2019-04-05,14 -Region,West Midlands,1084,2019-04-12,15 -Region,West Midlands,928,2019-04-19,16 -Region,West Midlands,1008,2019-04-26,17 -Region,West Midlands,1136,2019-05-03,18 -Region,West Midlands,906,2019-05-10,19 -Region,West Midlands,1082,2019-05-17,20 -Region,West Midlands,1070,2019-05-24,21 -Region,West Midlands,840,2019-05-31,22 -Region,West Midlands,1082,2019-06-07,23 -Region,West Midlands,950,2019-06-14,24 -Region,West Midlands,938,2019-06-21,25 -Region,West Midlands,1013,2019-06-28,26 -Region,West Midlands,940,2019-07-05,27 -Region,West Midlands,949,2019-07-12,28 -Region,West Midlands,962,2019-07-19,29 -Region,West Midlands,882,2019-07-26,30 -Region,West Midlands,929,2019-08-02,31 -Region,West Midlands,953,2019-08-09,32 -Region,West Midlands,969,2019-08-16,33 -Region,West Midlands,918,2019-08-23,34 -Region,West Midlands,826,2019-08-30,35 -Region,West Midlands,939,2019-09-06,36 -Region,West Midlands,1001,2019-09-13,37 -Region,West Midlands,974,2019-09-20,38 -Region,West Midlands,1027,2019-09-27,39 -Region,West Midlands,1008,2019-10-04,40 -Region,West Midlands,1027,2019-10-11,41 -Region,West Midlands,1093,2019-10-18,42 -Region,West Midlands,1019,2019-10-25,43 -Region,West Midlands,967,2019-11-01,44 -Region,West Midlands,1110,2019-11-08,45 -Region,West Midlands,1080,2019-11-15,46 -Region,West Midlands,1138,2019-11-22,47 -Region,West Midlands,1184,2019-11-29,48 -Region,West Midlands,1083,2019-12-06,49 -Region,West Midlands,1130,2019-12-13,50 -Region,West Midlands,1269,2019-12-20,51 -Region,West Midlands,720,2019-12-27,52 -Region,East,1136,2019-01-04,1 -Region,East,1386,2019-01-11,2 -Region,East,1344,2019-01-18,3 -Region,East,1291,2019-01-25,4 -Region,East,1202,2019-02-01,5 -Region,East,1283,2019-02-08,6 -Region,East,1342,2019-02-15,7 -Region,East,1218,2019-02-22,8 -Region,East,1214,2019-03-01,9 -Region,East,1116,2019-03-08,10 -Region,East,1198,2019-03-15,11 -Region,East,1066,2019-03-22,12 -Region,East,1136,2019-03-29,13 -Region,East,1224,2019-04-05,14 -Region,East,1188,2019-04-12,15 -Region,East,1014,2019-04-19,16 -Region,East,1084,2019-04-26,17 -Region,East,1139,2019-05-03,18 -Region,East,943,2019-05-10,19 -Region,East,1112,2019-05-17,20 -Region,East,1097,2019-05-24,21 -Region,East,842,2019-05-31,22 -Region,East,982,2019-06-07,23 -Region,East,1012,2019-06-14,24 -Region,East,1011,2019-06-21,25 -Region,East,1028,2019-06-28,26 -Region,East,981,2019-07-05,27 -Region,East,995,2019-07-12,28 -Region,East,994,2019-07-19,29 -Region,East,1024,2019-07-26,30 -Region,East,988,2019-08-02,31 -Region,East,1026,2019-08-09,32 -Region,East,933,2019-08-16,33 -Region,East,964,2019-08-23,34 -Region,East,838,2019-08-30,35 -Region,East,1115,2019-09-06,36 -Region,East,1088,2019-09-13,37 -Region,East,1049,2019-09-20,38 -Region,East,1014,2019-09-27,39 -Region,East,1059,2019-10-04,40 -Region,East,1073,2019-10-11,41 -Region,East,1083,2019-10-18,42 -Region,East,1063,2019-10-25,43 -Region,East,1100,2019-11-01,44 -Region,East,1181,2019-11-08,45 -Region,East,1090,2019-11-15,46 -Region,East,1166,2019-11-22,47 -Region,East,1116,2019-11-29,48 -Region,East,1184,2019-12-06,49 -Region,East,1176,2019-12-13,50 -Region,East,1238,2019-12-20,51 -Region,East,716,2019-12-27,52 -Region,London,1021,2019-01-04,1 -Region,London,1137,2019-01-11,2 -Region,London,1073,2019-01-18,3 -Region,London,1045,2019-01-25,4 -Region,London,1066,2019-02-01,5 -Region,London,1088,2019-02-08,6 -Region,London,1061,2019-02-15,7 -Region,London,1045,2019-02-22,8 -Region,London,1009,2019-03-01,9 -Region,London,1004,2019-03-08,10 -Region,London,975,2019-03-15,11 -Region,London,925,2019-03-22,12 -Region,London,910,2019-03-29,13 -Region,London,928,2019-04-05,14 -Region,London,937,2019-04-12,15 -Region,London,834,2019-04-19,16 -Region,London,951,2019-04-26,17 -Region,London,1040,2019-05-03,18 -Region,London,807,2019-05-10,19 -Region,London,927,2019-05-17,20 -Region,London,876,2019-05-24,21 -Region,London,809,2019-05-31,22 -Region,London,919,2019-06-07,23 -Region,London,900,2019-06-14,24 -Region,London,900,2019-06-21,25 -Region,London,892,2019-06-28,26 -Region,London,833,2019-07-05,27 -Region,London,875,2019-07-12,28 -Region,London,829,2019-07-19,29 -Region,London,833,2019-07-26,30 -Region,London,911,2019-08-02,31 -Region,London,891,2019-08-09,32 -Region,London,892,2019-08-16,33 -Region,London,826,2019-08-23,34 -Region,London,784,2019-08-30,35 -Region,London,976,2019-09-06,36 -Region,London,916,2019-09-13,37 -Region,London,889,2019-09-20,38 -Region,London,840,2019-09-27,39 -Region,London,846,2019-10-04,40 -Region,London,887,2019-10-11,41 -Region,London,886,2019-10-18,42 -Region,London,895,2019-10-25,43 -Region,London,976,2019-11-01,44 -Region,London,974,2019-11-08,45 -Region,London,1041,2019-11-15,46 -Region,London,1023,2019-11-22,47 -Region,London,1025,2019-11-29,48 -Region,London,986,2019-12-06,49 -Region,London,1044,2019-12-13,50 -Region,London,1028,2019-12-20,51 -Region,London,653,2019-12-27,52 -Region,South East,1586,2019-01-04,1 -Region,South East,1927,2019-01-11,2 -Region,South East,1936,2019-01-18,3 -Region,South East,1875,2019-01-25,4 -Region,South East,1718,2019-02-01,5 -Region,South East,1738,2019-02-08,6 -Region,South East,1802,2019-02-15,7 -Region,South East,1777,2019-02-22,8 -Region,South East,1712,2019-03-01,9 -Region,South East,1708,2019-03-08,10 -Region,South East,1601,2019-03-15,11 -Region,South East,1640,2019-03-22,12 -Region,South East,1540,2019-03-29,13 -Region,South East,1582,2019-04-05,14 -Region,South East,1623,2019-04-12,15 -Region,South East,1350,2019-04-19,16 -Region,South East,1495,2019-04-26,17 -Region,South East,1782,2019-05-03,18 -Region,South East,1456,2019-05-10,19 -Region,South East,1570,2019-05-17,20 -Region,South East,1620,2019-05-24,21 -Region,South East,1252,2019-05-31,22 -Region,South East,1516,2019-06-07,23 -Region,South East,1452,2019-06-14,24 -Region,South East,1510,2019-06-21,25 -Region,South East,1481,2019-06-28,26 -Region,South East,1431,2019-07-05,27 -Region,South East,1357,2019-07-12,28 -Region,South East,1328,2019-07-19,29 -Region,South East,1376,2019-07-26,30 -Region,South East,1424,2019-08-02,31 -Region,South East,1334,2019-08-09,32 -Region,South East,1355,2019-08-16,33 -Region,South East,1389,2019-08-23,34 -Region,South East,1245,2019-08-30,35 -Region,South East,1518,2019-09-06,36 -Region,South East,1399,2019-09-13,37 -Region,South East,1385,2019-09-20,38 -Region,South East,1404,2019-09-27,39 -Region,South East,1573,2019-10-04,40 -Region,South East,1557,2019-10-11,41 -Region,South East,1556,2019-10-18,42 -Region,South East,1491,2019-10-25,43 -Region,South East,1547,2019-11-01,44 -Region,South East,1701,2019-11-08,45 -Region,South East,1690,2019-11-15,46 -Region,South East,1618,2019-11-22,47 -Region,South East,1648,2019-11-29,48 -Region,South East,1647,2019-12-06,49 -Region,South East,1690,2019-12-13,50 -Region,South East,1709,2019-12-20,51 -Region,South East,1094,2019-12-27,52 -Region,South West,1136,2019-01-04,1 -Region,South West,1394,2019-01-11,2 -Region,South West,1236,2019-01-18,3 -Region,South West,1229,2019-01-25,4 -Region,South West,1191,2019-02-01,5 -Region,South West,1251,2019-02-08,6 -Region,South West,1207,2019-02-15,7 -Region,South West,1234,2019-02-22,8 -Region,South West,1178,2019-03-01,9 -Region,South West,1198,2019-03-08,10 -Region,South West,1149,2019-03-15,11 -Region,South West,1089,2019-03-22,12 -Region,South West,1047,2019-03-29,13 -Region,South West,1039,2019-04-05,14 -Region,South West,1037,2019-04-12,15 -Region,South West,919,2019-04-19,16 -Region,South West,1053,2019-04-26,17 -Region,South West,1251,2019-05-03,18 -Region,South West,922,2019-05-10,19 -Region,South West,1078,2019-05-17,20 -Region,South West,1126,2019-05-24,21 -Region,South West,886,2019-05-31,22 -Region,South West,1182,2019-06-07,23 -Region,South West,986,2019-06-14,24 -Region,South West,1032,2019-06-21,25 -Region,South West,1005,2019-06-28,26 -Region,South West,962,2019-07-05,27 -Region,South West,972,2019-07-12,28 -Region,South West,981,2019-07-19,29 -Region,South West,982,2019-07-26,30 -Region,South West,926,2019-08-02,31 -Region,South West,1010,2019-08-09,32 -Region,South West,978,2019-08-16,33 -Region,South West,963,2019-08-23,34 -Region,South West,814,2019-08-30,35 -Region,South West,1014,2019-09-06,36 -Region,South West,1020,2019-09-13,37 -Region,South West,982,2019-09-20,38 -Region,South West,1017,2019-09-27,39 -Region,South West,1059,2019-10-04,40 -Region,South West,1026,2019-10-11,41 -Region,South West,1040,2019-10-18,42 -Region,South West,1107,2019-10-25,43 -Region,South West,1118,2019-11-01,44 -Region,South West,1102,2019-11-08,45 -Region,South West,1083,2019-11-15,46 -Region,South West,1203,2019-11-22,47 -Region,South West,1166,2019-11-29,48 -Region,South West,1157,2019-12-06,49 -Region,South West,1130,2019-12-13,50 -Region,South West,1288,2019-12-20,51 -Region,South West,766,2019-12-27,52 -Region,Wales,718,2019-01-04,1 -Region,Wales,809,2019-01-11,2 -Region,Wales,683,2019-01-18,3 -Region,Wales,734,2019-01-25,4 -Region,Wales,745,2019-02-01,5 -Region,Wales,701,2019-02-08,6 -Region,Wales,748,2019-02-15,7 -Region,Wales,695,2019-02-22,8 -Region,Wales,684,2019-03-01,9 -Region,Wales,622,2019-03-08,10 -Region,Wales,666,2019-03-15,11 -Region,Wales,628,2019-03-22,12 -Region,Wales,654,2019-03-29,13 -Region,Wales,642,2019-04-05,14 -Region,Wales,637,2019-04-12,15 -Region,Wales,580,2019-04-19,16 -Region,Wales,678,2019-04-26,17 -Region,Wales,688,2019-05-03,18 -Region,Wales,600,2019-05-10,19 -Region,Wales,658,2019-05-17,20 -Region,Wales,627,2019-05-24,21 -Region,Wales,518,2019-05-31,22 -Region,Wales,626,2019-06-07,23 -Region,Wales,598,2019-06-14,24 -Region,Wales,542,2019-06-21,25 -Region,Wales,564,2019-06-28,26 -Region,Wales,534,2019-07-05,27 -Region,Wales,588,2019-07-12,28 -Region,Wales,553,2019-07-19,29 -Region,Wales,543,2019-07-26,30 -Region,Wales,570,2019-08-02,31 -Region,Wales,542,2019-08-09,32 -Region,Wales,589,2019-08-16,33 -Region,Wales,553,2019-08-23,34 -Region,Wales,558,2019-08-30,35 -Region,Wales,582,2019-09-06,36 -Region,Wales,567,2019-09-13,37 -Region,Wales,572,2019-09-20,38 -Region,Wales,611,2019-09-27,39 -Region,Wales,597,2019-10-04,40 -Region,Wales,590,2019-10-11,41 -Region,Wales,622,2019-10-18,42 -Region,Wales,670,2019-10-25,43 -Region,Wales,642,2019-11-01,44 -Region,Wales,653,2019-11-08,45 -Region,Wales,674,2019-11-15,46 -Region,Wales,699,2019-11-22,47 -Region,Wales,689,2019-11-29,48 -Region,Wales,737,2019-12-06,49 -Region,Wales,699,2019-12-13,50 -Region,Wales,767,2019-12-20,51 -Region,Wales,496,2019-12-27,52 -Total deaths,all ages,12254,2020-01-03,1 -Total deaths,all ages,14058,2020-01-10,2 -Total deaths,all ages,12990,2020-01-17,3 -Total deaths,all ages,11856,2020-01-24,4 -Total deaths,all ages,11612,2020-01-31,5 -Total deaths,all ages,10986,2020-02-07,6 -Total deaths,all ages,10944,2020-02-14,7 -Total deaths,all ages,10841,2020-02-21,8 -Total deaths,all ages,10816,2020-02-28,9 -Total deaths,all ages,10895,2020-03-06,10 -Total deaths,all ages,11019,2020-03-13,11 -Total deaths,all ages,10645,2020-03-20,12 -Total deaths,all ages,11141,2020-03-27,13 -Total deaths,all ages,16387,2020-04-03,14 -average of same week over 5 years,NA,12175,2020-01-03,1 -average of same week over 5 years,NA,13822,2020-01-10,2 -average of same week over 5 years,NA,13216,2020-01-17,3 -average of same week over 5 years,NA,12760,2020-01-24,4 -average of same week over 5 years,NA,12206,2020-01-31,5 -average of same week over 5 years,NA,11925,2020-02-07,6 -average of same week over 5 years,NA,11627,2020-02-14,7 -average of same week over 5 years,NA,11548,2020-02-21,8 -average of same week over 5 years,NA,11183,2020-02-28,9 -average of same week over 5 years,NA,11498,2020-03-06,10 -average of same week over 5 years,NA,11205,2020-03-13,11 -average of same week over 5 years,NA,10573,2020-03-20,12 -average of same week over 5 years,NA,10130,2020-03-27,13 -average of same week over 5 years,NA,10305,2020-04-03,14 -All respiratory diseases (ICD-10 J00-J99) ICD-10,NA,2141,2020-01-03,1 -All respiratory diseases (ICD-10 J00-J99) ICD-10,NA,2477,2020-01-10,2 -All respiratory diseases (ICD-10 J00-J99) ICD-10,NA,2188,2020-01-17,3 -All respiratory diseases (ICD-10 J00-J99) ICD-10,NA,1893,2020-01-24,4 -All respiratory diseases (ICD-10 J00-J99) ICD-10,NA,1746,2020-01-31,5 -All respiratory diseases (ICD-10 J00-J99) ICD-10,NA,1572,2020-02-07,6 -All respiratory diseases (ICD-10 J00-J99) ICD-10,NA,1602,2020-02-14,7 -All respiratory diseases (ICD-10 J00-J99) ICD-10,NA,1619,2020-02-21,8 -All respiratory diseases (ICD-10 J00-J99) ICD-10,NA,1546,2020-02-28,9 -All respiratory diseases (ICD-10 J00-J99) ICD-10,NA,1581,2020-03-06,10 -All respiratory diseases (ICD-10 J00-J99) ICD-10,NA,1492,2020-03-13,11 -All respiratory diseases (ICD-10 J00-J99) ICD-10,NA,1515,2020-03-20,12 -All respiratory diseases (ICD-10 J00-J99) ICD-10,NA,1534,2020-03-27,13 -All respiratory diseases (ICD-10 J00-J99) ICD-10,NA,2106,2020-04-03,14 -Deaths where COVID-19 was mentioned on the death certificate (ICD-10 U07.1 and U07.2),NA,0,2020-01-03,1 -Deaths where COVID-19 was mentioned on the death certificate (ICD-10 U07.1 and U07.2),NA,0,2020-01-10,2 -Deaths where COVID-19 was mentioned on the death certificate (ICD-10 U07.1 and U07.2),NA,0,2020-01-17,3 -Deaths where COVID-19 was mentioned on the death certificate (ICD-10 U07.1 and U07.2),NA,0,2020-01-24,4 -Deaths where COVID-19 was mentioned on the death certificate (ICD-10 U07.1 and U07.2),NA,0,2020-01-31,5 -Deaths where COVID-19 was mentioned on the death certificate (ICD-10 U07.1 and U07.2),NA,0,2020-02-07,6 -Deaths where COVID-19 was mentioned on the death certificate (ICD-10 U07.1 and U07.2),NA,0,2020-02-14,7 -Deaths where COVID-19 was mentioned on the death certificate (ICD-10 U07.1 and U07.2),NA,0,2020-02-21,8 -Deaths where COVID-19 was mentioned on the death certificate (ICD-10 U07.1 and U07.2),NA,0,2020-02-28,9 -Deaths where COVID-19 was mentioned on the death certificate (ICD-10 U07.1 and U07.2),NA,0,2020-03-06,10 -Deaths where COVID-19 was mentioned on the death certificate (ICD-10 U07.1 and U07.2),NA,5,2020-03-13,11 -Deaths where COVID-19 was mentioned on the death certificate (ICD-10 U07.1 and U07.2),NA,103,2020-03-20,12 -Deaths where COVID-19 was mentioned on the death certificate (ICD-10 U07.1 and U07.2),NA,539,2020-03-27,13 -Deaths where COVID-19 was mentioned on the death certificate (ICD-10 U07.1 and U07.2),NA,3475,2020-04-03,14 -Persons,Under 1 year,48,2020-01-03,1 -Persons,Under 1 year,50,2020-01-10,2 -Persons,Under 1 year,69,2020-01-17,3 -Persons,Under 1 year,53,2020-01-24,4 -Persons,Under 1 year,50,2020-01-31,5 -Persons,Under 1 year,30,2020-02-07,6 -Persons,Under 1 year,43,2020-02-14,7 -Persons,Under 1 year,51,2020-02-21,8 -Persons,Under 1 year,49,2020-02-28,9 -Persons,Under 1 year,56,2020-03-06,10 -Persons,Under 1 year,53,2020-03-13,11 -Persons,Under 1 year,44,2020-03-20,12 -Persons,Under 1 year,49,2020-03-27,13 -Persons,Under 1 year,51,2020-04-03,14 -Persons,1-4,8,2020-01-03,1 -Persons,1-4,9,2020-01-10,2 -Persons,1-4,7,2020-01-17,3 -Persons,1-4,9,2020-01-24,4 -Persons,1-4,6,2020-01-31,5 -Persons,1-4,8,2020-02-07,6 -Persons,1-4,6,2020-02-14,7 -Persons,1-4,5,2020-02-21,8 -Persons,1-4,7,2020-02-28,9 -Persons,1-4,11,2020-03-06,10 -Persons,1-4,13,2020-03-13,11 -Persons,1-4,2,2020-03-20,12 -Persons,1-4,8,2020-03-27,13 -Persons,1-4,8,2020-04-03,14 -Persons,5-9,4,2020-01-03,1 -Persons,5-9,8,2020-01-10,2 -Persons,5-9,5,2020-01-17,3 -Persons,5-9,4,2020-01-24,4 -Persons,5-9,5,2020-01-31,5 -Persons,5-9,4,2020-02-07,6 -Persons,5-9,2,2020-02-14,7 -Persons,5-9,6,2020-02-21,8 -Persons,5-9,6,2020-02-28,9 -Persons,5-9,2,2020-03-06,10 -Persons,5-9,3,2020-03-13,11 -Persons,5-9,6,2020-03-20,12 -Persons,5-9,1,2020-03-27,13 -Persons,5-9,5,2020-04-03,14 -Persons,10-14,4,2020-01-03,1 -Persons,10-14,9,2020-01-10,2 -Persons,10-14,4,2020-01-17,3 -Persons,10-14,8,2020-01-24,4 -Persons,10-14,4,2020-01-31,5 -Persons,10-14,4,2020-02-07,6 -Persons,10-14,4,2020-02-14,7 -Persons,10-14,7,2020-02-21,8 -Persons,10-14,7,2020-02-28,9 -Persons,10-14,7,2020-03-06,10 -Persons,10-14,6,2020-03-13,11 -Persons,10-14,4,2020-03-20,12 -Persons,10-14,4,2020-03-27,13 -Persons,10-14,8,2020-04-03,14 -Persons,15-19,6,2020-01-03,1 -Persons,15-19,16,2020-01-10,2 -Persons,15-19,10,2020-01-17,3 -Persons,15-19,15,2020-01-24,4 -Persons,15-19,23,2020-01-31,5 -Persons,15-19,10,2020-02-07,6 -Persons,15-19,16,2020-02-14,7 -Persons,15-19,20,2020-02-21,8 -Persons,15-19,24,2020-02-28,9 -Persons,15-19,21,2020-03-06,10 -Persons,15-19,18,2020-03-13,11 -Persons,15-19,15,2020-03-20,12 -Persons,15-19,12,2020-03-27,13 -Persons,15-19,9,2020-04-03,14 -Persons,20-24,11,2020-01-03,1 -Persons,20-24,23,2020-01-10,2 -Persons,20-24,25,2020-01-17,3 -Persons,20-24,30,2020-01-24,4 -Persons,20-24,23,2020-01-31,5 -Persons,20-24,34,2020-02-07,6 -Persons,20-24,26,2020-02-14,7 -Persons,20-24,18,2020-02-21,8 -Persons,20-24,25,2020-02-28,9 -Persons,20-24,23,2020-03-06,10 -Persons,20-24,39,2020-03-13,11 -Persons,20-24,22,2020-03-20,12 -Persons,20-24,17,2020-03-27,13 -Persons,20-24,20,2020-04-03,14 -Persons,25-29,17,2020-01-03,1 -Persons,25-29,37,2020-01-10,2 -Persons,25-29,37,2020-01-17,3 -Persons,25-29,36,2020-01-24,4 -Persons,25-29,28,2020-01-31,5 -Persons,25-29,23,2020-02-07,6 -Persons,25-29,27,2020-02-14,7 -Persons,25-29,29,2020-02-21,8 -Persons,25-29,28,2020-02-28,9 -Persons,25-29,39,2020-03-06,10 -Persons,25-29,29,2020-03-13,11 -Persons,25-29,31,2020-03-20,12 -Persons,25-29,33,2020-03-27,13 -Persons,25-29,32,2020-04-03,14 -Persons,30-34,32,2020-01-03,1 -Persons,30-34,46,2020-01-10,2 -Persons,30-34,47,2020-01-17,3 -Persons,30-34,38,2020-01-24,4 -Persons,30-34,58,2020-01-31,5 -Persons,30-34,38,2020-02-07,6 -Persons,30-34,40,2020-02-14,7 -Persons,30-34,60,2020-02-21,8 -Persons,30-34,50,2020-02-28,9 -Persons,30-34,53,2020-03-06,10 -Persons,30-34,55,2020-03-13,11 -Persons,30-34,41,2020-03-20,12 -Persons,30-34,55,2020-03-27,13 -Persons,30-34,54,2020-04-03,14 -Persons,35-39,54,2020-01-03,1 -Persons,35-39,68,2020-01-10,2 -Persons,35-39,77,2020-01-17,3 -Persons,35-39,79,2020-01-24,4 -Persons,35-39,76,2020-01-31,5 -Persons,35-39,71,2020-02-07,6 -Persons,35-39,85,2020-02-14,7 -Persons,35-39,77,2020-02-21,8 -Persons,35-39,85,2020-02-28,9 -Persons,35-39,72,2020-03-06,10 -Persons,35-39,80,2020-03-13,11 -Persons,35-39,66,2020-03-20,12 -Persons,35-39,71,2020-03-27,13 -Persons,35-39,67,2020-04-03,14 -Persons,40-44,69,2020-01-03,1 -Persons,40-44,85,2020-01-10,2 -Persons,40-44,118,2020-01-17,3 -Persons,40-44,116,2020-01-24,4 -Persons,40-44,100,2020-01-31,5 -Persons,40-44,95,2020-02-07,6 -Persons,40-44,92,2020-02-14,7 -Persons,40-44,117,2020-02-21,8 -Persons,40-44,103,2020-02-28,9 -Persons,40-44,104,2020-03-06,10 -Persons,40-44,90,2020-03-13,11 -Persons,40-44,100,2020-03-20,12 -Persons,40-44,95,2020-03-27,13 -Persons,40-44,106,2020-04-03,14 -Persons,45-49,115,2020-01-03,1 -Persons,45-49,191,2020-01-10,2 -Persons,45-49,189,2020-01-17,3 -Persons,45-49,160,2020-01-24,4 -Persons,45-49,163,2020-01-31,5 -Persons,45-49,157,2020-02-07,6 -Persons,45-49,165,2020-02-14,7 -Persons,45-49,182,2020-02-21,8 -Persons,45-49,155,2020-02-28,9 -Persons,45-49,155,2020-03-06,10 -Persons,45-49,179,2020-03-13,11 -Persons,45-49,160,2020-03-20,12 -Persons,45-49,163,2020-03-27,13 -Persons,45-49,220,2020-04-03,14 -Persons,50-54,239,2020-01-03,1 -Persons,50-54,279,2020-01-10,2 -Persons,50-54,306,2020-01-17,3 -Persons,50-54,280,2020-01-24,4 -Persons,50-54,278,2020-01-31,5 -Persons,50-54,289,2020-02-07,6 -Persons,50-54,288,2020-02-14,7 -Persons,50-54,232,2020-02-21,8 -Persons,50-54,261,2020-02-28,9 -Persons,50-54,258,2020-03-06,10 -Persons,50-54,260,2020-03-13,11 -Persons,50-54,245,2020-03-20,12 -Persons,50-54,235,2020-03-27,13 -Persons,50-54,376,2020-04-03,14 -Persons,55-59,361,2020-01-03,1 -Persons,55-59,426,2020-01-10,2 -Persons,55-59,461,2020-01-17,3 -Persons,55-59,381,2020-01-24,4 -Persons,55-59,382,2020-01-31,5 -Persons,55-59,371,2020-02-07,6 -Persons,55-59,345,2020-02-14,7 -Persons,55-59,346,2020-02-21,8 -Persons,55-59,347,2020-02-28,9 -Persons,55-59,358,2020-03-06,10 -Persons,55-59,401,2020-03-13,11 -Persons,55-59,390,2020-03-20,12 -Persons,55-59,381,2020-03-27,13 -Persons,55-59,531,2020-04-03,14 -Persons,60-64,486,2020-01-03,1 -Persons,60-64,604,2020-01-10,2 -Persons,60-64,562,2020-01-17,3 -Persons,60-64,535,2020-01-24,4 -Persons,60-64,525,2020-01-31,5 -Persons,60-64,512,2020-02-07,6 -Persons,60-64,490,2020-02-14,7 -Persons,60-64,511,2020-02-21,8 -Persons,60-64,494,2020-02-28,9 -Persons,60-64,481,2020-03-06,10 -Persons,60-64,500,2020-03-13,11 -Persons,60-64,469,2020-03-20,12 -Persons,60-64,522,2020-03-27,13 -Persons,60-64,733,2020-04-03,14 -Persons,65-69,696,2020-01-03,1 -Persons,65-69,857,2020-01-10,2 -Persons,65-69,803,2020-01-17,3 -Persons,65-69,791,2020-01-24,4 -Persons,65-69,732,2020-01-31,5 -Persons,65-69,689,2020-02-07,6 -Persons,65-69,641,2020-02-14,7 -Persons,65-69,695,2020-02-21,8 -Persons,65-69,682,2020-02-28,9 -Persons,65-69,679,2020-03-06,10 -Persons,65-69,685,2020-03-13,11 -Persons,65-69,686,2020-03-20,12 -Persons,65-69,699,2020-03-27,13 -Persons,65-69,1044,2020-04-03,14 -Persons,70-74,1164,2020-01-03,1 -Persons,70-74,1341,2020-01-10,2 -Persons,70-74,1210,2020-01-17,3 -Persons,70-74,1167,2020-01-24,4 -Persons,70-74,1196,2020-01-31,5 -Persons,70-74,1120,2020-02-07,6 -Persons,70-74,1113,2020-02-14,7 -Persons,70-74,1048,2020-02-21,8 -Persons,70-74,1111,2020-02-28,9 -Persons,70-74,1090,2020-03-06,10 -Persons,70-74,1068,2020-03-13,11 -Persons,70-74,1094,2020-03-20,12 -Persons,70-74,1106,2020-03-27,13 -Persons,70-74,1690,2020-04-03,14 -Persons,75-79,1535,2020-01-03,1 -Persons,75-79,1724,2020-01-10,2 -Persons,75-79,1612,2020-01-17,3 -Persons,75-79,1474,2020-01-24,4 -Persons,75-79,1445,2020-01-31,5 -Persons,75-79,1358,2020-02-07,6 -Persons,75-79,1305,2020-02-14,7 -Persons,75-79,1338,2020-02-21,8 -Persons,75-79,1255,2020-02-28,9 -Persons,75-79,1325,2020-03-06,10 -Persons,75-79,1366,2020-03-13,11 -Persons,75-79,1373,2020-03-20,12 -Persons,75-79,1397,2020-03-27,13 -Persons,75-79,2179,2020-04-03,14 -Persons,80-84,2049,2020-01-03,1 -Persons,80-84,2290,2020-01-10,2 -Persons,80-84,2103,2020-01-17,3 -Persons,80-84,1863,2020-01-24,4 -Persons,80-84,1811,2020-01-31,5 -Persons,80-84,1698,2020-02-07,6 -Persons,80-84,1704,2020-02-14,7 -Persons,80-84,1696,2020-02-21,8 -Persons,80-84,1713,2020-02-28,9 -Persons,80-84,1798,2020-03-06,10 -Persons,80-84,1738,2020-03-13,11 -Persons,80-84,1694,2020-03-20,12 -Persons,80-84,1850,2020-03-27,13 -Persons,80-84,2826,2020-04-03,14 -Persons,85-89,2457,2020-01-03,1 -Persons,85-89,2697,2020-01-10,2 -Persons,85-89,2421,2020-01-17,3 -Persons,85-89,2188,2020-01-24,4 -Persons,85-89,2124,2020-01-31,5 -Persons,85-89,2040,2020-02-07,6 -Persons,85-89,2039,2020-02-14,7 -Persons,85-89,1927,2020-02-21,8 -Persons,85-89,2015,2020-02-28,9 -Persons,85-89,1969,2020-03-06,10 -Persons,85-89,1951,2020-03-13,11 -Persons,85-89,1902,2020-03-20,12 -Persons,85-89,2016,2020-03-27,13 -Persons,85-89,3015,2020-04-03,14 -Persons,90+,2898,2020-01-03,1 -Persons,90+,3297,2020-01-10,2 -Persons,90+,2924,2020-01-17,3 -Persons,90+,2626,2020-01-24,4 -Persons,90+,2583,2020-01-31,5 -Persons,90+,2433,2020-02-07,6 -Persons,90+,2517,2020-02-14,7 -Persons,90+,2475,2020-02-21,8 -Persons,90+,2398,2020-02-28,9 -Persons,90+,2391,2020-03-06,10 -Persons,90+,2483,2020-03-13,11 -Persons,90+,2302,2020-03-20,12 -Persons,90+,2428,2020-03-27,13 -Persons,90+,3413,2020-04-03,14 -Males,Under 1 year,30,2020-01-03,1 -Males,Under 1 year,29,2020-01-10,2 -Males,Under 1 year,38,2020-01-17,3 -Males,Under 1 year,28,2020-01-24,4 -Males,Under 1 year,22,2020-01-31,5 -Males,Under 1 year,14,2020-02-07,6 -Males,Under 1 year,29,2020-02-14,7 -Males,Under 1 year,32,2020-02-21,8 -Males,Under 1 year,30,2020-02-28,9 -Males,Under 1 year,31,2020-03-06,10 -Males,Under 1 year,24,2020-03-13,11 -Males,Under 1 year,25,2020-03-20,12 -Males,Under 1 year,27,2020-03-27,13 -Males,Under 1 year,26,2020-04-03,14 -Males,1-4,5,2020-01-03,1 -Males,1-4,4,2020-01-10,2 -Males,1-4,4,2020-01-17,3 -Males,1-4,6,2020-01-24,4 -Males,1-4,4,2020-01-31,5 -Males,1-4,5,2020-02-07,6 -Males,1-4,4,2020-02-14,7 -Males,1-4,5,2020-02-21,8 -Males,1-4,6,2020-02-28,9 -Males,1-4,7,2020-03-06,10 -Males,1-4,5,2020-03-13,11 -Males,1-4,2,2020-03-20,12 -Males,1-4,3,2020-03-27,13 -Males,1-4,2,2020-04-03,14 -Males,5-9,2,2020-01-03,1 -Males,5-9,4,2020-01-10,2 -Males,5-9,4,2020-01-17,3 -Males,5-9,4,2020-01-24,4 -Males,5-9,4,2020-01-31,5 -Males,5-9,2,2020-02-07,6 -Males,5-9,1,2020-02-14,7 -Males,5-9,4,2020-02-21,8 -Males,5-9,4,2020-02-28,9 -Males,5-9,1,2020-03-06,10 -Males,5-9,1,2020-03-13,11 -Males,5-9,3,2020-03-20,12 -Males,5-9,1,2020-03-27,13 -Males,5-9,2,2020-04-03,14 -Males,10-14,1,2020-01-03,1 -Males,10-14,7,2020-01-10,2 -Males,10-14,3,2020-01-17,3 -Males,10-14,4,2020-01-24,4 -Males,10-14,3,2020-01-31,5 -Males,10-14,4,2020-02-07,6 -Males,10-14,3,2020-02-14,7 -Males,10-14,2,2020-02-21,8 -Males,10-14,5,2020-02-28,9 -Males,10-14,2,2020-03-06,10 -Males,10-14,2,2020-03-13,11 -Males,10-14,3,2020-03-20,12 -Males,10-14,1,2020-03-27,13 -Males,10-14,3,2020-04-03,14 -Males,15-19,5,2020-01-03,1 -Males,15-19,8,2020-01-10,2 -Males,15-19,5,2020-01-17,3 -Males,15-19,14,2020-01-24,4 -Males,15-19,17,2020-01-31,5 -Males,15-19,8,2020-02-07,6 -Males,15-19,9,2020-02-14,7 -Males,15-19,14,2020-02-21,8 -Males,15-19,16,2020-02-28,9 -Males,15-19,13,2020-03-06,10 -Males,15-19,13,2020-03-13,11 -Males,15-19,11,2020-03-20,12 -Males,15-19,8,2020-03-27,13 -Males,15-19,7,2020-04-03,14 -Males,20-24,7,2020-01-03,1 -Males,20-24,14,2020-01-10,2 -Males,20-24,21,2020-01-17,3 -Males,20-24,23,2020-01-24,4 -Males,20-24,16,2020-01-31,5 -Males,20-24,23,2020-02-07,6 -Males,20-24,19,2020-02-14,7 -Males,20-24,14,2020-02-21,8 -Males,20-24,19,2020-02-28,9 -Males,20-24,16,2020-03-06,10 -Males,20-24,26,2020-03-13,11 -Males,20-24,17,2020-03-20,12 -Males,20-24,11,2020-03-27,13 -Males,20-24,12,2020-04-03,14 -Males,25-29,7,2020-01-03,1 -Males,25-29,28,2020-01-10,2 -Males,25-29,31,2020-01-17,3 -Males,25-29,31,2020-01-24,4 -Males,25-29,19,2020-01-31,5 -Males,25-29,11,2020-02-07,6 -Males,25-29,19,2020-02-14,7 -Males,25-29,17,2020-02-21,8 -Males,25-29,21,2020-02-28,9 -Males,25-29,27,2020-03-06,10 -Males,25-29,20,2020-03-13,11 -Males,25-29,22,2020-03-20,12 -Males,25-29,22,2020-03-27,13 -Males,25-29,22,2020-04-03,14 -Males,30-34,21,2020-01-03,1 -Males,30-34,28,2020-01-10,2 -Males,30-34,29,2020-01-17,3 -Males,30-34,22,2020-01-24,4 -Males,30-34,40,2020-01-31,5 -Males,30-34,24,2020-02-07,6 -Males,30-34,27,2020-02-14,7 -Males,30-34,39,2020-02-21,8 -Males,30-34,32,2020-02-28,9 -Males,30-34,33,2020-03-06,10 -Males,30-34,41,2020-03-13,11 -Males,30-34,25,2020-03-20,12 -Males,30-34,40,2020-03-27,13 -Males,30-34,39,2020-04-03,14 -Males,35-39,32,2020-01-03,1 -Males,35-39,46,2020-01-10,2 -Males,35-39,49,2020-01-17,3 -Males,35-39,45,2020-01-24,4 -Males,35-39,45,2020-01-31,5 -Males,35-39,53,2020-02-07,6 -Males,35-39,52,2020-02-14,7 -Males,35-39,46,2020-02-21,8 -Males,35-39,51,2020-02-28,9 -Males,35-39,45,2020-03-06,10 -Males,35-39,48,2020-03-13,11 -Males,35-39,47,2020-03-20,12 -Males,35-39,40,2020-03-27,13 -Males,35-39,36,2020-04-03,14 -Males,40-44,43,2020-01-03,1 -Males,40-44,52,2020-01-10,2 -Males,40-44,72,2020-01-17,3 -Males,40-44,79,2020-01-24,4 -Males,40-44,58,2020-01-31,5 -Males,40-44,55,2020-02-07,6 -Males,40-44,58,2020-02-14,7 -Males,40-44,72,2020-02-21,8 -Males,40-44,64,2020-02-28,9 -Males,40-44,69,2020-03-06,10 -Males,40-44,50,2020-03-13,11 -Males,40-44,63,2020-03-20,12 -Males,40-44,65,2020-03-27,13 -Males,40-44,67,2020-04-03,14 -Males,45-49,62,2020-01-03,1 -Males,45-49,114,2020-01-10,2 -Males,45-49,106,2020-01-17,3 -Males,45-49,90,2020-01-24,4 -Males,45-49,107,2020-01-31,5 -Males,45-49,95,2020-02-07,6 -Males,45-49,99,2020-02-14,7 -Males,45-49,105,2020-02-21,8 -Males,45-49,95,2020-02-28,9 -Males,45-49,93,2020-03-06,10 -Males,45-49,109,2020-03-13,11 -Males,45-49,99,2020-03-20,12 -Males,45-49,97,2020-03-27,13 -Males,45-49,124,2020-04-03,14 -Males,50-54,137,2020-01-03,1 -Males,50-54,156,2020-01-10,2 -Males,50-54,200,2020-01-17,3 -Males,50-54,181,2020-01-24,4 -Males,50-54,180,2020-01-31,5 -Males,50-54,175,2020-02-07,6 -Males,50-54,172,2020-02-14,7 -Males,50-54,140,2020-02-21,8 -Males,50-54,147,2020-02-28,9 -Males,50-54,153,2020-03-06,10 -Males,50-54,168,2020-03-13,11 -Males,50-54,158,2020-03-20,12 -Males,50-54,146,2020-03-27,13 -Males,50-54,244,2020-04-03,14 -Males,55-59,191,2020-01-03,1 -Males,55-59,259,2020-01-10,2 -Males,55-59,295,2020-01-17,3 -Males,55-59,215,2020-01-24,4 -Males,55-59,247,2020-01-31,5 -Males,55-59,208,2020-02-07,6 -Males,55-59,209,2020-02-14,7 -Males,55-59,195,2020-02-21,8 -Males,55-59,189,2020-02-28,9 -Males,55-59,220,2020-03-06,10 -Males,55-59,246,2020-03-13,11 -Males,55-59,229,2020-03-20,12 -Males,55-59,235,2020-03-27,13 -Males,55-59,336,2020-04-03,14 -Males,60-64,275,2020-01-03,1 -Males,60-64,355,2020-01-10,2 -Males,60-64,338,2020-01-17,3 -Males,60-64,334,2020-01-24,4 -Males,60-64,324,2020-01-31,5 -Males,60-64,306,2020-02-07,6 -Males,60-64,287,2020-02-14,7 -Males,60-64,285,2020-02-21,8 -Males,60-64,286,2020-02-28,9 -Males,60-64,278,2020-03-06,10 -Males,60-64,296,2020-03-13,11 -Males,60-64,281,2020-03-20,12 -Males,60-64,286,2020-03-27,13 -Males,60-64,453,2020-04-03,14 -Males,65-69,415,2020-01-03,1 -Males,65-69,509,2020-01-10,2 -Males,65-69,471,2020-01-17,3 -Males,65-69,482,2020-01-24,4 -Males,65-69,437,2020-01-31,5 -Males,65-69,423,2020-02-07,6 -Males,65-69,400,2020-02-14,7 -Males,65-69,400,2020-02-21,8 -Males,65-69,417,2020-02-28,9 -Males,65-69,388,2020-03-06,10 -Males,65-69,424,2020-03-13,11 -Males,65-69,404,2020-03-20,12 -Males,65-69,423,2020-03-27,13 -Males,65-69,662,2020-04-03,14 -Males,70-74,697,2020-01-03,1 -Males,70-74,761,2020-01-10,2 -Males,70-74,690,2020-01-17,3 -Males,70-74,663,2020-01-24,4 -Males,70-74,683,2020-01-31,5 -Males,70-74,626,2020-02-07,6 -Males,70-74,660,2020-02-14,7 -Males,70-74,598,2020-02-21,8 -Males,70-74,647,2020-02-28,9 -Males,70-74,646,2020-03-06,10 -Males,70-74,625,2020-03-13,11 -Males,70-74,629,2020-03-20,12 -Males,70-74,666,2020-03-27,13 -Males,70-74,1039,2020-04-03,14 -Males,75-79,826,2020-01-03,1 -Males,75-79,924,2020-01-10,2 -Males,75-79,886,2020-01-17,3 -Males,75-79,819,2020-01-24,4 -Males,75-79,827,2020-01-31,5 -Males,75-79,713,2020-02-07,6 -Males,75-79,726,2020-02-14,7 -Males,75-79,778,2020-02-21,8 -Males,75-79,709,2020-02-28,9 -Males,75-79,725,2020-03-06,10 -Males,75-79,748,2020-03-13,11 -Males,75-79,763,2020-03-20,12 -Males,75-79,788,2020-03-27,13 -Males,75-79,1303,2020-04-03,14 -Males,80-84,1053,2020-01-03,1 -Males,80-84,1172,2020-01-10,2 -Males,80-84,1080,2020-01-17,3 -Males,80-84,951,2020-01-24,4 -Males,80-84,919,2020-01-31,5 -Males,80-84,875,2020-02-07,6 -Males,80-84,870,2020-02-14,7 -Males,80-84,894,2020-02-21,8 -Males,80-84,871,2020-02-28,9 -Males,80-84,938,2020-03-06,10 -Males,80-84,904,2020-03-13,11 -Males,80-84,892,2020-03-20,12 -Males,80-84,1005,2020-03-27,13 -Males,80-84,1570,2020-04-03,14 -Males,85-89,1098,2020-01-03,1 -Males,85-89,1231,2020-01-10,2 -Males,85-89,1117,2020-01-17,3 -Males,85-89,1014,2020-01-24,4 -Males,85-89,970,2020-01-31,5 -Males,85-89,943,2020-02-07,6 -Males,85-89,995,2020-02-14,7 -Males,85-89,906,2020-02-21,8 -Males,85-89,956,2020-02-28,9 -Males,85-89,932,2020-03-06,10 -Males,85-89,935,2020-03-13,11 -Males,85-89,905,2020-03-20,12 -Males,85-89,984,2020-03-27,13 -Males,85-89,1520,2020-04-03,14 -Males,90+,982,2020-01-03,1 -Males,90+,1127,2020-01-10,2 -Males,90+,991,2020-01-17,3 -Males,90+,910,2020-01-24,4 -Males,90+,872,2020-01-31,5 -Males,90+,843,2020-02-07,6 -Males,90+,852,2020-02-14,7 -Males,90+,893,2020-02-21,8 -Males,90+,870,2020-02-28,9 -Males,90+,841,2020-03-06,10 -Males,90+,885,2020-03-13,11 -Males,90+,820,2020-03-20,12 -Males,90+,883,2020-03-27,13 -Males,90+,1327,2020-04-03,14 -Females,Under 1 year,18,2020-01-03,1 -Females,Under 1 year,21,2020-01-10,2 -Females,Under 1 year,31,2020-01-17,3 -Females,Under 1 year,25,2020-01-24,4 -Females,Under 1 year,28,2020-01-31,5 -Females,Under 1 year,16,2020-02-07,6 -Females,Under 1 year,14,2020-02-14,7 -Females,Under 1 year,19,2020-02-21,8 -Females,Under 1 year,19,2020-02-28,9 -Females,Under 1 year,25,2020-03-06,10 -Females,Under 1 year,29,2020-03-13,11 -Females,Under 1 year,19,2020-03-20,12 -Females,Under 1 year,22,2020-03-27,13 -Females,Under 1 year,25,2020-04-03,14 -Females,1-4,3,2020-01-03,1 -Females,1-4,5,2020-01-10,2 -Females,1-4,3,2020-01-17,3 -Females,1-4,3,2020-01-24,4 -Females,1-4,2,2020-01-31,5 -Females,1-4,3,2020-02-07,6 -Females,1-4,2,2020-02-14,7 -Females,1-4,0,2020-02-21,8 -Females,1-4,1,2020-02-28,9 -Females,1-4,4,2020-03-06,10 -Females,1-4,8,2020-03-13,11 -Females,1-4,0,2020-03-20,12 -Females,1-4,5,2020-03-27,13 -Females,1-4,6,2020-04-03,14 -Females,5-9,2,2020-01-03,1 -Females,5-9,4,2020-01-10,2 -Females,5-9,1,2020-01-17,3 -Females,5-9,0,2020-01-24,4 -Females,5-9,1,2020-01-31,5 -Females,5-9,2,2020-02-07,6 -Females,5-9,1,2020-02-14,7 -Females,5-9,2,2020-02-21,8 -Females,5-9,2,2020-02-28,9 -Females,5-9,1,2020-03-06,10 -Females,5-9,2,2020-03-13,11 -Females,5-9,3,2020-03-20,12 -Females,5-9,0,2020-03-27,13 -Females,5-9,3,2020-04-03,14 -Females,10-14,3,2020-01-03,1 -Females,10-14,2,2020-01-10,2 -Females,10-14,1,2020-01-17,3 -Females,10-14,4,2020-01-24,4 -Females,10-14,1,2020-01-31,5 -Females,10-14,0,2020-02-07,6 -Females,10-14,1,2020-02-14,7 -Females,10-14,5,2020-02-21,8 -Females,10-14,2,2020-02-28,9 -Females,10-14,5,2020-03-06,10 -Females,10-14,4,2020-03-13,11 -Females,10-14,1,2020-03-20,12 -Females,10-14,3,2020-03-27,13 -Females,10-14,5,2020-04-03,14 -Females,15-19,1,2020-01-03,1 -Females,15-19,8,2020-01-10,2 -Females,15-19,5,2020-01-17,3 -Females,15-19,1,2020-01-24,4 -Females,15-19,6,2020-01-31,5 -Females,15-19,2,2020-02-07,6 -Females,15-19,7,2020-02-14,7 -Females,15-19,6,2020-02-21,8 -Females,15-19,8,2020-02-28,9 -Females,15-19,8,2020-03-06,10 -Females,15-19,5,2020-03-13,11 -Females,15-19,4,2020-03-20,12 -Females,15-19,4,2020-03-27,13 -Females,15-19,2,2020-04-03,14 -Females,20-24,4,2020-01-03,1 -Females,20-24,9,2020-01-10,2 -Females,20-24,4,2020-01-17,3 -Females,20-24,7,2020-01-24,4 -Females,20-24,7,2020-01-31,5 -Females,20-24,11,2020-02-07,6 -Females,20-24,7,2020-02-14,7 -Females,20-24,4,2020-02-21,8 -Females,20-24,6,2020-02-28,9 -Females,20-24,7,2020-03-06,10 -Females,20-24,13,2020-03-13,11 -Females,20-24,5,2020-03-20,12 -Females,20-24,6,2020-03-27,13 -Females,20-24,8,2020-04-03,14 -Females,25-29,10,2020-01-03,1 -Females,25-29,9,2020-01-10,2 -Females,25-29,6,2020-01-17,3 -Females,25-29,5,2020-01-24,4 -Females,25-29,9,2020-01-31,5 -Females,25-29,12,2020-02-07,6 -Females,25-29,8,2020-02-14,7 -Females,25-29,12,2020-02-21,8 -Females,25-29,7,2020-02-28,9 -Females,25-29,12,2020-03-06,10 -Females,25-29,9,2020-03-13,11 -Females,25-29,9,2020-03-20,12 -Females,25-29,11,2020-03-27,13 -Females,25-29,10,2020-04-03,14 -Females,30-34,11,2020-01-03,1 -Females,30-34,18,2020-01-10,2 -Females,30-34,18,2020-01-17,3 -Females,30-34,16,2020-01-24,4 -Females,30-34,18,2020-01-31,5 -Females,30-34,14,2020-02-07,6 -Females,30-34,13,2020-02-14,7 -Females,30-34,21,2020-02-21,8 -Females,30-34,18,2020-02-28,9 -Females,30-34,20,2020-03-06,10 -Females,30-34,14,2020-03-13,11 -Females,30-34,16,2020-03-20,12 -Females,30-34,15,2020-03-27,13 -Females,30-34,15,2020-04-03,14 -Females,35-39,22,2020-01-03,1 -Females,35-39,22,2020-01-10,2 -Females,35-39,28,2020-01-17,3 -Females,35-39,34,2020-01-24,4 -Females,35-39,31,2020-01-31,5 -Females,35-39,18,2020-02-07,6 -Females,35-39,33,2020-02-14,7 -Females,35-39,31,2020-02-21,8 -Females,35-39,34,2020-02-28,9 -Females,35-39,27,2020-03-06,10 -Females,35-39,32,2020-03-13,11 -Females,35-39,19,2020-03-20,12 -Females,35-39,31,2020-03-27,13 -Females,35-39,31,2020-04-03,14 -Females,40-44,26,2020-01-03,1 -Females,40-44,33,2020-01-10,2 -Females,40-44,46,2020-01-17,3 -Females,40-44,37,2020-01-24,4 -Females,40-44,42,2020-01-31,5 -Females,40-44,40,2020-02-07,6 -Females,40-44,34,2020-02-14,7 -Females,40-44,45,2020-02-21,8 -Females,40-44,39,2020-02-28,9 -Females,40-44,35,2020-03-06,10 -Females,40-44,40,2020-03-13,11 -Females,40-44,37,2020-03-20,12 -Females,40-44,30,2020-03-27,13 -Females,40-44,39,2020-04-03,14 -Females,45-49,53,2020-01-03,1 -Females,45-49,77,2020-01-10,2 -Females,45-49,83,2020-01-17,3 -Females,45-49,70,2020-01-24,4 -Females,45-49,56,2020-01-31,5 -Females,45-49,62,2020-02-07,6 -Females,45-49,66,2020-02-14,7 -Females,45-49,77,2020-02-21,8 -Females,45-49,60,2020-02-28,9 -Females,45-49,62,2020-03-06,10 -Females,45-49,70,2020-03-13,11 -Females,45-49,61,2020-03-20,12 -Females,45-49,66,2020-03-27,13 -Females,45-49,96,2020-04-03,14 -Females,50-54,102,2020-01-03,1 -Females,50-54,123,2020-01-10,2 -Females,50-54,106,2020-01-17,3 -Females,50-54,99,2020-01-24,4 -Females,50-54,98,2020-01-31,5 -Females,50-54,114,2020-02-07,6 -Females,50-54,116,2020-02-14,7 -Females,50-54,92,2020-02-21,8 -Females,50-54,114,2020-02-28,9 -Females,50-54,105,2020-03-06,10 -Females,50-54,92,2020-03-13,11 -Females,50-54,87,2020-03-20,12 -Females,50-54,89,2020-03-27,13 -Females,50-54,132,2020-04-03,14 -Females,55-59,170,2020-01-03,1 -Females,55-59,167,2020-01-10,2 -Females,55-59,166,2020-01-17,3 -Females,55-59,166,2020-01-24,4 -Females,55-59,135,2020-01-31,5 -Females,55-59,163,2020-02-07,6 -Females,55-59,136,2020-02-14,7 -Females,55-59,151,2020-02-21,8 -Females,55-59,158,2020-02-28,9 -Females,55-59,138,2020-03-06,10 -Females,55-59,155,2020-03-13,11 -Females,55-59,161,2020-03-20,12 -Females,55-59,146,2020-03-27,13 -Females,55-59,195,2020-04-03,14 -Females,60-64,211,2020-01-03,1 -Females,60-64,249,2020-01-10,2 -Females,60-64,224,2020-01-17,3 -Females,60-64,201,2020-01-24,4 -Females,60-64,201,2020-01-31,5 -Females,60-64,206,2020-02-07,6 -Females,60-64,203,2020-02-14,7 -Females,60-64,226,2020-02-21,8 -Females,60-64,208,2020-02-28,9 -Females,60-64,203,2020-03-06,10 -Females,60-64,204,2020-03-13,11 -Females,60-64,188,2020-03-20,12 -Females,60-64,236,2020-03-27,13 -Females,60-64,280,2020-04-03,14 -Females,65-69,281,2020-01-03,1 -Females,65-69,348,2020-01-10,2 -Females,65-69,332,2020-01-17,3 -Females,65-69,309,2020-01-24,4 -Females,65-69,295,2020-01-31,5 -Females,65-69,266,2020-02-07,6 -Females,65-69,241,2020-02-14,7 -Females,65-69,295,2020-02-21,8 -Females,65-69,265,2020-02-28,9 -Females,65-69,291,2020-03-06,10 -Females,65-69,261,2020-03-13,11 -Females,65-69,282,2020-03-20,12 -Females,65-69,276,2020-03-27,13 -Females,65-69,382,2020-04-03,14 -Females,70-74,467,2020-01-03,1 -Females,70-74,580,2020-01-10,2 -Females,70-74,520,2020-01-17,3 -Females,70-74,504,2020-01-24,4 -Females,70-74,513,2020-01-31,5 -Females,70-74,494,2020-02-07,6 -Females,70-74,453,2020-02-14,7 -Females,70-74,450,2020-02-21,8 -Females,70-74,464,2020-02-28,9 -Females,70-74,444,2020-03-06,10 -Females,70-74,443,2020-03-13,11 -Females,70-74,465,2020-03-20,12 -Females,70-74,440,2020-03-27,13 -Females,70-74,651,2020-04-03,14 -Females,75-79,709,2020-01-03,1 -Females,75-79,800,2020-01-10,2 -Females,75-79,726,2020-01-17,3 -Females,75-79,655,2020-01-24,4 -Females,75-79,618,2020-01-31,5 -Females,75-79,645,2020-02-07,6 -Females,75-79,579,2020-02-14,7 -Females,75-79,560,2020-02-21,8 -Females,75-79,546,2020-02-28,9 -Females,75-79,600,2020-03-06,10 -Females,75-79,618,2020-03-13,11 -Females,75-79,610,2020-03-20,12 -Females,75-79,609,2020-03-27,13 -Females,75-79,876,2020-04-03,14 -Females,80-84,996,2020-01-03,1 -Females,80-84,1118,2020-01-10,2 -Females,80-84,1023,2020-01-17,3 -Females,80-84,912,2020-01-24,4 -Females,80-84,892,2020-01-31,5 -Females,80-84,823,2020-02-07,6 -Females,80-84,834,2020-02-14,7 -Females,80-84,802,2020-02-21,8 -Females,80-84,842,2020-02-28,9 -Females,80-84,860,2020-03-06,10 -Females,80-84,834,2020-03-13,11 -Females,80-84,802,2020-03-20,12 -Females,80-84,845,2020-03-27,13 -Females,80-84,1256,2020-04-03,14 -Females,85-89,1359,2020-01-03,1 -Females,85-89,1466,2020-01-10,2 -Females,85-89,1304,2020-01-17,3 -Females,85-89,1174,2020-01-24,4 -Females,85-89,1154,2020-01-31,5 -Females,85-89,1097,2020-02-07,6 -Females,85-89,1044,2020-02-14,7 -Females,85-89,1021,2020-02-21,8 -Females,85-89,1059,2020-02-28,9 -Females,85-89,1037,2020-03-06,10 -Females,85-89,1016,2020-03-13,11 -Females,85-89,997,2020-03-20,12 -Females,85-89,1032,2020-03-27,13 -Females,85-89,1495,2020-04-03,14 -Females,90+,1916,2020-01-03,1 -Females,90+,2170,2020-01-10,2 -Females,90+,1933,2020-01-17,3 -Females,90+,1716,2020-01-24,4 -Females,90+,1711,2020-01-31,5 -Females,90+,1590,2020-02-07,6 -Females,90+,1665,2020-02-14,7 -Females,90+,1582,2020-02-21,8 -Females,90+,1528,2020-02-28,9 -Females,90+,1550,2020-03-06,10 -Females,90+,1598,2020-03-13,11 -Females,90+,1482,2020-03-20,12 -Females,90+,1545,2020-03-27,13 -Females,90+,2086,2020-04-03,14 -Region,North East,673,2020-01-03,1 -Region,North East,707,2020-01-10,2 -Region,North East,647,2020-01-17,3 -Region,North East,612,2020-01-24,4 -Region,North East,561,2020-01-31,5 -Region,North East,564,2020-02-07,6 -Region,North East,573,2020-02-14,7 -Region,North East,539,2020-02-21,8 -Region,North East,572,2020-02-28,9 -Region,North East,568,2020-03-06,10 -Region,North East,590,2020-03-13,11 -Region,North East,522,2020-03-20,12 -Region,North East,542,2020-03-27,13 -Region,North East,770,2020-04-03,14 -Region,North West,1806,2020-01-03,1 -Region,North West,1932,2020-01-10,2 -Region,North West,1696,2020-01-17,3 -Region,North West,1529,2020-01-24,4 -Region,North West,1461,2020-01-31,5 -Region,North West,1529,2020-02-07,6 -Region,North West,1427,2020-02-14,7 -Region,North West,1477,2020-02-21,8 -Region,North West,1476,2020-02-28,9 -Region,North West,1490,2020-03-06,10 -Region,North West,1472,2020-03-13,11 -Region,North West,1443,2020-03-20,12 -Region,North West,1538,2020-03-27,13 -Region,North West,2137,2020-04-03,14 -Region,Yorkshire and The Humber,1240,2020-01-03,1 -Region,Yorkshire and The Humber,1339,2020-01-10,2 -Region,Yorkshire and The Humber,1278,2020-01-17,3 -Region,Yorkshire and The Humber,1187,2020-01-24,4 -Region,Yorkshire and The Humber,1136,2020-01-31,5 -Region,Yorkshire and The Humber,1072,2020-02-07,6 -Region,Yorkshire and The Humber,1059,2020-02-14,7 -Region,Yorkshire and The Humber,1087,2020-02-21,8 -Region,Yorkshire and The Humber,1078,2020-02-28,9 -Region,Yorkshire and The Humber,1112,2020-03-06,10 -Region,Yorkshire and The Humber,1053,2020-03-13,11 -Region,Yorkshire and The Humber,1012,2020-03-20,12 -Region,Yorkshire and The Humber,982,2020-03-27,13 -Region,Yorkshire and The Humber,1436,2020-04-03,14 -Region,East Midlands,1060,2020-01-03,1 -Region,East Midlands,1195,2020-01-10,2 -Region,East Midlands,1106,2020-01-17,3 -Region,East Midlands,1024,2020-01-24,4 -Region,East Midlands,1015,2020-01-31,5 -Region,East Midlands,922,2020-02-07,6 -Region,East Midlands,976,2020-02-14,7 -Region,East Midlands,924,2020-02-21,8 -Region,East Midlands,919,2020-02-28,9 -Region,East Midlands,930,2020-03-06,10 -Region,East Midlands,915,2020-03-13,11 -Region,East Midlands,947,2020-03-20,12 -Region,East Midlands,922,2020-03-27,13 -Region,East Midlands,1246,2020-04-03,14 -Region,West Midlands,1349,2020-01-03,1 -Region,West Midlands,1450,2020-01-10,2 -Region,West Midlands,1407,2020-01-17,3 -Region,West Midlands,1231,2020-01-24,4 -Region,West Midlands,1262,2020-01-31,5 -Region,West Midlands,1052,2020-02-07,6 -Region,West Midlands,1159,2020-02-14,7 -Region,West Midlands,1116,2020-02-21,8 -Region,West Midlands,1174,2020-02-28,9 -Region,West Midlands,1098,2020-03-06,10 -Region,West Midlands,1187,2020-03-13,11 -Region,West Midlands,1115,2020-03-20,12 -Region,West Midlands,1035,2020-03-27,13 -Region,West Midlands,1812,2020-04-03,14 -Region,East,1162,2020-01-03,1 -Region,East,1573,2020-01-10,2 -Region,East,1457,2020-01-17,3 -Region,East,1410,2020-01-24,4 -Region,East,1286,2020-01-31,5 -Region,East,1259,2020-02-07,6 -Region,East,1172,2020-02-14,7 -Region,East,1167,2020-02-21,8 -Region,East,1115,2020-02-28,9 -Region,East,1149,2020-03-06,10 -Region,East,1211,2020-03-13,11 -Region,East,1043,2020-03-20,12 -Region,East,1182,2020-03-27,13 -Region,East,1717,2020-04-03,14 -Region,London,1113,2020-01-03,1 -Region,London,1272,2020-01-10,2 -Region,London,1073,2020-01-17,3 -Region,London,1028,2020-01-24,4 -Region,London,1092,2020-01-31,5 -Region,London,987,2020-02-07,6 -Region,London,967,2020-02-14,7 -Region,London,1032,2020-02-21,8 -Region,London,1085,2020-02-28,9 -Region,London,982,2020-03-06,10 -Region,London,964,2020-03-13,11 -Region,London,1008,2020-03-20,12 -Region,London,1297,2020-03-27,13 -Region,London,2511,2020-04-03,14 -Region,South East,1814,2020-01-03,1 -Region,South East,2132,2020-01-10,2 -Region,South East,2064,2020-01-17,3 -Region,South East,1833,2020-01-24,4 -Region,South East,1820,2020-01-31,5 -Region,South East,1729,2020-02-07,6 -Region,South East,1688,2020-02-14,7 -Region,South East,1675,2020-02-21,8 -Region,South East,1587,2020-02-28,9 -Region,South East,1726,2020-03-06,10 -Region,South East,1751,2020-03-13,11 -Region,South East,1657,2020-03-20,12 -Region,South East,1822,2020-03-27,13 -Region,South East,2294,2020-04-03,14 -Region,South West,1225,2020-01-03,1 -Region,South West,1487,2020-01-10,2 -Region,South West,1466,2020-01-17,3 -Region,South West,1253,2020-01-24,4 -Region,South West,1233,2020-01-31,5 -Region,South West,1157,2020-02-07,6 -Region,South West,1169,2020-02-14,7 -Region,South West,1118,2020-02-21,8 -Region,South West,1133,2020-02-28,9 -Region,South West,1170,2020-03-06,10 -Region,South West,1174,2020-03-13,11 -Region,South West,1156,2020-03-20,12 -Region,South West,1092,2020-03-27,13 -Region,South West,1520,2020-04-03,14 -Region,Wales,787,2020-01-03,1 -Region,Wales,939,2020-01-10,2 -Region,Wales,767,2020-01-17,3 -Region,Wales,723,2020-01-24,4 -Region,Wales,727,2020-01-31,5 -Region,Wales,690,2020-02-07,6 -Region,Wales,728,2020-02-14,7 -Region,Wales,679,2020-02-21,8 -Region,Wales,651,2020-02-28,9 -Region,Wales,652,2020-03-06,10 -Region,Wales,675,2020-03-13,11 -Region,Wales,719,2020-03-20,12 -Region,Wales,719,2020-03-27,13 -Region,Wales,920,2020-04-03,14 diff --git a/working_files/ons_mortality.rda b/working_files/ons_mortality.rda deleted file mode 100644 index 04bc917..0000000 Binary files a/working_files/ons_mortality.rda and /dev/null differ