From 59bdbf6a781480aae1aafa0d0b7fdff1d55677c4 Mon Sep 17 00:00:00 2001 From: Giles Dring Date: Fri, 10 Jan 2025 10:51:20 +0000 Subject: [PATCH] style: bar chart display in observatory --- oi-lume-viz-config.ts | 9 +- pipelines/observatory/census.ipynb | 46 +- src/_includes/css/colour.css | 2 + src/observatory/demographics/_data.yml | 53 ++ .../demographics/_data/age/by_geography.csv | 693 +++++++++--------- .../demographics/_data/age/by_ward.csv | 31 + .../_data/ethnic_group/by_geography.csv | 7 + .../_data/ethnic_group/by_ward.csv | 31 + .../demographics/_data/sex/by_geography.csv | 7 + .../demographics/_data/sex/by_ward.csv | 31 + .../demographics/_partials/age.vto | 50 +- .../demographics/_partials/ethnic-group.vto | 31 +- 12 files changed, 589 insertions(+), 402 deletions(-) create mode 100644 src/observatory/demographics/_data.yml create mode 100644 src/observatory/demographics/_data/age/by_ward.csv create mode 100644 src/observatory/demographics/_data/ethnic_group/by_ward.csv create mode 100644 src/observatory/demographics/_data/sex/by_ward.csv diff --git a/oi-lume-viz-config.ts b/oi-lume-viz-config.ts index 8d7f110..69be968 100644 --- a/oi-lume-viz-config.ts +++ b/oi-lume-viz-config.ts @@ -10,14 +10,15 @@ const names = await getColourVariables( ); const series = [ - "yellow", "pink", "green", - "lightyellow", + "yellow", "lightpink", "lightgreen", + "lightyellow", + "deeppink", "darkgreen", - "darkpink", + "deepyellow", "midgrey", "notquitedarkgrey", "darkgrey", @@ -25,7 +26,7 @@ const series = [ export default { colour: { - names, + names: names, series, }, font: { diff --git a/pipelines/observatory/census.ipynb b/pipelines/observatory/census.ipynb index caf8cfb..b6baae9 100644 --- a/pipelines/observatory/census.ipynb +++ b/pipelines/observatory/census.ipynb @@ -2,9 +2,20 @@ "cells": [ { "cell_type": "code", - "execution_count": 1, + "execution_count": 38, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 38, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "import sys, os\n", "os.path.abspath('..') in sys.path or sys.path.append(os.path.abspath('..'))" @@ -12,7 +23,7 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 39, "metadata": {}, "outputs": [], "source": [ @@ -23,7 +34,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 40, "metadata": {}, "outputs": [], "source": [ @@ -33,7 +44,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 41, "metadata": {}, "outputs": [], "source": [ @@ -42,12 +53,12 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 46, "metadata": {}, "outputs": [], "source": [ "categories = etl.lookup(\n", - " etl.fromcsv(OPEN_DATA / 'census_categories.csv').sort('sortorder'),\n", + " etl.fromcsv(OPEN_DATA / 'census_categories.csv').convertnumbers().sort('sortorder'),\n", " key='variable',\n", " value='category'\n", ")" @@ -55,11 +66,11 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 50, "metadata": {}, "outputs": [], "source": [ - "def prepare_data(variable, folder):\n", + "def prepare_data(variable, folder, ward_sorter=None):\n", " folder.mkdir(exist_ok=True, parents=True)\n", " data = (\n", " census\n", @@ -70,17 +81,22 @@ " .cut('geography_code', 'geography_name', *categories.get(variable))\n", " )\n", " data.tocsv(folder / 'by_geography.csv')\n", + " (\n", + " data\n", + " .select(lambda r: r.geography_code.startswith('E05'))\n", + " .addfield('order', ward_sorter)\n", + " .sort('order')\n", + " .tocsv(folder / 'by_ward.csv')\n", + " )\n", "\n", - "prepare_data('Age', BRADFORD_DG / 'age')\n", - "prepare_data('Sex', BRADFORD_DG / 'sex')\n", - "prepare_data('Ethnic group', BRADFORD_DG / 'ethnic_group')" + "prepare_data('Age', BRADFORD_DG / 'age', ward_sorter=lambda r: -sum(r[f] for f in categories.get('Age')[:5]))\n", + "prepare_data('Sex', BRADFORD_DG / 'sex', ward_sorter=lambda r: r.Female)\n", + "prepare_data('Ethnic group', BRADFORD_DG / 'ethnic_group', ward_sorter=lambda r: -r['Asian, Asian British or Asian Welsh'])" ] }, { - "cell_type": "code", - "execution_count": null, + "cell_type": "markdown", "metadata": {}, - "outputs": [], "source": [] }, { diff --git a/src/_includes/css/colour.css b/src/_includes/css/colour.css index 5ed8d63..0f4de6a 100644 --- a/src/_includes/css/colour.css +++ b/src/_includes/css/colour.css @@ -9,10 +9,12 @@ --color-pink: #F4ACCD; --color-lightpink: #F8D9E7; --color-darkpink: #C9AFBB; + --color-deeppink: #e1699f; --color-green: #45D108; --color-lightgreen: #ACE892; --color-darkgreen: #437e2a; --color-yellow: #E0B942; + --color-deepyellow: #be9006; --color-lightyellow: #EAD79F; --color-grey: #c7c7c7; --color-midgrey: #d5d3d0; diff --git a/src/observatory/demographics/_data.yml b/src/observatory/demographics/_data.yml new file mode 100644 index 0000000..deb9eaa --- /dev/null +++ b/src/observatory/demographics/_data.yml @@ -0,0 +1,53 @@ +chart_config: + bar: + category: geography_name + stacked: true + width: 600 + legend: + show: true + position: bottom + colours: + 4 and under: '#F8D9E7' + 5 to 9: '#F4ACCD' + 10 to 15: '#e1699f' + 16 to 19: '#ACE892' + 20 to 24: '#45D108' + 25 to 34: '#437e2a' + 35 to 49: '#EAD79F' + 50 to 64: '#E0B942' + 65 to 74: '#be9006' + # 75 to 84: '#717171' + # TODO Raise issue against OI Lume Viz - if the last category is specified, all seem to get the same colour + # 85 and over': '#d5d3d0' + + Asian or Asian British/Welsh: '#F4ACCD' + Black, Black British/Welsh, Caribbean or African: '#45D108' + Mixed or Multiple: '#e1699f' + White: '#E0B942' + # Other: '#aaa' + + + axis: + y: + ticks: [] + grid: + show: false + x: + grid: + show: false + min: 0 + max: 100 + ticks: + - value: 0 + label: 0% + - value: 25 + label: 25% + - value: 50 + label: 50% + - value: 75 + label: 75% + - value: 100 + label: 100% + + + diff --git a/src/observatory/demographics/_data/age/by_geography.csv b/src/observatory/demographics/_data/age/by_geography.csv index 3b265dd..3b97dab 100644 --- a/src/observatory/demographics/_data/age/by_geography.csv +++ b/src/observatory/demographics/_data/age/by_geography.csv @@ -1,343 +1,350 @@ -geography_code,geography_name,Aged 4 years and under,Aged 5 to 9 years,Aged 85 years and over,Aged 10 to 15 years,Aged 16 to 19 years,Aged 20 to 24 years,Aged 25 to 34 years,Aged 35 to 49 years,Aged 50 to 64 years,Aged 65 to 74 years,Aged 75 to 84 years -E01010568,Bradford 016A,5.8,4.8,3.0,6.9,2.7,3.8,9.7,19.4,20.7,14.4,8.8 -E01010569,Bradford 016B,5.3,6.9,3.1,6.7,3.2,3.9,11.6,20.5,19.6,13.0,6.1 -E01010570,Bradford 018A,4.3,5.1,4.1,6.1,3.9,3.7,5.8,17.5,22.4,15.6,11.4 -E01010571,Bradford 016C,6.9,7.4,1.7,7.1,3.4,5.8,16.5,20.5,16.0,9.4,5.4 -E01010572,Bradford 016D,4.4,5.0,4.2,5.7,2.7,2.6,11.9,17.3,24.3,13.1,8.8 -E01010573,Bradford 013A,4.8,5.3,2.3,5.8,4.5,2.7,7.2,18.7,27.7,14.6,6.5 -E01010574,Bradford 013B,3.3,6.0,4.7,5.5,3.0,2.9,6.8,17.0,21.0,18.3,11.5 -E01010575,Bradford 013C,2.9,5.1,3.4,5.7,3.9,3.1,8.0,17.7,22.1,16.7,11.4 -E01010576,Bradford 016E,6.4,4.8,5.0,4.1,2.9,4.8,9.9,15.7,24.7,13.7,8.1 -E01010577,Bradford 013D,4.1,5.0,2.8,7.9,5.1,3.5,6.5,18.9,24.1,14.0,8.1 -E01010578,Bradford 015A,2.9,4.8,4.1,4.2,2.9,5.9,11.3,20.8,23.9,12.0,7.1 -E01010579,Bradford 010A,2.7,4.6,5.4,5.9,4.0,4.0,6.9,16.9,22.9,15.0,11.7 -E01010580,Bradford 010B,4.8,5.8,3.1,8.2,4.0,3.5,8.2,19.8,21.5,12.9,8.2 -E01010581,Bradford 015B,5.8,7.2,1.8,8.1,4.4,4.0,13.5,19.5,20.1,9.9,5.8 -E01010582,Bradford 015C,5.4,5.1,3.9,8.1,4.3,4.6,15.0,23.5,18.6,7.5,4.0 -E01010583,Bradford 018B,5.1,7.0,2.0,8.5,3.2,3.6,10.5,19.1,21.9,12.5,6.8 -E01010584,Bradford 015D,4.6,5.3,2.5,7.5,2.6,6.2,16.9,19.2,20.8,8.8,5.6 -E01010585,Bradford 015E,4.0,5.5,6.5,7.4,4.2,3.2,10.8,20.4,18.2,11.7,8.1 -E01010586,Bradford 022A,3.9,4.4,2.9,5.4,3.7,3.1,10.4,14.5,25.5,16.5,9.7 -E01010587,Bradford 022B,4.7,6.3,1.6,8.6,3.6,3.6,10.9,21.8,23.4,10.3,5.2 -E01010588,Bradford 022C,4.5,4.9,2.7,8.9,3.5,4.0,10.1,19.0,23.5,12.9,5.9 -E01010589,Bradford 022D,3.2,3.5,3.2,5.0,3.1,4.6,8.0,17.9,22.4,17.6,11.4 -E01010590,Bradford 031A,5.9,5.9,2.2,6.7,3.6,3.4,11.7,17.9,24.4,12.9,5.4 -E01010591,Bradford 022E,6.4,6.9,3.2,8.4,3.5,4.0,12.0,18.0,17.8,12.3,7.5 -E01010592,Bradford 031B,4.6,6.4,2.6,6.4,3.4,3.1,10.3,19.8,18.1,14.9,10.4 -E01010593,Bradford 022F,3.5,5.0,2.9,6.3,4.4,4.5,11.1,18.2,21.8,11.9,10.4 -E01010594,Bradford 031C,4.0,5.9,2.0,8.0,3.8,4.9,11.3,16.8,24.1,12.4,6.9 -E01010595,Bradford 031D,5.9,7.0,1.5,8.1,4.7,4.5,13.6,20.6,20.5,8.2,5.2 -E01010596,Bradford 022G,4.2,6.4,4.6,6.8,4.0,3.1,9.1,17.8,21.1,15.2,7.8 -E01010597,Bradford 028A,6.3,7.3,1.9,8.2,3.6,4.7,15.1,17.6,21.7,9.5,4.1 -E01010598,Bradford 028B,5.7,5.6,2.8,7.9,5.0,6.6,13.2,17.0,19.7,10.1,6.4 -E01010599,Bradford 028C,7.1,9.0,1.8,9.4,5.4,5.5,14.4,19.9,17.0,7.5,3.0 -E01010600,Bradford 028D,6.4,7.6,2.8,9.7,5.6,6.4,12.0,20.2,16.2,8.1,5.0 -E01010601,Bradford 032A,7.8,8.0,2.2,8.8,4.9,4.9,13.8,20.7,17.6,6.9,4.3 -E01010602,Bradford 028E,7.6,6.5,2.4,9.2,4.7,5.7,14.4,20.2,17.3,7.0,5.0 -E01010603,Bradford 024A,6.1,7.1,2.2,8.1,3.4,5.2,14.5,17.3,20.0,9.7,6.3 -E01010604,Bradford 024B,5.2,5.3,4.5,5.0,4.8,4.6,12.0,15.5,21.0,12.3,9.8 -E01010605,Bradford 024C,7.2,7.4,1.0,10.5,4.9,5.4,12.7,18.0,21.2,7.9,3.7 -E01010606,Bradford 064E,8.3,7.5,1.5,11.2,7.6,9.0,16.3,19.7,12.7,4.3,2.0 -E01010607,Bradford 064C,8.1,9.5,0.4,10.4,7.3,8.1,19.4,20.2,11.5,3.3,1.9 -E01010608,Bradford 045A,6.9,8.7,0.3,13.1,7.9,8.6,14.3,22.6,11.5,3.9,2.1 -E01010609,Bradford 046A,8.4,7.9,1.6,8.1,4.5,4.4,12.9,20.0,18.1,9.2,4.9 -E01010610,Bradford 046B,10.8,8.4,0.8,9.2,5.4,7.0,16.3,19.8,15.3,5.1,1.9 -E01010611,Bradford 046C,9.7,9.1,0.9,8.5,4.5,6.8,16.6,20.1,13.9,6.9,3.1 -E01010612,Bradford 052A,8.6,10.8,0.7,13.9,6.4,4.8,15.7,19.3,13.6,4.5,1.9 -E01010613,Bradford 045B,7.8,6.1,1.5,8.5,6.4,7.2,12.5,19.0,19.6,7.3,4.0 -E01010614,Bradford 046D,5.9,7.6,1.2,12.5,11.3,7.1,12.6,16.7,15.3,6.4,3.2 -E01010615,Bradford 053A,7.1,7.2,1.9,8.2,5.7,5.9,12.6,20.2,18.9,8.4,3.9 -E01010616,Bradford 053B,7.2,11.1,0.8,12.1,6.9,6.5,11.6,21.4,12.7,5.9,3.7 -E01010617,Bradford 064B,9.8,10.5,1.0,10.1,5.2,6.9,14.5,23.3,11.9,4.7,2.0 -E01010618,Bradford 038A,8.4,8.3,0.6,11.7,7.3,9.3,14.5,18.7,14.9,4.9,1.4 -E01010619,Bradford 038B,8.9,8.3,0.8,11.2,6.8,8.4,15.4,20.5,12.8,5.1,1.9 -E01010620,Bradford 042A,7.3,8.4,1.4,13.2,6.7,6.8,13.9,22.9,12.0,4.7,2.6 -E01010621,Bradford 042B,6.8,8.9,0.9,13.6,9.3,9.2,14.5,20.9,11.7,3.0,1.3 -E01010622,Bradford 042C,9.3,9.9,0.8,12.6,7.4,7.3,13.8,21.6,11.4,3.8,2.1 -E01010623,Bradford 042D,7.4,9.4,1.1,11.0,5.8,7.5,15.7,20.4,12.2,6.8,2.7 -E01010624,Bradford 042E,6.1,8.6,0.6,11.7,8.6,9.7,13.9,21.5,12.6,4.0,2.8 -E01010625,Bradford 038C,8.4,10.7,0.4,14.1,8.7,7.3,12.7,21.0,10.8,4.3,1.6 -E01010626,Bradford 038D,8.9,8.3,1.0,13.0,9.0,7.4,13.2,21.2,13.0,3.8,1.3 -E01010627,Bradford 038E,8.9,7.9,0.8,10.3,5.6,7.1,14.8,20.9,15.3,5.7,2.6 -E01010628,Bradford 040A,7.3,7.4,3.9,9.1,4.7,4.4,12.8,17.7,15.9,10.9,5.9 -E01010629,Bradford 040B,6.0,8.2,1.6,11.9,7.5,8.2,11.4,21.7,12.3,7.3,3.8 -E01010630,Bradford 040C,10.0,11.4,1.7,10.6,4.6,5.4,12.1,23.1,12.1,5.6,3.6 -E01010631,Bradford 040D,6.2,10.3,0.4,12.6,7.1,4.8,12.0,20.0,17.4,5.8,3.2 -E01010632,Bradford 040E,10.6,10.5,0.8,11.3,4.4,7.1,15.6,20.6,13.1,4.8,1.2 -E01010633,Bradford 047A,6.6,5.5,2.1,7.5,4.8,4.0,12.0,18.7,19.5,13.4,6.0 -E01010634,Bradford 047B,5.5,4.7,3.4,6.2,4.1,5.2,13.3,15.9,23.8,11.4,6.4 -E01010635,Bradford 047C,7.1,7.3,2.1,7.5,4.2,6.2,14.1,16.4,20.8,9.4,5.0 -E01010636,Bradford 047D,3.5,5.0,3.6,6.3,3.8,6.0,10.6,18.7,23.8,12.0,6.7 -E01010637,Bradford 047E,4.0,5.4,0.8,24.1,13.0,5.7,8.6,15.8,14.6,5.8,2.2 -E01010638,Bradford 062A,3.8,4.6,3.6,4.2,2.6,3.6,9.3,15.8,26.2,17.5,8.9 -E01010639,Bradford 063C,4.8,6.8,2.9,5.8,2.8,3.5,13.7,19.3,19.3,12.9,8.1 -E01010640,Bradford 063A,5.9,6.0,2.2,6.3,3.8,5.4,16.4,20.5,19.2,9.5,4.8 -E01010641,Bradford 063B,3.5,5.1,5.3,5.8,5.1,3.4,8.7,18.1,18.9,16.8,9.3 -E01010642,Bradford 062B,4.4,5.1,4.4,5.4,2.6,3.8,10.2,15.0,23.5,15.5,10.1 -E01010643,Bradford 062E,4.0,4.4,2.5,5.3,2.6,3.9,18.1,17.9,23.9,11.6,5.8 -E01010644,Bradford 062D,6.7,7.1,3.3,7.4,3.4,4.3,13.9,20.8,18.6,8.7,5.9 -E01010645,Bradford 062C,4.9,5.5,1.9,5.9,3.8,3.8,11.9,20.8,21.7,12.7,6.9 -E01010646,Bradford 001A,3.3,3.3,5.7,5.6,3.3,2.5,4.7,14.3,23.7,18.2,15.1 -E01010647,Bradford 001B,3.3,5.3,2.8,6.5,3.7,2.0,7.8,15.7,20.8,19.8,12.2 -E01010648,Bradford 001C,3.3,4.9,4.3,5.3,3.3,2.1,6.2,15.1,23.7,17.7,14.2 -E01010649,Bradford 027A,5.6,5.8,1.4,7.3,4.4,5.4,15.9,19.6,21.0,8.6,4.8 -E01010650,Bradford 027B,8.3,10.2,0.6,13.3,7.8,5.2,13.7,21.8,14.1,3.3,1.6 -E01010651,Bradford 032B,6.6,7.7,2.3,9.2,5.2,4.2,14.6,18.1,19.2,8.3,4.7 -E01010652,Bradford 026A,5.3,4.8,3.6,6.3,3.1,6.1,12.0,16.4,19.7,12.8,9.9 -E01010653,Bradford 026B,7.5,10.1,1.1,9.4,5.4,4.6,14.0,19.7,16.6,7.3,4.2 -E01010654,Bradford 027C,7.1,9.8,1.1,10.8,5.8,6.2,13.5,21.6,15.1,6.4,2.5 -E01010655,Bradford 026C,8.0,9.3,0.7,11.0,7.4,5.7,14.3,19.6,15.1,4.8,3.9 -E01010656,Bradford 026D,5.5,5.8,3.7,7.9,5.6,5.3,11.3,17.7,20.8,9.3,6.9 -E01010657,Bradford 026E,6.7,6.0,2.2,7.0,3.5,5.0,17.4,17.0,20.7,9.0,5.5 -E01010658,Bradford 041A,7.9,9.7,0.7,12.0,7.4,6.3,13.0,22.0,12.5,5.7,2.8 -E01010659,Bradford 049A,8.9,11.2,0.7,11.9,6.3,6.7,10.8,23.3,12.0,5.7,2.4 -E01010662,Bradford 049D,7.4,7.8,1.1,10.0,6.4,5.5,11.9,21.7,15.6,9.1,3.4 -E01010663,Bradford 050A,9.6,7.5,1.7,9.6,6.0,8.5,15.5,20.9,12.5,5.5,2.7 -E01010664,Bradford 049E,5.6,8.5,1.8,10.2,6.7,6.0,12.5,19.8,14.9,9.2,4.9 -E01010665,Bradford 050B,8.0,8.0,0.9,10.0,5.4,6.2,14.2,23.3,13.6,6.8,3.6 -E01010666,Bradford 050C,10.6,7.7,2.3,9.8,7.1,6.3,13.8,19.3,13.3,6.8,2.8 -E01010667,Bradford 050D,9.9,10.3,1.7,11.4,6.8,6.7,15.7,20.5,11.5,3.7,1.8 -E01010668,Bradford 055A,6.9,7.8,2.3,10.4,5.9,5.5,11.4,19.9,17.1,8.2,4.6 -E01010669,Bradford 030A,8.9,9.1,1.4,12.6,7.4,6.3,12.5,21.9,12.1,4.6,3.1 -E01010670,Bradford 029A,6.3,6.1,0.9,9.5,8.1,8.3,13.4,20.2,16.5,7.8,2.8 -E01010671,Bradford 029B,8.1,8.1,1.6,10.1,5.9,6.3,14.5,21.4,13.4,6.6,3.9 -E01010672,Bradford 036A,5.6,6.6,2.0,7.6,5.8,5.1,13.8,19.5,19.6,9.1,5.4 -E01010673,Bradford 029C,8.2,6.7,1.9,10.0,8.1,8.9,15.6,22.8,10.8,5.2,1.7 -E01010674,Bradford 030B,9.5,12.8,0.6,12.6,7.6,6.6,13.3,23.9,9.4,2.1,1.6 -E01010675,Bradford 029D,5.7,5.5,2.8,9.3,7.0,7.2,12.3,19.6,16.0,8.8,5.9 -E01010676,Bradford 034A,7.2,8.3,1.1,11.1,7.7,8.5,15.6,21.3,11.5,5.7,2.0 -E01010678,Bradford 036B,8.1,6.6,2.3,8.7,4.3,5.1,9.7,19.4,19.1,10.7,6.1 -E01010679,Bradford 034B,5.6,7.6,1.7,10.4,7.8,7.0,14.7,20.8,14.2,7.2,3.1 -E01010680,Bradford 019A,10.3,7.7,1.7,7.5,3.7,8.1,15.0,17.9,16.7,6.5,4.7 -E01010681,Bradford 019B,6.1,5.7,2.2,6.1,3.3,5.0,12.1,17.7,24.8,12.8,4.3 -E01010682,Bradford 019C,5.2,7.5,2.8,6.2,4.7,4.1,12.3,18.6,20.7,12.6,5.2 -E01010683,Bradford 017A,6.5,4.4,1.1,5.3,2.6,5.3,19.1,21.4,22.4,8.9,2.9 -E01010684,Bradford 017B,6.7,4.6,2.6,6.8,5.2,3.5,9.5,18.1,24.3,12.3,6.4 -E01010685,Bradford 017C,5.3,5.1,2.6,7.4,3.1,3.6,10.7,20.2,22.1,11.8,8.0 -E01010686,Bradford 017D,4.4,4.9,3.8,6.7,3.7,4.4,8.9,19.4,21.6,12.3,9.9 -E01010687,Bradford 019D,5.4,5.6,1.6,8.3,4.0,3.6,12.3,22.1,24.1,9.5,3.6 -E01010688,Bradford 019E,6.0,5.8,3.2,7.5,3.0,5.5,15.4,22.1,20.1,7.3,4.2 -E01010689,Bradford 019F,5.5,5.2,1.9,6.6,4.0,4.9,19.0,20.1,20.7,7.6,4.5 -E01010690,Bradford 019G,3.7,5.1,2.4,6.4,4.5,4.5,12.0,19.1,21.7,13.4,7.3 -E01010691,Bradford 002A,3.1,5.6,5.1,9.4,4.4,2.5,3.9,17.2,24.7,13.5,10.6 -E01010692,Bradford 001D,1.9,3.7,7.6,5.8,4.5,2.9,4.1,17.0,25.6,14.2,12.7 -E01010693,Bradford 002B,4.5,5.1,5.6,8.5,4.0,2.8,5.3,16.6,21.7,15.2,10.5 -E01010694,Bradford 002C,2.7,4.3,4.9,8.0,4.3,4.2,3.7,14.5,22.8,17.7,12.9 -E01010695,Bradford 002D,3.0,2.6,9.0,6.2,3.3,4.1,10.8,16.1,22.7,11.8,10.4 -E01010696,Bradford 002E,4.0,6.7,4.1,8.6,5.6,2.7,6.2,20.5,22.3,11.2,8.1 -E01010697,Bradford 002F,3.2,4.3,7.8,7.4,3.6,2.1,6.5,14.3,23.0,15.9,11.9 -E01010698,Bradford 002G,3.5,4.8,6.2,7.3,3.0,4.0,12.3,18.7,20.2,9.3,10.7 -E01010699,Bradford 002H,3.9,7.4,4.7,8.9,5.1,3.7,8.4,19.9,19.1,11.1,7.9 -E01010700,Bradford 008A,11.4,8.1,1.1,10.7,7.2,8.0,16.1,21.4,10.7,3.9,1.5 -E01010701,Bradford 008B,9.4,8.3,1.0,12.3,8.5,7.0,15.3,20.7,9.6,6.2,1.5 -E01010702,Bradford 008C,7.3,8.7,1.6,11.3,8.3,8.6,15.0,20.6,9.4,6.8,2.6 -E01010703,Bradford 008D,7.4,7.7,2.2,8.6,5.1,5.4,14.1,20.0,16.6,8.6,4.2 -E01010704,Bradford 008E,6.1,6.6,1.3,8.2,4.4,3.8,14.5,19.6,20.0,10.5,5.1 -E01010705,Bradford 008F,4.5,6.7,2.3,7.1,4.8,4.2,9.8,17.6,21.3,13.2,8.5 -E01010706,Bradford 006A,3.2,4.4,3.1,6.7,5.1,3.4,7.9,16.6,27.6,14.3,7.8 -E01010707,Bradford 006B,4.4,5.9,2.7,6.5,3.1,4.4,12.4,18.2,23.7,12.1,6.6 -E01010708,Bradford 006C,7.0,7.8,1.5,8.1,5.2,4.7,13.2,19.0,19.7,9.5,4.4 -E01010709,Bradford 006D,4.7,7.0,2.1,9.2,4.7,5.1,9.1,21.7,18.9,11.5,6.0 -E01010710,Bradford 008G,5.2,7.0,0.6,8.5,5.2,8.0,20.0,20.2,17.7,5.2,2.2 -E01010711,Bradford 011A,6.6,4.3,2.3,4.4,5.2,8.9,14.7,20.1,16.6,11.4,5.5 -E01010712,Bradford 009A,6.6,10.5,0.6,14.5,8.9,7.2,14.9,22.3,9.4,3.3,1.8 -E01010713,Bradford 011B,5.7,10.2,1.5,10.9,4.3,4.2,15.3,17.9,17.0,7.4,5.6 -E01010714,Bradford 011C,6.2,7.4,1.2,7.4,3.7,7.8,13.7,19.0,18.9,9.0,5.4 -E01010715,Bradford 012A,5.8,6.0,2.5,8.2,4.6,5.9,10.4,16.4,22.2,12.9,5.0 -E01010716,Bradford 011D,6.0,6.9,0.9,7.0,3.7,4.7,15.0,19.1,22.2,10.1,4.4 -E01010717,Bradford 012B,8.5,7.6,1.9,8.7,4.5,5.7,14.8,18.0,17.5,8.8,4.0 -E01010718,Bradford 012C,7.3,9.7,1.1,8.6,5.2,5.1,11.9,18.0,21.0,8.2,3.8 -E01010719,Bradford 007A,8.1,9.1,1.5,14.8,7.9,6.9,12.8,20.2,10.9,5.9,1.9 -E01010720,Bradford 009B,7.5,9.2,1.0,10.9,4.6,5.2,13.1,19.1,17.8,8.2,3.4 -E01010721,Bradford 009C,7.9,8.4,1.2,8.9,3.9,6.1,15.4,18.2,17.7,7.4,4.8 -E01010722,Bradford 014A,6.5,7.8,1.3,9.7,5.6,4.3,12.7,18.8,18.9,9.4,5.0 -E01010723,Bradford 009D,8.6,9.6,0.6,11.3,7.5,7.1,16.3,22.7,9.4,4.1,2.8 -E01010724,Bradford 009E,5.3,6.8,3.2,10.2,4.5,5.8,11.7,21.0,18.9,7.3,5.2 -E01010725,Bradford 009F,5.2,7.0,2.3,7.4,4.4,6.3,13.3,19.0,20.9,8.5,5.7 -E01010726,Bradford 012D,5.0,5.0,3.3,5.7,4.1,4.2,12.4,14.8,24.9,11.7,9.0 -E01010727,Bradford 007B,4.2,4.8,2.5,5.9,4.2,5.1,10.5,19.6,22.0,13.5,7.6 -E01010728,Bradford 007C,7.5,7.9,2.0,11.8,7.7,7.1,14.0,20.5,12.5,6.1,3.0 -E01010729,Bradford 007D,5.2,5.5,6.0,10.0,6.6,6.3,10.6,17.6,14.9,9.3,8.0 -E01010730,Bradford 045C,6.6,6.2,0.7,6.7,3.3,4.2,17.3,23.1,19.2,8.2,4.5 -E01010731,Bradford 048A,8.2,7.7,1.2,9.9,4.1,11.3,20.4,20.2,10.9,4.1,2.0 -E01010732,Bradford 048B,6.8,9.0,0.3,15.4,9.8,7.4,13.2,21.3,11.0,4.1,1.7 -E01010733,Bradford 048C,5.8,7.5,1.6,8.8,7.9,9.6,14.4,20.7,15.3,5.2,3.2 -E01010734,Bradford 045D,12.1,8.9,0.2,11.2,7.2,6.4,15.5,20.5,12.6,3.9,1.4 -E01010735,Bradford 051A,8.6,8.3,0.1,13.7,9.4,11.0,12.4,19.6,12.0,3.3,1.5 -E01010736,Bradford 048D,12.8,11.9,0.3,13.1,6.3,5.7,15.5,21.3,9.7,2.3,1.1 -E01010737,Bradford 048E,11.6,8.0,0.7,11.0,5.2,10.0,15.3,19.2,11.4,5.6,2.0 -E01010738,Bradford 051B,6.4,9.9,0.5,12.9,9.6,7.4,12.1,23.7,12.1,3.7,1.7 -E01010739,Bradford 051C,9.6,11.0,0.7,13.5,10.6,6.7,11.1,21.1,10.0,3.6,2.0 -E01010740,Bradford 051D,6.7,7.9,1.2,11.8,8.6,8.3,14.5,21.1,12.3,5.2,2.4 -E01010741,Bradford 059A,4.8,5.8,2.5,6.7,3.8,5.5,11.4,16.1,25.4,12.1,5.9 -E01010742,Bradford 053C,8.5,9.9,0.4,13.3,10.2,8.0,13.4,20.5,10.4,4.0,1.3 -E01010743,Bradford 053D,6.7,7.4,0.9,10.8,6.1,9.6,13.5,21.7,16.7,5.1,1.5 -E01010744,Bradford 051E,7.8,9.8,0.6,12.6,7.5,8.0,14.5,21.5,12.2,3.9,1.6 -E01010745,Bradford 056A,8.0,9.6,0.9,12.9,6.8,8.3,12.8,22.7,12.2,3.7,2.1 -E01010746,Bradford 060A,5.6,6.7,2.2,7.1,4.8,5.1,12.6,16.7,20.4,11.7,7.2 -E01010747,Bradford 056B,5.3,5.5,2.5,9.1,6.2,7.7,11.6,18.8,19.0,9.3,5.0 -E01010748,Bradford 056C,7.9,8.0,1.8,9.0,4.9,5.4,11.9,17.9,19.0,10.3,4.0 -E01010749,Bradford 056D,6.0,7.6,1.5,8.2,3.9,4.6,10.2,19.0,22.4,10.2,6.3 -E01010750,Bradford 060B,5.2,5.2,3.1,5.9,3.6,5.1,12.6,17.1,22.3,12.6,7.2 -E01010751,Bradford 060C,4.4,4.5,3.6,6.0,4.1,5.2,11.9,15.0,23.0,13.3,9.0 -E01010752,Bradford 058A,7.2,6.3,1.0,8.0,4.1,5.2,15.6,20.4,20.7,7.1,4.5 -E01010753,Bradford 058B,4.3,4.1,3.0,6.0,2.9,3.6,12.3,14.1,21.5,16.3,11.8 -E01010754,Bradford 058C,4.7,5.9,2.8,6.9,5.1,5.5,12.3,20.0,24.2,8.1,4.4 -E01010755,Bradford 055B,10.5,10.5,0.4,10.7,4.1,5.1,19.4,20.7,12.8,4.1,1.8 -E01010756,Bradford 058D,6.6,5.8,1.3,7.5,4.0,5.8,16.2,20.3,20.5,8.7,3.3 -E01010758,Bradford 058E,6.0,5.3,1.2,7.3,4.2,4.6,11.4,19.3,27.8,10.0,3.2 -E01010759,Bradford 058F,7.3,5.5,2.3,6.7,3.5,6.4,13.7,16.9,20.6,10.9,6.2 -E01010760,Bradford 058G,5.3,6.4,1.2,8.9,4.8,4.1,10.3,20.8,23.9,10.4,3.9 -E01010761,Bradford 049G,4.8,6.5,3.0,9.4,5.3,5.5,12.3,18.6,19.0,10.2,5.4 -E01010762,Bradford 055C,6.9,7.0,1.6,8.7,6.6,6.5,13.6,20.4,18.7,5.8,4.2 -E01010763,Bradford 055D,6.6,6.6,4.0,8.5,5.8,3.9,12.9,18.7,17.2,10.2,5.5 -E01010764,Bradford 010C,3.3,5.5,3.6,6.6,3.6,3.8,6.0,17.1,25.0,15.7,9.8 -E01010765,Bradford 010D,5.0,5.6,2.9,6.1,2.9,3.4,12.1,18.2,22.3,13.8,7.7 -E01010766,Bradford 010E,3.6,5.5,2.9,7.0,2.8,3.4,6.0,18.1,23.1,18.6,9.0 -E01010767,Bradford 003A,4.8,5.9,4.2,9.5,4.3,3.5,7.0,19.8,19.9,12.7,8.6 -E01010768,Bradford 003B,5.0,6.9,1.9,8.1,5.3,3.3,7.4,19.2,26.0,9.8,7.2 -E01010769,Bradford 003C,5.5,5.2,4.1,6.9,3.3,2.7,12.3,21.3,20.4,11.7,6.5 -E01010770,Bradford 005A,4.5,7.2,2.2,9.4,4.6,3.4,5.1,21.3,23.8,12.5,5.9 -E01010771,Bradford 003D,4.6,6.0,4.1,7.5,3.5,3.1,7.6,19.2,19.8,15.5,9.1 -E01010772,Bradford 005B,4.9,5.7,5.7,8.5,4.2,2.5,5.7,18.3,22.2,13.5,8.9 -E01010773,Bradford 005C,4.4,6.3,3.1,8.5,3.6,3.6,8.5,21.1,21.8,12.2,6.9 -E01010774,Bradford 005D,4.6,5.6,4.4,6.1,2.8,3.1,11.0,18.0,21.2,13.8,9.5 -E01010775,Bradford 024D,5.2,5.6,2.4,7.8,3.9,5.5,13.9,17.7,21.1,10.5,6.4 -E01010776,Bradford 021A,5.4,6.8,1.0,8.8,5.2,5.8,12.4,20.1,19.8,10.2,4.5 -E01010777,Bradford 021B,7.7,5.8,1.0,6.0,2.9,9.0,17.9,19.1,19.6,8.4,2.6 -E01010778,Bradford 024E,8.9,8.0,0.7,7.9,5.5,6.6,15.0,20.5,16.5,6.6,3.8 -E01010779,Bradford 021C,8.0,7.8,2.8,5.3,3.3,4.2,15.5,18.1,18.0,10.4,6.7 -E01010781,Bradford 021D,6.2,7.5,1.3,10.1,5.1,3.7,15.3,19.7,19.7,7.6,3.7 -E01010782,Bradford 020B,7.1,7.7,1.6,7.5,3.9,6.1,17.1,23.6,16.7,6.0,3.0 -E01010783,Bradford 021E,5.8,5.8,2.7,6.5,4.3,5.3,12.7,17.5,21.4,12.0,6.0 -E01010784,Bradford 018C,5.1,5.6,1.1,7.0,3.8,3.4,17.4,24.2,18.6,9.2,4.5 -E01010785,Bradford 018D,4.5,3.8,4.5,4.8,3.1,3.1,18.8,21.4,19.5,10.4,6.2 -E01010786,Bradford 018E,4.1,7.4,5.5,8.8,5.0,4.0,7.7,20.4,18.5,10.3,8.3 -E01010787,Bradford 020C,5.3,5.2,4.7,7.2,3.8,3.3,9.7,20.3,22.2,10.7,7.6 -E01010788,Bradford 020D,4.9,5.9,3.1,7.5,4.7,4.5,13.3,21.5,19.3,9.8,5.4 -E01010789,Bradford 025A,5.7,7.7,2.1,10.1,7.0,7.0,12.7,22.4,14.9,6.6,3.9 -E01010790,Bradford 018F,6.5,6.9,2.7,7.7,4.6,3.7,10.3,20.4,18.0,12.0,7.0 -E01010791,Bradford 025B,6.1,7.2,3.0,9.8,6.0,7.5,12.7,20.9,16.1,7.4,3.3 -E01010792,Bradford 025C,6.7,8.8,1.1,10.6,9.0,6.7,13.2,21.0,14.8,5.8,2.2 -E01010793,Bradford 025D,8.0,7.4,0.8,8.7,8.0,7.7,16.7,18.4,15.6,5.8,3.0 -E01010794,Bradford 043A,5.3,6.3,4.0,8.6,4.2,3.8,10.8,18.8,17.9,12.0,8.3 -E01010795,Bradford 043B,5.0,6.9,1.2,7.8,4.9,4.5,11.7,21.4,22.7,10.2,3.8 -E01010796,Bradford 043C,5.6,7.3,1.4,8.5,5.3,3.8,10.3,19.4,20.3,12.1,6.0 -E01010797,Bradford 043D,5.4,5.4,0.8,7.1,3.9,4.6,10.6,19.6,25.4,12.5,4.8 -E01010798,Bradford 043E,4.7,6.6,2.2,7.6,3.9,4.0,13.8,18.1,22.0,10.2,6.9 -E01010799,Bradford 036C,7.0,8.1,2.3,7.9,4.8,5.0,12.0,18.7,19.5,10.2,4.6 -E01010800,Bradford 036D,7.6,9.3,1.0,12.8,5.0,6.4,10.6,20.9,15.6,7.0,3.7 -E01010801,Bradford 036E,8.0,8.7,2.0,10.6,6.6,6.9,13.2,21.6,14.1,5.1,3.2 -E01010802,Bradford 036F,10.7,8.2,1.4,11.0,5.3,5.2,17.2,19.5,13.9,5.0,2.6 -E01010803,Bradford 037A,10.7,8.5,0.9,9.4,6.7,8.9,15.8,22.7,10.7,4.1,1.8 -E01010804,Bradford 033A,7.1,7.9,1.0,9.8,6.8,8.8,16.3,20.1,13.5,6.2,2.4 -E01010805,Bradford 030D,7.9,8.7,2.2,8.7,6.8,8.6,13.9,21.7,12.8,5.9,2.8 -E01010806,Bradford 033B,8.3,5.8,1.7,9.6,9.6,8.4,13.6,20.2,15.0,5.4,2.3 -E01010807,Bradford 033C,8.2,6.9,0.9,7.3,5.5,11.1,20.8,18.6,12.0,6.3,2.5 -E01010808,Bradford 033D,7.6,9.9,0.6,13.0,8.6,7.9,14.5,21.7,11.1,3.2,1.9 -E01010809,Bradford 033E,7.3,7.1,0.9,11.0,8.5,9.6,14.2,20.4,12.4,6.3,2.2 -E01010810,Bradford 037B,7.3,7.6,0.9,13.5,8.3,8.3,13.0,23.2,11.4,3.9,2.6 -E01010811,Bradford 037C,8.7,10.3,0.8,12.5,8.6,7.4,13.8,23.4,9.9,3.1,1.5 -E01010812,Bradford 041B,10.5,9.0,0.3,12.5,6.7,7.3,16.7,20.1,11.7,3.8,1.4 -E01010813,Bradford 037D,7.9,9.6,0.6,11.2,8.3,7.6,14.7,21.3,11.4,5.0,2.4 -E01010814,Bradford 057A,6.8,5.8,2.5,7.0,3.1,5.8,13.6,17.4,23.8,10.0,4.2 -E01010815,Bradford 057B,8.1,8.6,1.1,10.2,5.1,7.3,13.9,21.7,16.3,5.4,2.5 -E01010816,Bradford 057C,5.1,6.8,1.3,6.3,3.7,5.3,12.6,18.7,25.2,9.5,5.5 -E01010817,Bradford 057D,9.9,10.1,1.5,9.6,4.4,4.9,15.1,21.3,14.2,6.2,3.0 -E01010818,Bradford 057E,5.4,6.9,1.5,8.5,5.4,5.3,10.7,20.6,22.4,8.5,4.8 -E01010819,Bradford 052B,7.2,8.6,1.1,10.9,5.1,5.4,14.8,18.2,18.4,6.4,3.7 -E01010820,Bradford 052C,6.7,7.4,1.6,8.9,7.8,5.1,12.7,15.5,20.4,9.4,4.4 -E01010821,Bradford 052D,9.4,9.7,0.4,11.3,5.5,6.1,17.8,20.2,12.9,4.3,2.4 -E01010822,Bradford 052E,7.8,6.7,1.3,11.4,8.2,5.4,11.4,18.3,18.9,7.2,3.5 -E01010824,Bradford 034C,8.3,6.7,0.9,8.9,5.5,9.0,18.0,20.6,15.0,5.8,1.4 -E01010825,Bradford 032C,7.7,8.6,1.2,8.4,4.9,5.8,13.4,21.3,16.4,9.2,3.1 -E01010826,Bradford 027D,9.5,13.2,0.4,13.6,5.3,6.5,12.9,19.9,13.2,4.6,1.2 -E01010827,Bradford 032D,6.9,8.9,1.5,11.3,5.3,5.2,14.9,19.5,15.7,7.1,3.7 -E01010828,Bradford 035A,6.6,6.8,2.6,7.7,5.9,5.6,14.0,19.4,17.4,8.7,5.1 -E01010829,Bradford 035B,7.7,8.6,1.5,10.3,7.3,6.7,11.6,22.9,14.8,5.8,2.7 -E01010830,Bradford 035C,8.4,11.0,0.6,12.8,8.1,9.0,13.2,21.6,9.3,4.4,1.5 -E01010831,Bradford 035D,8.7,8.5,0.8,11.6,7.8,8.4,18.0,19.7,11.9,3.2,1.5 -E01010832,Bradford 035E,6.1,9.2,1.9,15.1,8.6,8.9,11.9,19.7,11.8,4.5,2.3 -E01010833,Bradford 041C,6.6,7.8,1.0,10.5,7.6,10.6,18.4,19.0,11.6,5.2,1.7 -E01010834,Bradford 044A,2.5,1.9,0.5,3.8,13.4,32.9,20.9,15.4,5.4,2.2,1.2 -E01010836,Bradford 044C,8.3,7.8,1.1,9.1,6.7,12.1,20.7,19.5,10.0,2.9,1.6 -E01010837,Bradford 044D,7.1,8.6,1.3,10.4,8.3,8.1,14.9,21.1,12.0,5.6,2.4 -E01010838,Bradford 044E,14.0,8.0,0.7,10.7,7.5,10.3,16.2,18.0,10.3,2.7,1.6 -E01010839,Bradford 044F,9.3,8.0,1.1,10.9,6.7,7.4,16.9,21.3,10.6,5.7,2.1 -E01010840,Bradford 034D,8.6,9.0,1.9,9.4,6.9,6.9,15.1,17.9,13.0,6.7,4.7 -E01010841,Bradford 034E,6.9,6.8,1.1,9.8,8.0,9.8,14.0,22.2,11.2,8.2,2.0 -E01010842,Bradford 065A,6.4,9.7,0.7,13.2,8.1,8.0,14.8,21.2,11.8,4.3,1.8 -E01010843,Bradford 041D,6.5,8.8,1.1,13.0,9.2,10.4,12.4,22.1,10.4,4.4,1.9 -E01010845,Bradford 059B,7.3,9.7,1.3,10.4,5.8,5.5,12.5,20.0,16.4,7.1,3.9 -E01010846,Bradford 055E,6.8,7.1,1.7,8.5,4.8,7.2,12.0,19.3,20.4,8.3,4.0 -E01010847,Bradford 054A,6.8,7.6,2.2,6.9,4.0,5.8,14.6,18.5,20.5,8.3,4.8 -E01010848,Bradford 054B,6.4,6.1,3.0,7.7,4.5,5.2,13.0,18.6,20.6,9.5,5.4 -E01010849,Bradford 059C,5.6,6.0,2.6,6.7,3.1,4.3,12.1,16.8,21.4,13.0,8.4 -E01010850,Bradford 059D,7.5,11.3,0.6,12.1,5.0,5.2,14.5,19.7,17.8,4.9,1.4 -E01010851,Bradford 059E,6.5,5.3,2.2,6.5,4.7,4.6,13.8,19.3,22.2,10.3,4.7 -E01010852,Bradford 054C,10.8,7.3,2.7,9.5,5.4,5.7,15.5,18.6,14.0,6.5,4.0 -E01010853,Bradford 054D,9.3,7.3,1.8,9.8,5.9,4.7,12.7,19.4,16.6,9.0,3.6 -E01010854,Bradford 023A,4.3,5.9,2.1,6.0,4.3,4.0,13.3,22.1,21.4,10.9,5.7 -E01010855,Bradford 023B,3.5,4.5,3.0,5.1,2.6,5.0,9.1,15.8,29.3,14.9,7.3 -E01010856,Bradford 023C,4.6,4.1,3.3,5.4,4.5,4.1,11.2,19.8,25.3,11.8,6.0 -E01010857,Bradford 023D,4.3,5.4,2.2,5.5,2.2,3.7,8.1,17.4,25.3,17.6,8.1 -E01010858,Bradford 023E,4.1,4.8,2.2,7.0,3.7,3.8,10.0,19.7,27.0,12.6,5.2 -E01010859,Bradford 012E,6.6,5.4,2.9,6.3,2.9,4.6,12.9,15.6,21.5,14.1,7.2 -E01010860,Bradford 014B,5.2,5.7,2.0,7.1,3.4,5.2,11.3,19.4,23.5,11.6,5.6 -E01010861,Bradford 023F,3.9,5.0,1.9,6.2,4.3,4.0,10.5,16.5,25.2,15.7,6.9 -E01010862,Bradford 014C,4.5,6.7,1.6,6.6,4.3,5.1,11.8,19.3,24.0,11.4,4.8 -E01010863,Bradford 014D,4.5,6.1,1.7,6.6,4.2,3.5,10.4,18.2,25.3,12.7,6.7 -E01010864,Bradford 059F,6.0,7.1,1.7,8.7,6.7,4.8,12.2,20.5,22.3,7.5,2.7 -E01010865,Bradford 060D,5.0,5.1,2.2,7.7,3.4,4.8,12.7,18.4,21.5,13.7,5.6 -E01010866,Bradford 060E,5.4,5.4,2.6,5.0,4.7,4.2,12.9,19.3,21.8,12.3,6.4 -E01010867,Bradford 059G,7.6,8.5,1.0,9.8,4.9,4.8,15.7,22.6,15.3,7.0,2.8 -E01010868,Bradford 061A,7.8,7.8,0.8,8.1,6.0,5.2,13.8,18.3,19.5,9.2,3.5 -E01010869,Bradford 061B,6.1,6.3,1.7,8.3,5.3,4.4,13.7,19.3,17.1,12.1,5.6 -E01010870,Bradford 061C,4.8,5.6,1.8,5.2,3.0,4.0,9.9,17.6,23.3,14.7,10.0 -E01010871,Bradford 061D,4.0,5.5,1.3,6.3,3.3,5.0,15.0,20.5,23.9,9.8,5.4 -E01010872,Bradford 061E,7.7,9.1,1.4,11.9,5.0,4.6,14.0,18.4,14.9,7.9,5.3 -E01010873,Bradford 061F,5.7,5.1,3.9,6.2,3.3,4.6,12.4,14.4,24.6,12.4,7.1 -E01010874,Bradford 059H,6.9,8.2,5.0,9.7,4.7,5.2,15.8,19.3,14.4,6.3,4.6 -E01033689,Bradford 020E,3.8,2.7,1.5,2.6,2.8,11.9,27.4,21.7,17.9,4.6,2.9 -E01033690,Bradford 065C,7.7,5.1,0.1,2.2,3.3,14.0,36.5,23.7,6.5,0.7,0.3 -E01033691,Bradford 065B,8.1,7.5,0.7,6.8,4.6,10.7,23.9,22.9,9.6,3.1,2.1 -E01033692,Bradford 064D,6.0,7.1,0.6,4.9,3.3,12.1,26.9,23.9,12.7,1.9,0.6 -E01033693,Bradford 064A,7.0,8.0,0.7,9.9,9.4,11.8,18.6,20.8,9.5,3.2,1.1 -E01033694,Bradford 020F,5.1,4.8,1.1,4.6,3.2,4.2,18.3,26.8,20.0,7.9,4.0 -E01033695,Bradford 049H,7.3,7.3,1.5,9.3,7.4,5.7,11.8,22.9,18.6,5.5,2.7 -E01033696,Bradford 049I,4.1,6.1,1.8,8.3,4.5,5.3,14.2,21.7,20.0,9.0,5.0 -E01033697,Bradford 049J,8.4,8.4,1.0,10.9,7.3,8.5,14.2,21.8,13.0,4.9,1.7 -E01033898,Bradford 030E,12.4,10.3,0.9,10.4,6.1,6.9,17.3,18.8,11.7,3.1,2.1 -E01033899,Bradford 030F,14.1,17.0,0.1,13.6,4.7,4.4,19.9,18.2,6.5,1.0,0.4 -E01033900,Bradford 044G,8.1,8.3,1.3,13.1,9.8,8.6,13.5,21.7,9.3,4.1,2.2 -E01033901,Bradford 044H,8.9,8.4,1.6,11.0,7.1,8.7,14.8,20.9,11.7,4.5,2.3 -E05001341,Baildon,4.9,5.5,3.3,6.2,3.5,3.8,9.5,18.4,22.3,14.1,8.5 -E05001342,Bingley,4.3,5.5,3.7,7.1,3.6,4.1,10.7,19.3,21.6,12.5,7.7 -E05001343,Bingley Rural,4.7,5.8,2.5,7.2,3.8,3.9,11.0,18.7,22.0,12.9,7.5 -E05001344,Bolton and Undercliffe,7.1,7.7,2.1,9.3,5.4,6.0,13.9,19.4,17.3,7.6,4.2 -E05001345,Bowling and Barkerend,8.6,8.7,0.9,10.6,6.7,7.5,15.3,20.5,13.5,5.2,2.5 -E05001346,Bradford Moor,8.0,8.9,0.8,12.3,7.6,8.1,14.2,21.0,12.5,4.5,2.0 -E05001347,City (Bradford),7.4,6.8,0.9,8.1,7.3,13.4,20.4,20.2,10.1,3.7,1.8 -E05001348,Clayton and Fairweather Green,6.6,7.6,2.0,11.0,6.0,5.8,12.1,18.9,17.0,8.6,4.4 -E05001349,Craven,4.5,5.4,3.5,5.8,3.3,3.6,11.4,17.8,21.6,14.2,8.9 -E05001350,Eccleshill,7.2,8.5,1.5,9.8,5.4,5.5,14.2,19.6,17.0,7.3,4.0 -E05001351,Great Horton,8.3,8.8,1.5,10.7,6.7,6.7,13.4,21.4,13.3,6.2,3.0 -E05001352,Heaton (Bradford),8.3,9.1,1.3,10.7,6.9,6.7,14.4,20.6,13.5,5.5,3.0 -E05001353,Idle and Thackley,5.7,5.4,2.5,6.7,3.7,4.7,13.5,19.7,21.8,10.5,5.7 -E05001354,Ilkley,3.3,5.0,6.1,7.8,4.2,3.2,6.9,17.4,22.4,13.1,10.6 -E05001355,Keighley Central,6.8,7.7,1.9,10.7,6.9,6.9,14.0,20.4,13.7,7.2,3.8 -E05001356,Keighley East,5.9,7.0,1.9,8.2,4.8,5.2,12.6,19.3,19.4,10.4,5.4 -E05001357,Keighley West,6.7,7.3,1.9,8.2,4.2,5.3,13.3,17.9,20.3,9.6,5.3 -E05001358,Little Horton,8.5,9.5,0.7,12.6,8.2,7.9,13.4,21.2,11.9,4.3,1.9 -E05001359,Manningham,7.3,8.2,1.1,11.0,8.1,8.5,15.0,21.2,12.0,5.5,2.2 -E05001360,Queensbury (Bradford),6.1,6.3,1.8,7.9,4.6,5.0,13.5,19.8,21.1,9.2,4.6 -E05001361,Royds,6.7,7.5,2.1,9.0,5.1,5.3,13.5,19.6,18.8,8.2,4.3 -E05001362,Shipley,5.2,5.9,3.0,6.8,4.2,4.8,14.8,21.6,18.7,9.3,5.7 -E05001363,Thornton and Allerton,6.8,7.4,1.9,9.1,4.9,5.0,12.3,19.8,18.6,9.2,5.0 -E05001364,Toller (Bradford),8.2,8.1,1.1,10.6,7.6,8.7,15.1,21.2,12.1,5.0,2.2 -E05001365,Tong,7.6,8.1,1.3,9.8,5.7,5.7,13.8,19.3,18.3,6.9,3.5 -E05001366,Wharfedale (Bradford),4.8,6.1,3.6,8.1,4.0,3.2,8.1,19.8,22.0,12.6,7.7 -E05001367,Wibsey,7.4,7.3,2.1,8.7,5.1,5.9,12.9,18.7,18.5,8.8,4.8 -E05001368,Windhill and Wrose,6.5,6.7,2.0,7.4,4.3,5.5,14.2,19.3,19.5,9.2,5.2 -E05001369,Worth Valley,4.3,5.4,2.2,6.1,3.7,4.3,10.7,18.8,25.0,13.2,6.1 -E05001370,Wyke,5.8,6.3,2.0,7.3,4.3,4.7,13.1,18.0,20.7,11.6,6.2 +geography_code,geography_name,Aged 4 years and under,Aged 5 to 9 years,Aged 10 to 15 years,Aged 16 to 19 years,Aged 20 to 24 years,Aged 25 to 34 years,Aged 35 to 49 years,Aged 50 to 64 years,Aged 65 to 74 years,Aged 75 to 84 years,Aged 85 years and over +E01010568,Bradford 016A,5.8,4.8,6.9,2.7,3.8,9.7,19.4,20.7,14.4,8.8,3.0 +E01010569,Bradford 016B,5.3,6.9,6.7,3.2,3.9,11.6,20.5,19.6,13.0,6.1,3.1 +E01010570,Bradford 018A,4.3,5.1,6.1,3.9,3.7,5.8,17.5,22.4,15.6,11.4,4.1 +E01010571,Bradford 016C,6.9,7.4,7.1,3.4,5.8,16.5,20.5,16.0,9.4,5.4,1.7 +E01010572,Bradford 016D,4.4,5.0,5.7,2.7,2.6,11.9,17.3,24.3,13.1,8.8,4.2 +E01010573,Bradford 013A,4.8,5.3,5.8,4.5,2.7,7.2,18.7,27.7,14.6,6.5,2.3 +E01010574,Bradford 013B,3.3,6.0,5.5,3.0,2.9,6.8,17.0,21.0,18.3,11.5,4.7 +E01010575,Bradford 013C,2.9,5.1,5.7,3.9,3.1,8.0,17.7,22.1,16.7,11.4,3.4 +E01010576,Bradford 016E,6.4,4.8,4.1,2.9,4.8,9.9,15.7,24.7,13.7,8.1,5.0 +E01010577,Bradford 013D,4.1,5.0,7.9,5.1,3.5,6.5,18.9,24.1,14.0,8.1,2.8 +E01010578,Bradford 015A,2.9,4.8,4.2,2.9,5.9,11.3,20.8,23.9,12.0,7.1,4.1 +E01010579,Bradford 010A,2.7,4.6,5.9,4.0,4.0,6.9,16.9,22.9,15.0,11.7,5.4 +E01010580,Bradford 010B,4.8,5.8,8.2,4.0,3.5,8.2,19.8,21.5,12.9,8.2,3.1 +E01010581,Bradford 015B,5.8,7.2,8.1,4.4,4.0,13.5,19.5,20.1,9.9,5.8,1.8 +E01010582,Bradford 015C,5.4,5.1,8.1,4.3,4.6,15.0,23.5,18.6,7.5,4.0,3.9 +E01010583,Bradford 018B,5.1,7.0,8.5,3.2,3.6,10.5,19.1,21.9,12.5,6.8,2.0 +E01010584,Bradford 015D,4.6,5.3,7.5,2.6,6.2,16.9,19.2,20.8,8.8,5.6,2.5 +E01010585,Bradford 015E,4.0,5.5,7.4,4.2,3.2,10.8,20.4,18.2,11.7,8.1,6.5 +E01010586,Bradford 022A,3.9,4.4,5.4,3.7,3.1,10.4,14.5,25.5,16.5,9.7,2.9 +E01010587,Bradford 022B,4.7,6.3,8.6,3.6,3.6,10.9,21.8,23.4,10.3,5.2,1.6 +E01010588,Bradford 022C,4.5,4.9,8.9,3.5,4.0,10.1,19.0,23.5,12.9,5.9,2.7 +E01010589,Bradford 022D,3.2,3.5,5.0,3.1,4.6,8.0,17.9,22.4,17.6,11.4,3.2 +E01010590,Bradford 031A,5.9,5.9,6.7,3.6,3.4,11.7,17.9,24.4,12.9,5.4,2.2 +E01010591,Bradford 022E,6.4,6.9,8.4,3.5,4.0,12.0,18.0,17.8,12.3,7.5,3.2 +E01010592,Bradford 031B,4.6,6.4,6.4,3.4,3.1,10.3,19.8,18.1,14.9,10.4,2.6 +E01010593,Bradford 022F,3.5,5.0,6.3,4.4,4.5,11.1,18.2,21.8,11.9,10.4,2.9 +E01010594,Bradford 031C,4.0,5.9,8.0,3.8,4.9,11.3,16.8,24.1,12.4,6.9,2.0 +E01010595,Bradford 031D,5.9,7.0,8.1,4.7,4.5,13.6,20.6,20.5,8.2,5.2,1.5 +E01010596,Bradford 022G,4.2,6.4,6.8,4.0,3.1,9.1,17.8,21.1,15.2,7.8,4.6 +E01010597,Bradford 028A,6.3,7.3,8.2,3.6,4.7,15.1,17.6,21.7,9.5,4.1,1.9 +E01010598,Bradford 028B,5.7,5.6,7.9,5.0,6.6,13.2,17.0,19.7,10.1,6.4,2.8 +E01010599,Bradford 028C,7.1,9.0,9.4,5.4,5.5,14.4,19.9,17.0,7.5,3.0,1.8 +E01010600,Bradford 028D,6.4,7.6,9.7,5.6,6.4,12.0,20.2,16.2,8.1,5.0,2.8 +E01010601,Bradford 032A,7.8,8.0,8.8,4.9,4.9,13.8,20.7,17.6,6.9,4.3,2.2 +E01010602,Bradford 028E,7.6,6.5,9.2,4.7,5.7,14.4,20.2,17.3,7.0,5.0,2.4 +E01010603,Bradford 024A,6.1,7.1,8.1,3.4,5.2,14.5,17.3,20.0,9.7,6.3,2.2 +E01010604,Bradford 024B,5.2,5.3,5.0,4.8,4.6,12.0,15.5,21.0,12.3,9.8,4.5 +E01010605,Bradford 024C,7.2,7.4,10.5,4.9,5.4,12.7,18.0,21.2,7.9,3.7,1.0 +E01010606,Bradford 064E,8.3,7.5,11.2,7.6,9.0,16.3,19.7,12.7,4.3,2.0,1.5 +E01010607,Bradford 064C,8.1,9.5,10.4,7.3,8.1,19.4,20.2,11.5,3.3,1.9,0.4 +E01010608,Bradford 045A,6.9,8.7,13.1,7.9,8.6,14.3,22.6,11.5,3.9,2.1,0.3 +E01010609,Bradford 046A,8.4,7.9,8.1,4.5,4.4,12.9,20.0,18.1,9.2,4.9,1.6 +E01010610,Bradford 046B,10.8,8.4,9.2,5.4,7.0,16.3,19.8,15.3,5.1,1.9,0.8 +E01010611,Bradford 046C,9.7,9.1,8.5,4.5,6.8,16.6,20.1,13.9,6.9,3.1,0.9 +E01010612,Bradford 052A,8.6,10.8,13.9,6.4,4.8,15.7,19.3,13.6,4.5,1.9,0.7 +E01010613,Bradford 045B,7.8,6.1,8.5,6.4,7.2,12.5,19.0,19.6,7.3,4.0,1.5 +E01010614,Bradford 046D,5.9,7.6,12.5,11.3,7.1,12.6,16.7,15.3,6.4,3.2,1.2 +E01010615,Bradford 053A,7.1,7.2,8.2,5.7,5.9,12.6,20.2,18.9,8.4,3.9,1.9 +E01010616,Bradford 053B,7.2,11.1,12.1,6.9,6.5,11.6,21.4,12.7,5.9,3.7,0.8 +E01010617,Bradford 064B,9.8,10.5,10.1,5.2,6.9,14.5,23.3,11.9,4.7,2.0,1.0 +E01010618,Bradford 038A,8.4,8.3,11.7,7.3,9.3,14.5,18.7,14.9,4.9,1.4,0.6 +E01010619,Bradford 038B,8.9,8.3,11.2,6.8,8.4,15.4,20.5,12.8,5.1,1.9,0.8 +E01010620,Bradford 042A,7.3,8.4,13.2,6.7,6.8,13.9,22.9,12.0,4.7,2.6,1.4 +E01010621,Bradford 042B,6.8,8.9,13.6,9.3,9.2,14.5,20.9,11.7,3.0,1.3,0.9 +E01010622,Bradford 042C,9.3,9.9,12.6,7.4,7.3,13.8,21.6,11.4,3.8,2.1,0.8 +E01010623,Bradford 042D,7.4,9.4,11.0,5.8,7.5,15.7,20.4,12.2,6.8,2.7,1.1 +E01010624,Bradford 042E,6.1,8.6,11.7,8.6,9.7,13.9,21.5,12.6,4.0,2.8,0.6 +E01010625,Bradford 038C,8.4,10.7,14.1,8.7,7.3,12.7,21.0,10.8,4.3,1.6,0.4 +E01010626,Bradford 038D,8.9,8.3,13.0,9.0,7.4,13.2,21.2,13.0,3.8,1.3,1.0 +E01010627,Bradford 038E,8.9,7.9,10.3,5.6,7.1,14.8,20.9,15.3,5.7,2.6,0.8 +E01010628,Bradford 040A,7.3,7.4,9.1,4.7,4.4,12.8,17.7,15.9,10.9,5.9,3.9 +E01010629,Bradford 040B,6.0,8.2,11.9,7.5,8.2,11.4,21.7,12.3,7.3,3.8,1.6 +E01010630,Bradford 040C,10.0,11.4,10.6,4.6,5.4,12.1,23.1,12.1,5.6,3.6,1.7 +E01010631,Bradford 040D,6.2,10.3,12.6,7.1,4.8,12.0,20.0,17.4,5.8,3.2,0.4 +E01010632,Bradford 040E,10.6,10.5,11.3,4.4,7.1,15.6,20.6,13.1,4.8,1.2,0.8 +E01010633,Bradford 047A,6.6,5.5,7.5,4.8,4.0,12.0,18.7,19.5,13.4,6.0,2.1 +E01010634,Bradford 047B,5.5,4.7,6.2,4.1,5.2,13.3,15.9,23.8,11.4,6.4,3.4 +E01010635,Bradford 047C,7.1,7.3,7.5,4.2,6.2,14.1,16.4,20.8,9.4,5.0,2.1 +E01010636,Bradford 047D,3.5,5.0,6.3,3.8,6.0,10.6,18.7,23.8,12.0,6.7,3.6 +E01010637,Bradford 047E,4.0,5.4,24.1,13.0,5.7,8.6,15.8,14.6,5.8,2.2,0.8 +E01010638,Bradford 062A,3.8,4.6,4.2,2.6,3.6,9.3,15.8,26.2,17.5,8.9,3.6 +E01010639,Bradford 063C,4.8,6.8,5.8,2.8,3.5,13.7,19.3,19.3,12.9,8.1,2.9 +E01010640,Bradford 063A,5.9,6.0,6.3,3.8,5.4,16.4,20.5,19.2,9.5,4.8,2.2 +E01010641,Bradford 063B,3.5,5.1,5.8,5.1,3.4,8.7,18.1,18.9,16.8,9.3,5.3 +E01010642,Bradford 062B,4.4,5.1,5.4,2.6,3.8,10.2,15.0,23.5,15.5,10.1,4.4 +E01010643,Bradford 062E,4.0,4.4,5.3,2.6,3.9,18.1,17.9,23.9,11.6,5.8,2.5 +E01010644,Bradford 062D,6.7,7.1,7.4,3.4,4.3,13.9,20.8,18.6,8.7,5.9,3.3 +E01010645,Bradford 062C,4.9,5.5,5.9,3.8,3.8,11.9,20.8,21.7,12.7,6.9,1.9 +E01010646,Bradford 001A,3.3,3.3,5.6,3.3,2.5,4.7,14.3,23.7,18.2,15.1,5.7 +E01010647,Bradford 001B,3.3,5.3,6.5,3.7,2.0,7.8,15.7,20.8,19.8,12.2,2.8 +E01010648,Bradford 001C,3.3,4.9,5.3,3.3,2.1,6.2,15.1,23.7,17.7,14.2,4.3 +E01010649,Bradford 027A,5.6,5.8,7.3,4.4,5.4,15.9,19.6,21.0,8.6,4.8,1.4 +E01010650,Bradford 027B,8.3,10.2,13.3,7.8,5.2,13.7,21.8,14.1,3.3,1.6,0.6 +E01010651,Bradford 032B,6.6,7.7,9.2,5.2,4.2,14.6,18.1,19.2,8.3,4.7,2.3 +E01010652,Bradford 026A,5.3,4.8,6.3,3.1,6.1,12.0,16.4,19.7,12.8,9.9,3.6 +E01010653,Bradford 026B,7.5,10.1,9.4,5.4,4.6,14.0,19.7,16.6,7.3,4.2,1.1 +E01010654,Bradford 027C,7.1,9.8,10.8,5.8,6.2,13.5,21.6,15.1,6.4,2.5,1.1 +E01010655,Bradford 026C,8.0,9.3,11.0,7.4,5.7,14.3,19.6,15.1,4.8,3.9,0.7 +E01010656,Bradford 026D,5.5,5.8,7.9,5.6,5.3,11.3,17.7,20.8,9.3,6.9,3.7 +E01010657,Bradford 026E,6.7,6.0,7.0,3.5,5.0,17.4,17.0,20.7,9.0,5.5,2.2 +E01010658,Bradford 041A,7.9,9.7,12.0,7.4,6.3,13.0,22.0,12.5,5.7,2.8,0.7 +E01010659,Bradford 049A,8.9,11.2,11.9,6.3,6.7,10.8,23.3,12.0,5.7,2.4,0.7 +E01010662,Bradford 049D,7.4,7.8,10.0,6.4,5.5,11.9,21.7,15.6,9.1,3.4,1.1 +E01010663,Bradford 050A,9.6,7.5,9.6,6.0,8.5,15.5,20.9,12.5,5.5,2.7,1.7 +E01010664,Bradford 049E,5.6,8.5,10.2,6.7,6.0,12.5,19.8,14.9,9.2,4.9,1.8 +E01010665,Bradford 050B,8.0,8.0,10.0,5.4,6.2,14.2,23.3,13.6,6.8,3.6,0.9 +E01010666,Bradford 050C,10.6,7.7,9.8,7.1,6.3,13.8,19.3,13.3,6.8,2.8,2.3 +E01010667,Bradford 050D,9.9,10.3,11.4,6.8,6.7,15.7,20.5,11.5,3.7,1.8,1.7 +E01010668,Bradford 055A,6.9,7.8,10.4,5.9,5.5,11.4,19.9,17.1,8.2,4.6,2.3 +E01010669,Bradford 030A,8.9,9.1,12.6,7.4,6.3,12.5,21.9,12.1,4.6,3.1,1.4 +E01010670,Bradford 029A,6.3,6.1,9.5,8.1,8.3,13.4,20.2,16.5,7.8,2.8,0.9 +E01010671,Bradford 029B,8.1,8.1,10.1,5.9,6.3,14.5,21.4,13.4,6.6,3.9,1.6 +E01010672,Bradford 036A,5.6,6.6,7.6,5.8,5.1,13.8,19.5,19.6,9.1,5.4,2.0 +E01010673,Bradford 029C,8.2,6.7,10.0,8.1,8.9,15.6,22.8,10.8,5.2,1.7,1.9 +E01010674,Bradford 030B,9.5,12.8,12.6,7.6,6.6,13.3,23.9,9.4,2.1,1.6,0.6 +E01010675,Bradford 029D,5.7,5.5,9.3,7.0,7.2,12.3,19.6,16.0,8.8,5.9,2.8 +E01010676,Bradford 034A,7.2,8.3,11.1,7.7,8.5,15.6,21.3,11.5,5.7,2.0,1.1 +E01010678,Bradford 036B,8.1,6.6,8.7,4.3,5.1,9.7,19.4,19.1,10.7,6.1,2.3 +E01010679,Bradford 034B,5.6,7.6,10.4,7.8,7.0,14.7,20.8,14.2,7.2,3.1,1.7 +E01010680,Bradford 019A,10.3,7.7,7.5,3.7,8.1,15.0,17.9,16.7,6.5,4.7,1.7 +E01010681,Bradford 019B,6.1,5.7,6.1,3.3,5.0,12.1,17.7,24.8,12.8,4.3,2.2 +E01010682,Bradford 019C,5.2,7.5,6.2,4.7,4.1,12.3,18.6,20.7,12.6,5.2,2.8 +E01010683,Bradford 017A,6.5,4.4,5.3,2.6,5.3,19.1,21.4,22.4,8.9,2.9,1.1 +E01010684,Bradford 017B,6.7,4.6,6.8,5.2,3.5,9.5,18.1,24.3,12.3,6.4,2.6 +E01010685,Bradford 017C,5.3,5.1,7.4,3.1,3.6,10.7,20.2,22.1,11.8,8.0,2.6 +E01010686,Bradford 017D,4.4,4.9,6.7,3.7,4.4,8.9,19.4,21.6,12.3,9.9,3.8 +E01010687,Bradford 019D,5.4,5.6,8.3,4.0,3.6,12.3,22.1,24.1,9.5,3.6,1.6 +E01010688,Bradford 019E,6.0,5.8,7.5,3.0,5.5,15.4,22.1,20.1,7.3,4.2,3.2 +E01010689,Bradford 019F,5.5,5.2,6.6,4.0,4.9,19.0,20.1,20.7,7.6,4.5,1.9 +E01010690,Bradford 019G,3.7,5.1,6.4,4.5,4.5,12.0,19.1,21.7,13.4,7.3,2.4 +E01010691,Bradford 002A,3.1,5.6,9.4,4.4,2.5,3.9,17.2,24.7,13.5,10.6,5.1 +E01010692,Bradford 001D,1.9,3.7,5.8,4.5,2.9,4.1,17.0,25.6,14.2,12.7,7.6 +E01010693,Bradford 002B,4.5,5.1,8.5,4.0,2.8,5.3,16.6,21.7,15.2,10.5,5.6 +E01010694,Bradford 002C,2.7,4.3,8.0,4.3,4.2,3.7,14.5,22.8,17.7,12.9,4.9 +E01010695,Bradford 002D,3.0,2.6,6.2,3.3,4.1,10.8,16.1,22.7,11.8,10.4,9.0 +E01010696,Bradford 002E,4.0,6.7,8.6,5.6,2.7,6.2,20.5,22.3,11.2,8.1,4.1 +E01010697,Bradford 002F,3.2,4.3,7.4,3.6,2.1,6.5,14.3,23.0,15.9,11.9,7.8 +E01010698,Bradford 002G,3.5,4.8,7.3,3.0,4.0,12.3,18.7,20.2,9.3,10.7,6.2 +E01010699,Bradford 002H,3.9,7.4,8.9,5.1,3.7,8.4,19.9,19.1,11.1,7.9,4.7 +E01010700,Bradford 008A,11.4,8.1,10.7,7.2,8.0,16.1,21.4,10.7,3.9,1.5,1.1 +E01010701,Bradford 008B,9.4,8.3,12.3,8.5,7.0,15.3,20.7,9.6,6.2,1.5,1.0 +E01010702,Bradford 008C,7.3,8.7,11.3,8.3,8.6,15.0,20.6,9.4,6.8,2.6,1.6 +E01010703,Bradford 008D,7.4,7.7,8.6,5.1,5.4,14.1,20.0,16.6,8.6,4.2,2.2 +E01010704,Bradford 008E,6.1,6.6,8.2,4.4,3.8,14.5,19.6,20.0,10.5,5.1,1.3 +E01010705,Bradford 008F,4.5,6.7,7.1,4.8,4.2,9.8,17.6,21.3,13.2,8.5,2.3 +E01010706,Bradford 006A,3.2,4.4,6.7,5.1,3.4,7.9,16.6,27.6,14.3,7.8,3.1 +E01010707,Bradford 006B,4.4,5.9,6.5,3.1,4.4,12.4,18.2,23.7,12.1,6.6,2.7 +E01010708,Bradford 006C,7.0,7.8,8.1,5.2,4.7,13.2,19.0,19.7,9.5,4.4,1.5 +E01010709,Bradford 006D,4.7,7.0,9.2,4.7,5.1,9.1,21.7,18.9,11.5,6.0,2.1 +E01010710,Bradford 008G,5.2,7.0,8.5,5.2,8.0,20.0,20.2,17.7,5.2,2.2,0.6 +E01010711,Bradford 011A,6.6,4.3,4.4,5.2,8.9,14.7,20.1,16.6,11.4,5.5,2.3 +E01010712,Bradford 009A,6.6,10.5,14.5,8.9,7.2,14.9,22.3,9.4,3.3,1.8,0.6 +E01010713,Bradford 011B,5.7,10.2,10.9,4.3,4.2,15.3,17.9,17.0,7.4,5.6,1.5 +E01010714,Bradford 011C,6.2,7.4,7.4,3.7,7.8,13.7,19.0,18.9,9.0,5.4,1.2 +E01010715,Bradford 012A,5.8,6.0,8.2,4.6,5.9,10.4,16.4,22.2,12.9,5.0,2.5 +E01010716,Bradford 011D,6.0,6.9,7.0,3.7,4.7,15.0,19.1,22.2,10.1,4.4,0.9 +E01010717,Bradford 012B,8.5,7.6,8.7,4.5,5.7,14.8,18.0,17.5,8.8,4.0,1.9 +E01010718,Bradford 012C,7.3,9.7,8.6,5.2,5.1,11.9,18.0,21.0,8.2,3.8,1.1 +E01010719,Bradford 007A,8.1,9.1,14.8,7.9,6.9,12.8,20.2,10.9,5.9,1.9,1.5 +E01010720,Bradford 009B,7.5,9.2,10.9,4.6,5.2,13.1,19.1,17.8,8.2,3.4,1.0 +E01010721,Bradford 009C,7.9,8.4,8.9,3.9,6.1,15.4,18.2,17.7,7.4,4.8,1.2 +E01010722,Bradford 014A,6.5,7.8,9.7,5.6,4.3,12.7,18.8,18.9,9.4,5.0,1.3 +E01010723,Bradford 009D,8.6,9.6,11.3,7.5,7.1,16.3,22.7,9.4,4.1,2.8,0.6 +E01010724,Bradford 009E,5.3,6.8,10.2,4.5,5.8,11.7,21.0,18.9,7.3,5.2,3.2 +E01010725,Bradford 009F,5.2,7.0,7.4,4.4,6.3,13.3,19.0,20.9,8.5,5.7,2.3 +E01010726,Bradford 012D,5.0,5.0,5.7,4.1,4.2,12.4,14.8,24.9,11.7,9.0,3.3 +E01010727,Bradford 007B,4.2,4.8,5.9,4.2,5.1,10.5,19.6,22.0,13.5,7.6,2.5 +E01010728,Bradford 007C,7.5,7.9,11.8,7.7,7.1,14.0,20.5,12.5,6.1,3.0,2.0 +E01010729,Bradford 007D,5.2,5.5,10.0,6.6,6.3,10.6,17.6,14.9,9.3,8.0,6.0 +E01010730,Bradford 045C,6.6,6.2,6.7,3.3,4.2,17.3,23.1,19.2,8.2,4.5,0.7 +E01010731,Bradford 048A,8.2,7.7,9.9,4.1,11.3,20.4,20.2,10.9,4.1,2.0,1.2 +E01010732,Bradford 048B,6.8,9.0,15.4,9.8,7.4,13.2,21.3,11.0,4.1,1.7,0.3 +E01010733,Bradford 048C,5.8,7.5,8.8,7.9,9.6,14.4,20.7,15.3,5.2,3.2,1.6 +E01010734,Bradford 045D,12.1,8.9,11.2,7.2,6.4,15.5,20.5,12.6,3.9,1.4,0.2 +E01010735,Bradford 051A,8.6,8.3,13.7,9.4,11.0,12.4,19.6,12.0,3.3,1.5,0.1 +E01010736,Bradford 048D,12.8,11.9,13.1,6.3,5.7,15.5,21.3,9.7,2.3,1.1,0.3 +E01010737,Bradford 048E,11.6,8.0,11.0,5.2,10.0,15.3,19.2,11.4,5.6,2.0,0.7 +E01010738,Bradford 051B,6.4,9.9,12.9,9.6,7.4,12.1,23.7,12.1,3.7,1.7,0.5 +E01010739,Bradford 051C,9.6,11.0,13.5,10.6,6.7,11.1,21.1,10.0,3.6,2.0,0.7 +E01010740,Bradford 051D,6.7,7.9,11.8,8.6,8.3,14.5,21.1,12.3,5.2,2.4,1.2 +E01010741,Bradford 059A,4.8,5.8,6.7,3.8,5.5,11.4,16.1,25.4,12.1,5.9,2.5 +E01010742,Bradford 053C,8.5,9.9,13.3,10.2,8.0,13.4,20.5,10.4,4.0,1.3,0.4 +E01010743,Bradford 053D,6.7,7.4,10.8,6.1,9.6,13.5,21.7,16.7,5.1,1.5,0.9 +E01010744,Bradford 051E,7.8,9.8,12.6,7.5,8.0,14.5,21.5,12.2,3.9,1.6,0.6 +E01010745,Bradford 056A,8.0,9.6,12.9,6.8,8.3,12.8,22.7,12.2,3.7,2.1,0.9 +E01010746,Bradford 060A,5.6,6.7,7.1,4.8,5.1,12.6,16.7,20.4,11.7,7.2,2.2 +E01010747,Bradford 056B,5.3,5.5,9.1,6.2,7.7,11.6,18.8,19.0,9.3,5.0,2.5 +E01010748,Bradford 056C,7.9,8.0,9.0,4.9,5.4,11.9,17.9,19.0,10.3,4.0,1.8 +E01010749,Bradford 056D,6.0,7.6,8.2,3.9,4.6,10.2,19.0,22.4,10.2,6.3,1.5 +E01010750,Bradford 060B,5.2,5.2,5.9,3.6,5.1,12.6,17.1,22.3,12.6,7.2,3.1 +E01010751,Bradford 060C,4.4,4.5,6.0,4.1,5.2,11.9,15.0,23.0,13.3,9.0,3.6 +E01010752,Bradford 058A,7.2,6.3,8.0,4.1,5.2,15.6,20.4,20.7,7.1,4.5,1.0 +E01010753,Bradford 058B,4.3,4.1,6.0,2.9,3.6,12.3,14.1,21.5,16.3,11.8,3.0 +E01010754,Bradford 058C,4.7,5.9,6.9,5.1,5.5,12.3,20.0,24.2,8.1,4.4,2.8 +E01010755,Bradford 055B,10.5,10.5,10.7,4.1,5.1,19.4,20.7,12.8,4.1,1.8,0.4 +E01010756,Bradford 058D,6.6,5.8,7.5,4.0,5.8,16.2,20.3,20.5,8.7,3.3,1.3 +E01010758,Bradford 058E,6.0,5.3,7.3,4.2,4.6,11.4,19.3,27.8,10.0,3.2,1.2 +E01010759,Bradford 058F,7.3,5.5,6.7,3.5,6.4,13.7,16.9,20.6,10.9,6.2,2.3 +E01010760,Bradford 058G,5.3,6.4,8.9,4.8,4.1,10.3,20.8,23.9,10.4,3.9,1.2 +E01010761,Bradford 049G,4.8,6.5,9.4,5.3,5.5,12.3,18.6,19.0,10.2,5.4,3.0 +E01010762,Bradford 055C,6.9,7.0,8.7,6.6,6.5,13.6,20.4,18.7,5.8,4.2,1.6 +E01010763,Bradford 055D,6.6,6.6,8.5,5.8,3.9,12.9,18.7,17.2,10.2,5.5,4.0 +E01010764,Bradford 010C,3.3,5.5,6.6,3.6,3.8,6.0,17.1,25.0,15.7,9.8,3.6 +E01010765,Bradford 010D,5.0,5.6,6.1,2.9,3.4,12.1,18.2,22.3,13.8,7.7,2.9 +E01010766,Bradford 010E,3.6,5.5,7.0,2.8,3.4,6.0,18.1,23.1,18.6,9.0,2.9 +E01010767,Bradford 003A,4.8,5.9,9.5,4.3,3.5,7.0,19.8,19.9,12.7,8.6,4.2 +E01010768,Bradford 003B,5.0,6.9,8.1,5.3,3.3,7.4,19.2,26.0,9.8,7.2,1.9 +E01010769,Bradford 003C,5.5,5.2,6.9,3.3,2.7,12.3,21.3,20.4,11.7,6.5,4.1 +E01010770,Bradford 005A,4.5,7.2,9.4,4.6,3.4,5.1,21.3,23.8,12.5,5.9,2.2 +E01010771,Bradford 003D,4.6,6.0,7.5,3.5,3.1,7.6,19.2,19.8,15.5,9.1,4.1 +E01010772,Bradford 005B,4.9,5.7,8.5,4.2,2.5,5.7,18.3,22.2,13.5,8.9,5.7 +E01010773,Bradford 005C,4.4,6.3,8.5,3.6,3.6,8.5,21.1,21.8,12.2,6.9,3.1 +E01010774,Bradford 005D,4.6,5.6,6.1,2.8,3.1,11.0,18.0,21.2,13.8,9.5,4.4 +E01010775,Bradford 024D,5.2,5.6,7.8,3.9,5.5,13.9,17.7,21.1,10.5,6.4,2.4 +E01010776,Bradford 021A,5.4,6.8,8.8,5.2,5.8,12.4,20.1,19.8,10.2,4.5,1.0 +E01010777,Bradford 021B,7.7,5.8,6.0,2.9,9.0,17.9,19.1,19.6,8.4,2.6,1.0 +E01010778,Bradford 024E,8.9,8.0,7.9,5.5,6.6,15.0,20.5,16.5,6.6,3.8,0.7 +E01010779,Bradford 021C,8.0,7.8,5.3,3.3,4.2,15.5,18.1,18.0,10.4,6.7,2.8 +E01010781,Bradford 021D,6.2,7.5,10.1,5.1,3.7,15.3,19.7,19.7,7.6,3.7,1.3 +E01010782,Bradford 020B,7.1,7.7,7.5,3.9,6.1,17.1,23.6,16.7,6.0,3.0,1.6 +E01010783,Bradford 021E,5.8,5.8,6.5,4.3,5.3,12.7,17.5,21.4,12.0,6.0,2.7 +E01010784,Bradford 018C,5.1,5.6,7.0,3.8,3.4,17.4,24.2,18.6,9.2,4.5,1.1 +E01010785,Bradford 018D,4.5,3.8,4.8,3.1,3.1,18.8,21.4,19.5,10.4,6.2,4.5 +E01010786,Bradford 018E,4.1,7.4,8.8,5.0,4.0,7.7,20.4,18.5,10.3,8.3,5.5 +E01010787,Bradford 020C,5.3,5.2,7.2,3.8,3.3,9.7,20.3,22.2,10.7,7.6,4.7 +E01010788,Bradford 020D,4.9,5.9,7.5,4.7,4.5,13.3,21.5,19.3,9.8,5.4,3.1 +E01010789,Bradford 025A,5.7,7.7,10.1,7.0,7.0,12.7,22.4,14.9,6.6,3.9,2.1 +E01010790,Bradford 018F,6.5,6.9,7.7,4.6,3.7,10.3,20.4,18.0,12.0,7.0,2.7 +E01010791,Bradford 025B,6.1,7.2,9.8,6.0,7.5,12.7,20.9,16.1,7.4,3.3,3.0 +E01010792,Bradford 025C,6.7,8.8,10.6,9.0,6.7,13.2,21.0,14.8,5.8,2.2,1.1 +E01010793,Bradford 025D,8.0,7.4,8.7,8.0,7.7,16.7,18.4,15.6,5.8,3.0,0.8 +E01010794,Bradford 043A,5.3,6.3,8.6,4.2,3.8,10.8,18.8,17.9,12.0,8.3,4.0 +E01010795,Bradford 043B,5.0,6.9,7.8,4.9,4.5,11.7,21.4,22.7,10.2,3.8,1.2 +E01010796,Bradford 043C,5.6,7.3,8.5,5.3,3.8,10.3,19.4,20.3,12.1,6.0,1.4 +E01010797,Bradford 043D,5.4,5.4,7.1,3.9,4.6,10.6,19.6,25.4,12.5,4.8,0.8 +E01010798,Bradford 043E,4.7,6.6,7.6,3.9,4.0,13.8,18.1,22.0,10.2,6.9,2.2 +E01010799,Bradford 036C,7.0,8.1,7.9,4.8,5.0,12.0,18.7,19.5,10.2,4.6,2.3 +E01010800,Bradford 036D,7.6,9.3,12.8,5.0,6.4,10.6,20.9,15.6,7.0,3.7,1.0 +E01010801,Bradford 036E,8.0,8.7,10.6,6.6,6.9,13.2,21.6,14.1,5.1,3.2,2.0 +E01010802,Bradford 036F,10.7,8.2,11.0,5.3,5.2,17.2,19.5,13.9,5.0,2.6,1.4 +E01010803,Bradford 037A,10.7,8.5,9.4,6.7,8.9,15.8,22.7,10.7,4.1,1.8,0.9 +E01010804,Bradford 033A,7.1,7.9,9.8,6.8,8.8,16.3,20.1,13.5,6.2,2.4,1.0 +E01010805,Bradford 030D,7.9,8.7,8.7,6.8,8.6,13.9,21.7,12.8,5.9,2.8,2.2 +E01010806,Bradford 033B,8.3,5.8,9.6,9.6,8.4,13.6,20.2,15.0,5.4,2.3,1.7 +E01010807,Bradford 033C,8.2,6.9,7.3,5.5,11.1,20.8,18.6,12.0,6.3,2.5,0.9 +E01010808,Bradford 033D,7.6,9.9,13.0,8.6,7.9,14.5,21.7,11.1,3.2,1.9,0.6 +E01010809,Bradford 033E,7.3,7.1,11.0,8.5,9.6,14.2,20.4,12.4,6.3,2.2,0.9 +E01010810,Bradford 037B,7.3,7.6,13.5,8.3,8.3,13.0,23.2,11.4,3.9,2.6,0.9 +E01010811,Bradford 037C,8.7,10.3,12.5,8.6,7.4,13.8,23.4,9.9,3.1,1.5,0.8 +E01010812,Bradford 041B,10.5,9.0,12.5,6.7,7.3,16.7,20.1,11.7,3.8,1.4,0.3 +E01010813,Bradford 037D,7.9,9.6,11.2,8.3,7.6,14.7,21.3,11.4,5.0,2.4,0.6 +E01010814,Bradford 057A,6.8,5.8,7.0,3.1,5.8,13.6,17.4,23.8,10.0,4.2,2.5 +E01010815,Bradford 057B,8.1,8.6,10.2,5.1,7.3,13.9,21.7,16.3,5.4,2.5,1.1 +E01010816,Bradford 057C,5.1,6.8,6.3,3.7,5.3,12.6,18.7,25.2,9.5,5.5,1.3 +E01010817,Bradford 057D,9.9,10.1,9.6,4.4,4.9,15.1,21.3,14.2,6.2,3.0,1.5 +E01010818,Bradford 057E,5.4,6.9,8.5,5.4,5.3,10.7,20.6,22.4,8.5,4.8,1.5 +E01010819,Bradford 052B,7.2,8.6,10.9,5.1,5.4,14.8,18.2,18.4,6.4,3.7,1.1 +E01010820,Bradford 052C,6.7,7.4,8.9,7.8,5.1,12.7,15.5,20.4,9.4,4.4,1.6 +E01010821,Bradford 052D,9.4,9.7,11.3,5.5,6.1,17.8,20.2,12.9,4.3,2.4,0.4 +E01010822,Bradford 052E,7.8,6.7,11.4,8.2,5.4,11.4,18.3,18.9,7.2,3.5,1.3 +E01010824,Bradford 034C,8.3,6.7,8.9,5.5,9.0,18.0,20.6,15.0,5.8,1.4,0.9 +E01010825,Bradford 032C,7.7,8.6,8.4,4.9,5.8,13.4,21.3,16.4,9.2,3.1,1.2 +E01010826,Bradford 027D,9.5,13.2,13.6,5.3,6.5,12.9,19.9,13.2,4.6,1.2,0.4 +E01010827,Bradford 032D,6.9,8.9,11.3,5.3,5.2,14.9,19.5,15.7,7.1,3.7,1.5 +E01010828,Bradford 035A,6.6,6.8,7.7,5.9,5.6,14.0,19.4,17.4,8.7,5.1,2.6 +E01010829,Bradford 035B,7.7,8.6,10.3,7.3,6.7,11.6,22.9,14.8,5.8,2.7,1.5 +E01010830,Bradford 035C,8.4,11.0,12.8,8.1,9.0,13.2,21.6,9.3,4.4,1.5,0.6 +E01010831,Bradford 035D,8.7,8.5,11.6,7.8,8.4,18.0,19.7,11.9,3.2,1.5,0.8 +E01010832,Bradford 035E,6.1,9.2,15.1,8.6,8.9,11.9,19.7,11.8,4.5,2.3,1.9 +E01010833,Bradford 041C,6.6,7.8,10.5,7.6,10.6,18.4,19.0,11.6,5.2,1.7,1.0 +E01010834,Bradford 044A,2.5,1.9,3.8,13.4,32.9,20.9,15.4,5.4,2.2,1.2,0.5 +E01010836,Bradford 044C,8.3,7.8,9.1,6.7,12.1,20.7,19.5,10.0,2.9,1.6,1.1 +E01010837,Bradford 044D,7.1,8.6,10.4,8.3,8.1,14.9,21.1,12.0,5.6,2.4,1.3 +E01010838,Bradford 044E,14.0,8.0,10.7,7.5,10.3,16.2,18.0,10.3,2.7,1.6,0.7 +E01010839,Bradford 044F,9.3,8.0,10.9,6.7,7.4,16.9,21.3,10.6,5.7,2.1,1.1 +E01010840,Bradford 034D,8.6,9.0,9.4,6.9,6.9,15.1,17.9,13.0,6.7,4.7,1.9 +E01010841,Bradford 034E,6.9,6.8,9.8,8.0,9.8,14.0,22.2,11.2,8.2,2.0,1.1 +E01010842,Bradford 065A,6.4,9.7,13.2,8.1,8.0,14.8,21.2,11.8,4.3,1.8,0.7 +E01010843,Bradford 041D,6.5,8.8,13.0,9.2,10.4,12.4,22.1,10.4,4.4,1.9,1.1 +E01010845,Bradford 059B,7.3,9.7,10.4,5.8,5.5,12.5,20.0,16.4,7.1,3.9,1.3 +E01010846,Bradford 055E,6.8,7.1,8.5,4.8,7.2,12.0,19.3,20.4,8.3,4.0,1.7 +E01010847,Bradford 054A,6.8,7.6,6.9,4.0,5.8,14.6,18.5,20.5,8.3,4.8,2.2 +E01010848,Bradford 054B,6.4,6.1,7.7,4.5,5.2,13.0,18.6,20.6,9.5,5.4,3.0 +E01010849,Bradford 059C,5.6,6.0,6.7,3.1,4.3,12.1,16.8,21.4,13.0,8.4,2.6 +E01010850,Bradford 059D,7.5,11.3,12.1,5.0,5.2,14.5,19.7,17.8,4.9,1.4,0.6 +E01010851,Bradford 059E,6.5,5.3,6.5,4.7,4.6,13.8,19.3,22.2,10.3,4.7,2.2 +E01010852,Bradford 054C,10.8,7.3,9.5,5.4,5.7,15.5,18.6,14.0,6.5,4.0,2.7 +E01010853,Bradford 054D,9.3,7.3,9.8,5.9,4.7,12.7,19.4,16.6,9.0,3.6,1.8 +E01010854,Bradford 023A,4.3,5.9,6.0,4.3,4.0,13.3,22.1,21.4,10.9,5.7,2.1 +E01010855,Bradford 023B,3.5,4.5,5.1,2.6,5.0,9.1,15.8,29.3,14.9,7.3,3.0 +E01010856,Bradford 023C,4.6,4.1,5.4,4.5,4.1,11.2,19.8,25.3,11.8,6.0,3.3 +E01010857,Bradford 023D,4.3,5.4,5.5,2.2,3.7,8.1,17.4,25.3,17.6,8.1,2.2 +E01010858,Bradford 023E,4.1,4.8,7.0,3.7,3.8,10.0,19.7,27.0,12.6,5.2,2.2 +E01010859,Bradford 012E,6.6,5.4,6.3,2.9,4.6,12.9,15.6,21.5,14.1,7.2,2.9 +E01010860,Bradford 014B,5.2,5.7,7.1,3.4,5.2,11.3,19.4,23.5,11.6,5.6,2.0 +E01010861,Bradford 023F,3.9,5.0,6.2,4.3,4.0,10.5,16.5,25.2,15.7,6.9,1.9 +E01010862,Bradford 014C,4.5,6.7,6.6,4.3,5.1,11.8,19.3,24.0,11.4,4.8,1.6 +E01010863,Bradford 014D,4.5,6.1,6.6,4.2,3.5,10.4,18.2,25.3,12.7,6.7,1.7 +E01010864,Bradford 059F,6.0,7.1,8.7,6.7,4.8,12.2,20.5,22.3,7.5,2.7,1.7 +E01010865,Bradford 060D,5.0,5.1,7.7,3.4,4.8,12.7,18.4,21.5,13.7,5.6,2.2 +E01010866,Bradford 060E,5.4,5.4,5.0,4.7,4.2,12.9,19.3,21.8,12.3,6.4,2.6 +E01010867,Bradford 059G,7.6,8.5,9.8,4.9,4.8,15.7,22.6,15.3,7.0,2.8,1.0 +E01010868,Bradford 061A,7.8,7.8,8.1,6.0,5.2,13.8,18.3,19.5,9.2,3.5,0.8 +E01010869,Bradford 061B,6.1,6.3,8.3,5.3,4.4,13.7,19.3,17.1,12.1,5.6,1.7 +E01010870,Bradford 061C,4.8,5.6,5.2,3.0,4.0,9.9,17.6,23.3,14.7,10.0,1.8 +E01010871,Bradford 061D,4.0,5.5,6.3,3.3,5.0,15.0,20.5,23.9,9.8,5.4,1.3 +E01010872,Bradford 061E,7.7,9.1,11.9,5.0,4.6,14.0,18.4,14.9,7.9,5.3,1.4 +E01010873,Bradford 061F,5.7,5.1,6.2,3.3,4.6,12.4,14.4,24.6,12.4,7.1,3.9 +E01010874,Bradford 059H,6.9,8.2,9.7,4.7,5.2,15.8,19.3,14.4,6.3,4.6,5.0 +E01033689,Bradford 020E,3.8,2.7,2.6,2.8,11.9,27.4,21.7,17.9,4.6,2.9,1.5 +E01033690,Bradford 065C,7.7,5.1,2.2,3.3,14.0,36.5,23.7,6.5,0.7,0.3,0.1 +E01033691,Bradford 065B,8.1,7.5,6.8,4.6,10.7,23.9,22.9,9.6,3.1,2.1,0.7 +E01033692,Bradford 064D,6.0,7.1,4.9,3.3,12.1,26.9,23.9,12.7,1.9,0.6,0.6 +E01033693,Bradford 064A,7.0,8.0,9.9,9.4,11.8,18.6,20.8,9.5,3.2,1.1,0.7 +E01033694,Bradford 020F,5.1,4.8,4.6,3.2,4.2,18.3,26.8,20.0,7.9,4.0,1.1 +E01033695,Bradford 049H,7.3,7.3,9.3,7.4,5.7,11.8,22.9,18.6,5.5,2.7,1.5 +E01033696,Bradford 049I,4.1,6.1,8.3,4.5,5.3,14.2,21.7,20.0,9.0,5.0,1.8 +E01033697,Bradford 049J,8.4,8.4,10.9,7.3,8.5,14.2,21.8,13.0,4.9,1.7,1.0 +E01033898,Bradford 030E,12.4,10.3,10.4,6.1,6.9,17.3,18.8,11.7,3.1,2.1,0.9 +E01033899,Bradford 030F,14.1,17.0,13.6,4.7,4.4,19.9,18.2,6.5,1.0,0.4,0.1 +E01033900,Bradford 044G,8.1,8.3,13.1,9.8,8.6,13.5,21.7,9.3,4.1,2.2,1.3 +E01033901,Bradford 044H,8.9,8.4,11.0,7.1,8.7,14.8,20.9,11.7,4.5,2.3,1.6 +E05001341,Baildon,4.9,5.5,6.2,3.5,3.8,9.5,18.4,22.3,14.1,8.5,3.3 +E05001342,Bingley,4.3,5.5,7.1,3.6,4.1,10.7,19.3,21.6,12.5,7.7,3.7 +E05001343,Bingley Rural,4.7,5.8,7.2,3.8,3.9,11.0,18.7,22.0,12.9,7.5,2.5 +E05001344,Bolton and Undercliffe,7.1,7.7,9.3,5.4,6.0,13.9,19.4,17.3,7.6,4.2,2.1 +E05001345,Bowling and Barkerend,8.6,8.7,10.6,6.7,7.5,15.3,20.5,13.5,5.2,2.5,0.9 +E05001346,Bradford Moor,8.0,8.9,12.3,7.6,8.1,14.2,21.0,12.5,4.5,2.0,0.8 +E05001347,City (Bradford),7.4,6.8,8.1,7.3,13.4,20.4,20.2,10.1,3.7,1.8,0.9 +E05001348,Clayton and Fairweather Green,6.6,7.6,11.0,6.0,5.8,12.1,18.9,17.0,8.6,4.4,2.0 +E05001349,Craven,4.5,5.4,5.8,3.3,3.6,11.4,17.8,21.6,14.2,8.9,3.5 +E05001350,Eccleshill,7.2,8.5,9.8,5.4,5.5,14.2,19.6,17.0,7.3,4.0,1.5 +E05001351,Great Horton,8.3,8.8,10.7,6.7,6.7,13.4,21.4,13.3,6.2,3.0,1.5 +E05001352,Heaton (Bradford),8.3,9.1,10.7,6.9,6.7,14.4,20.6,13.5,5.5,3.0,1.3 +E05001353,Idle and Thackley,5.7,5.4,6.7,3.7,4.7,13.5,19.7,21.8,10.5,5.7,2.5 +E05001354,Ilkley,3.3,5.0,7.8,4.2,3.2,6.9,17.4,22.4,13.1,10.6,6.1 +E05001355,Keighley Central,6.8,7.7,10.7,6.9,6.9,14.0,20.4,13.7,7.2,3.8,1.9 +E05001356,Keighley East,5.9,7.0,8.2,4.8,5.2,12.6,19.3,19.4,10.4,5.4,1.9 +E05001357,Keighley West,6.7,7.3,8.2,4.2,5.3,13.3,17.9,20.3,9.6,5.3,1.9 +E05001358,Little Horton,8.5,9.5,12.6,8.2,7.9,13.4,21.2,11.9,4.3,1.9,0.7 +E05001359,Manningham,7.3,8.2,11.0,8.1,8.5,15.0,21.2,12.0,5.5,2.2,1.1 +E05001360,Queensbury (Bradford),6.1,6.3,7.9,4.6,5.0,13.5,19.8,21.1,9.2,4.6,1.8 +E05001361,Royds,6.7,7.5,9.0,5.1,5.3,13.5,19.6,18.8,8.2,4.3,2.1 +E05001362,Shipley,5.2,5.9,6.8,4.2,4.8,14.8,21.6,18.7,9.3,5.7,3.0 +E05001363,Thornton and Allerton,6.8,7.4,9.1,4.9,5.0,12.3,19.8,18.6,9.2,5.0,1.9 +E05001364,Toller (Bradford),8.2,8.1,10.6,7.6,8.7,15.1,21.2,12.1,5.0,2.2,1.1 +E05001365,Tong,7.6,8.1,9.8,5.7,5.7,13.8,19.3,18.3,6.9,3.5,1.3 +E05001366,Wharfedale (Bradford),4.8,6.1,8.1,4.0,3.2,8.1,19.8,22.0,12.6,7.7,3.6 +E05001367,Wibsey,7.4,7.3,8.7,5.1,5.9,12.9,18.7,18.5,8.8,4.8,2.1 +E05001368,Windhill and Wrose,6.5,6.7,7.4,4.3,5.5,14.2,19.3,19.5,9.2,5.2,2.0 +E05001369,Worth Valley,4.3,5.4,6.1,3.7,4.3,10.7,18.8,25.0,13.2,6.1,2.2 +E05001370,Wyke,5.8,6.3,7.3,4.3,4.7,13.1,18.0,20.7,11.6,6.2,2.0 +E08000032,Bradford,6.6,7.2,9.0,5.5,6.1,13.3,19.7,17.4,8.5,4.7,2.0 +E08000033,Calderdale,5.5,6.2,7.7,4.4,4.9,12.1,19.1,21.2,10.6,6.1,2.3 +E08000034,Kirklees,5.8,6.4,7.9,4.9,6.0,12.7,19.3,19.4,9.8,5.8,2.1 +E08000035,Leeds,5.8,6.1,7.0,5.3,8.7,14.9,19.4,17.2,8.4,5.1,2.1 +E08000036,Wakefield,5.7,5.9,7.0,3.9,5.1,13.9,19.0,20.6,10.4,6.3,2.1 +E12000003,Yorkshire and The Humber,5.4,5.9,7.2,4.7,6.3,13.1,18.5,19.7,10.3,6.3,2.4 +E92000001,England,5.4,5.9,7.2,4.6,6.0,13.6,19.4,19.4,9.8,6.1,2.4 diff --git a/src/observatory/demographics/_data/age/by_ward.csv b/src/observatory/demographics/_data/age/by_ward.csv new file mode 100644 index 0000000..f67f62d --- /dev/null +++ b/src/observatory/demographics/_data/age/by_ward.csv @@ -0,0 +1,31 @@ +geography_code,geography_name,Aged 4 years and under,Aged 5 to 9 years,Aged 10 to 15 years,Aged 16 to 19 years,Aged 20 to 24 years,Aged 25 to 34 years,Aged 35 to 49 years,Aged 50 to 64 years,Aged 65 to 74 years,Aged 75 to 84 years,Aged 85 years and over,order +E05001358,Little Horton,8.5,9.5,12.6,8.2,7.9,13.4,21.2,11.9,4.3,1.9,0.7,-46.7 +E05001346,Bradford Moor,8.0,8.9,12.3,7.6,8.1,14.2,21.0,12.5,4.5,2.0,0.8,-44.9 +E05001364,Toller (Bradford),8.2,8.1,10.6,7.6,8.7,15.1,21.2,12.1,5.0,2.2,1.1,-43.199999999999996 +E05001359,Manningham,7.3,8.2,11.0,8.1,8.5,15.0,21.2,12.0,5.5,2.2,1.1,-43.1 +E05001347,City (Bradford),7.4,6.8,8.1,7.3,13.4,20.4,20.2,10.1,3.7,1.8,0.9,-43.0 +E05001345,Bowling and Barkerend,8.6,8.7,10.6,6.7,7.5,15.3,20.5,13.5,5.2,2.5,0.9,-42.1 +E05001352,Heaton (Bradford),8.3,9.1,10.7,6.9,6.7,14.4,20.6,13.5,5.5,3.0,1.3,-41.7 +E05001351,Great Horton,8.3,8.8,10.7,6.7,6.7,13.4,21.4,13.3,6.2,3.0,1.5,-41.2 +E05001355,Keighley Central,6.8,7.7,10.7,6.9,6.9,14.0,20.4,13.7,7.2,3.8,1.9,-39.0 +E05001348,Clayton and Fairweather Green,6.6,7.6,11.0,6.0,5.8,12.1,18.9,17.0,8.6,4.4,2.0,-37.0 +E05001365,Tong,7.6,8.1,9.8,5.7,5.7,13.8,19.3,18.3,6.9,3.5,1.3,-36.9 +E05001350,Eccleshill,7.2,8.5,9.8,5.4,5.5,14.2,19.6,17.0,7.3,4.0,1.5,-36.4 +E05001344,Bolton and Undercliffe,7.1,7.7,9.3,5.4,6.0,13.9,19.4,17.3,7.6,4.2,2.1,-35.5 +E05001367,Wibsey,7.4,7.3,8.7,5.1,5.9,12.9,18.7,18.5,8.8,4.8,2.1,-34.4 +E05001361,Royds,6.7,7.5,9.0,5.1,5.3,13.5,19.6,18.8,8.2,4.3,2.1,-33.6 +E05001363,Thornton and Allerton,6.8,7.4,9.1,4.9,5.0,12.3,19.8,18.6,9.2,5.0,1.9,-33.2 +E05001357,Keighley West,6.7,7.3,8.2,4.2,5.3,13.3,17.9,20.3,9.6,5.3,1.9,-31.7 +E05001356,Keighley East,5.9,7.0,8.2,4.8,5.2,12.6,19.3,19.4,10.4,5.4,1.9,-31.1 +E05001368,Windhill and Wrose,6.5,6.7,7.4,4.3,5.5,14.2,19.3,19.5,9.2,5.2,2.0,-30.4 +E05001360,Queensbury (Bradford),6.1,6.3,7.9,4.6,5.0,13.5,19.8,21.1,9.2,4.6,1.8,-29.9 +E05001370,Wyke,5.8,6.3,7.3,4.3,4.7,13.1,18.0,20.7,11.6,6.2,2.0,-28.4 +E05001362,Shipley,5.2,5.9,6.8,4.2,4.8,14.8,21.6,18.7,9.3,5.7,3.0,-26.9 +E05001353,Idle and Thackley,5.7,5.4,6.7,3.7,4.7,13.5,19.7,21.8,10.5,5.7,2.5,-26.200000000000003 +E05001366,Wharfedale (Bradford),4.8,6.1,8.1,4.0,3.2,8.1,19.8,22.0,12.6,7.7,3.6,-26.2 +E05001343,Bingley Rural,4.7,5.8,7.2,3.8,3.9,11.0,18.7,22.0,12.9,7.5,2.5,-25.4 +E05001342,Bingley,4.3,5.5,7.1,3.6,4.1,10.7,19.3,21.6,12.5,7.7,3.7,-24.599999999999998 +E05001341,Baildon,4.9,5.5,6.2,3.5,3.8,9.5,18.4,22.3,14.1,8.5,3.3,-23.9 +E05001369,Worth Valley,4.3,5.4,6.1,3.7,4.3,10.7,18.8,25.0,13.2,6.1,2.2,-23.8 +E05001354,Ilkley,3.3,5.0,7.8,4.2,3.2,6.9,17.4,22.4,13.1,10.6,6.1,-23.5 +E05001349,Craven,4.5,5.4,5.8,3.3,3.6,11.4,17.8,21.6,14.2,8.9,3.5,-22.6 diff --git a/src/observatory/demographics/_data/ethnic_group/by_geography.csv b/src/observatory/demographics/_data/ethnic_group/by_geography.csv index 5f06a2d..4b9fbe5 100644 --- a/src/observatory/demographics/_data/ethnic_group/by_geography.csv +++ b/src/observatory/demographics/_data/ethnic_group/by_geography.csv @@ -341,3 +341,10 @@ E05001367,Wibsey,29.7,2.2,3.6,62.7,1.8 E05001368,Windhill and Wrose,10.5,1.3,3.0,83.5,1.6 E05001369,Worth Valley,0.7,0.3,1.4,97.3,0.2 E05001370,Wyke,5.8,1.3,2.7,89.7,0.6 +E08000032,Bradford,32.1,2.0,2.7,61.1,2.0 +E08000033,Calderdale,10.5,0.7,1.9,86.1,0.8 +E08000034,Kirklees,19.4,2.3,3.1,73.6,1.5 +E08000035,Leeds,9.7,5.6,3.4,79.0,2.3 +E08000036,Wakefield,3.6,1.3,1.4,93.0,0.7 +E12000003,Yorkshire and The Humber,8.9,2.1,2.1,85.4,1.4 +E92000001,England,9.6,4.2,3.0,81.0,2.2 diff --git a/src/observatory/demographics/_data/ethnic_group/by_ward.csv b/src/observatory/demographics/_data/ethnic_group/by_ward.csv new file mode 100644 index 0000000..318ed03 --- /dev/null +++ b/src/observatory/demographics/_data/ethnic_group/by_ward.csv @@ -0,0 +1,31 @@ +geography_code,geography_name,"Asian, Asian British or Asian Welsh","Black, Black British, Black Welsh, Caribbean or African",Mixed or Multiple ethnic groups,White,Other ethnic group,order +E05001364,Toller (Bradford),82.7,1.5,2.0,10.6,3.2,-82.7 +E05001346,Bradford Moor,79.8,2.7,2.2,12.6,2.7,-79.8 +E05001359,Manningham,79.1,3.3,2.2,11.9,3.5,-79.1 +E05001352,Heaton (Bradford),71.9,1.1,2.5,21.7,2.8,-71.9 +E05001358,Little Horton,64.2,5.1,3.3,22.4,4.9,-64.2 +E05001347,City (Bradford),60.2,7.9,3.3,21.6,6.9,-60.2 +E05001351,Great Horton,59.6,2.9,3.3,29.8,4.4,-59.6 +E05001355,Keighley Central,59.5,0.7,1.5,36.3,2.0,-59.5 +E05001345,Bowling and Barkerend,54.4,3.6,3.6,35.0,3.4,-54.4 +E05001348,Clayton and Fairweather Green,39.6,1.9,3.2,53.2,2.0,-39.6 +E05001344,Bolton and Undercliffe,38.6,1.9,3.7,53.0,2.7,-38.6 +E05001367,Wibsey,29.7,2.2,3.6,62.7,1.8,-29.7 +E05001363,Thornton and Allerton,27.0,2.0,4.1,65.3,1.6,-27.0 +E05001356,Keighley East,20.2,0.6,2.1,76.2,0.9,-20.2 +E05001350,Eccleshill,17.9,1.7,3.8,75.5,1.1,-17.9 +E05001362,Shipley,16.5,1.0,3.1,78.2,1.2,-16.5 +E05001361,Royds,12.1,2.2,3.7,81.1,0.9,-12.1 +E05001365,Tong,11.6,4.4,4.3,78.5,1.2,-11.6 +E05001368,Windhill and Wrose,10.5,1.3,3.0,83.5,1.6,-10.5 +E05001360,Queensbury (Bradford),9.9,1.0,2.5,85.8,0.8,-9.9 +E05001357,Keighley West,8.9,0.6,2.4,87.4,0.7,-8.9 +E05001343,Bingley Rural,6.1,0.5,2.3,90.5,0.6,-6.1 +E05001370,Wyke,5.8,1.3,2.7,89.7,0.6,-5.8 +E05001353,Idle and Thackley,4.4,0.7,3.0,91.2,0.7,-4.4 +E05001342,Bingley,2.9,0.7,1.8,94.2,0.4,-2.9 +E05001341,Baildon,2.3,0.5,1.7,95.1,0.4,-2.3 +E05001349,Craven,2.1,0.5,1.1,96.1,0.3,-2.1 +E05001354,Ilkley,1.7,0.4,2.0,95.6,0.3,-1.7 +E05001366,Wharfedale (Bradford),1.4,0.4,1.4,96.5,0.3,-1.4 +E05001369,Worth Valley,0.7,0.3,1.4,97.3,0.2,-0.7 diff --git a/src/observatory/demographics/_data/sex/by_geography.csv b/src/observatory/demographics/_data/sex/by_geography.csv index 5ae1565..74d35d4 100644 --- a/src/observatory/demographics/_data/sex/by_geography.csv +++ b/src/observatory/demographics/_data/sex/by_geography.csv @@ -341,3 +341,10 @@ E05001367,Wibsey,51.7,48.3 E05001368,Windhill and Wrose,51.3,48.7 E05001369,Worth Valley,51.1,48.9 E05001370,Wyke,52.2,47.8 +E08000032,Bradford,51.1,48.9 +E08000033,Calderdale,51.3,48.7 +E08000034,Kirklees,51.0,49.0 +E08000035,Leeds,51.2,48.8 +E08000036,Wakefield,50.8,49.2 +E12000003,Yorkshire and The Humber,50.9,49.1 +E92000001,England,51.0,49.0 diff --git a/src/observatory/demographics/_data/sex/by_ward.csv b/src/observatory/demographics/_data/sex/by_ward.csv new file mode 100644 index 0000000..17920c8 --- /dev/null +++ b/src/observatory/demographics/_data/sex/by_ward.csv @@ -0,0 +1,31 @@ +geography_code,geography_name,Female,Male,order +E05001347,City (Bradford),47.9,52.1,47.9 +E05001359,Manningham,49.0,51.0,49.0 +E05001355,Keighley Central,49.8,50.2,49.8 +E05001358,Little Horton,50.0,50.0,50.0 +E05001346,Bradford Moor,50.2,49.8,50.2 +E05001345,Bowling and Barkerend,50.3,49.7,50.3 +E05001356,Keighley East,50.7,49.3,50.7 +E05001364,Toller (Bradford),50.8,49.2,50.8 +E05001366,Wharfedale (Bradford),50.9,49.1,50.9 +E05001352,Heaton (Bradford),51.0,49.0,51.0 +E05001341,Baildon,51.1,48.9,51.1 +E05001344,Bolton and Undercliffe,51.1,48.9,51.1 +E05001360,Queensbury (Bradford),51.1,48.9,51.1 +E05001362,Shipley,51.1,48.9,51.1 +E05001369,Worth Valley,51.1,48.9,51.1 +E05001342,Bingley,51.2,48.8,51.2 +E05001368,Windhill and Wrose,51.3,48.7,51.3 +E05001363,Thornton and Allerton,51.4,48.6,51.4 +E05001365,Tong,51.4,48.6,51.4 +E05001353,Idle and Thackley,51.6,48.4,51.6 +E05001349,Craven,51.7,48.3,51.7 +E05001350,Eccleshill,51.7,48.3,51.7 +E05001367,Wibsey,51.7,48.3,51.7 +E05001351,Great Horton,51.8,48.2,51.8 +E05001361,Royds,51.8,48.2,51.8 +E05001357,Keighley West,51.9,48.1,51.9 +E05001370,Wyke,52.2,47.8,52.2 +E05001343,Bingley Rural,52.3,47.7,52.3 +E05001354,Ilkley,52.6,47.4,52.6 +E05001348,Clayton and Fairweather Green,53.3,46.7,53.3 diff --git a/src/observatory/demographics/_partials/age.vto b/src/observatory/demographics/_partials/age.vto index 892864c..c32fb76 100644 --- a/src/observatory/demographics/_partials/age.vto +++ b/src/observatory/demographics/_partials/age.vto @@ -1,31 +1,35 @@ -{{> - const sortValue = (s) => s["Aged 4 years and under"] + s["Aged 5 to 9 years"] + s["Aged 85 years and over"] + s["Aged 10 to 15 years"] + s["Aged 16 to 19 years"] + s["Aged 20 to 24 years"]; -}} -

Age

{{ comp.oi.chart.bar({ config: { - data: age.by_geography - .filter(x => x.geography_code.startsWith('E05')) - .sort((a, b) => sortValue(b) - sortValue(a)), - width: 600, - legend: { show: true, }, - category: 'geography_name', - stacked: true, + data: age.by_ward, series: [ - { value: "Aged 4 years and under", title: "Aged 4 years and under", }, - { value: "Aged 5 to 9 years", title: "Aged 5 to 9 years", }, - { value: "Aged 10 to 15 years", title: "Aged 10 to 15 years", }, - { value: "Aged 16 to 19 years", title: "Aged 16 to 19 years", }, - { value: "Aged 20 to 24 years", title: "Aged 20 to 24 years", }, - { value: "Aged 25 to 34 years", title: "Aged 25 to 34 years", }, - { value: "Aged 35 to 49 years", title: "Aged 35 to 49 years", }, - { value: "Aged 50 to 64 years", title: "Aged 50 to 64 years", }, - { value: "Aged 65 to 74 years", title: "Aged 65 to 74 years", }, - { value: "Aged 75 to 84 years", title: "Aged 75 to 84 years", }, - { value: "Aged 85 years and over", title: "Aged 85 years and over", }, - ] + { value: "Aged 4 years and under", title: "4 and under", + tooltip: "{{geography_name}}
{{ _title }}: {{ Aged 4 years and under }}%", }, + { value: "Aged 5 to 9 years", title: "5 to 9", + tooltip: "{{geography_name}}
{{ _title }}: {{ Aged 5 to 9 years }}%"}, + { value: "Aged 10 to 15 years", title: "10 to 15", + tooltip: "{{geography_name}}
{{ _title }}: {{ Aged 10 to 15 years }}%"}, + { value: "Aged 16 to 19 years", title: "16 to 19", + tooltip: "{{geography_name}}
{{ _title }}: {{ Aged 16 to 19 years }}%"}, + { value: "Aged 20 to 24 years", title: "20 to 24", + tooltip: "{{geography_name}}
{{ _title }}: {{ Aged 20 to 24 years }}%"}, + { value: "Aged 25 to 34 years", title: "25 to 34", + tooltip: "{{geography_name}}
{{ _title }}: {{ Aged 25 to 34 years }}%"}, + { value: "Aged 35 to 49 years", title: "35 to 49", + tooltip: "{{geography_name}}
{{ _title }}: {{ Aged 35 to 49 years }}%"}, + { value: "Aged 50 to 64 years", title: "50 to 64", + tooltip: "{{geography_name}}
{{ _title }}: {{ Aged 50 to 64 years }}%"}, + { value: "Aged 65 to 74 years", title: "65 to 74", + tooltip: "{{geography_name}}
{{ _title }}: {{ Aged 65 to 74 years }}%"}, + { value: "Aged 75 to 84 years", title: "75 to 84", + tooltip: "{{geography_name}}
{{ _title }}: {{ Aged 75 to 84 years }}%"}, + { value: "Aged 85 years and over", title: "85 and over", + tooltip: "{{geography_name}}
{{ _title }}: {{ Aged 85 years and over }}%"}, + ], + tooltip: "yo!", + // Common config set in _data.yml + ...chart_config.bar, } }) }}
diff --git a/src/observatory/demographics/_partials/ethnic-group.vto b/src/observatory/demographics/_partials/ethnic-group.vto index d3d1f6c..aa4c5c7 100644 --- a/src/observatory/demographics/_partials/ethnic-group.vto +++ b/src/observatory/demographics/_partials/ethnic-group.vto @@ -1,25 +1,22 @@ -{{> - const sortValue = (s) => s["Asian, Asian British or Asian Welsh"]; -}} -

Ethnic group

{{ comp.oi.chart.bar({ config: { - data: ethnic_group.by_geography - .filter(x => x.geography_code.startsWith('E05')) - .sort((a, b) => sortValue(b) - sortValue(a)), - width: 600, - legend: { show: true, }, - category: 'geography_name', - stacked: true, + data: ethnic_group.by_ward, series: [ - { value: "Asian, Asian British or Asian Welsh", title: "Asian, Asian British or Asian Welsh",}, - { value: "Black, Black British, Black Welsh, Caribbean or African", title: "Black, Black British, Black Welsh, Caribbean or African",}, - { value: "Mixed or Multiple ethnic groups", title: "Mixed or Multiple ethnic groups",}, - { value: "White", title: "White", }, - { value: "Other ethnic group", title: "Other ethnic group", }, - ] + { value: "Asian, Asian British or Asian Welsh", title: "Asian or Asian British/Welsh", + tooltip: "{{geography_name}}
{{ _title }}: {{ Asian, Asian British or Asian Welsh }}%", }, + { value: "Black, Black British, Black Welsh, Caribbean or African", title: "Black, Black British/Welsh, Caribbean or African", + tooltip: "{{geography_name}}
{{ _title }}: {{ Black, Black British, Black Welsh, Caribbean or African }}%", }, + { value: "Mixed or Multiple ethnic groups", title: "Mixed or Multiple", + tooltip: "{{geography_name}}
{{ _title }}: {{ Mixed or Multiple ethnic groups }}%", }, + { value: "White", title: "White", + tooltip: "{{geography_name}}
{{ _title }}: {{ White }}%", }, + { value: "Other ethnic group", title: "Other", + tooltip: "{{geography_name}}
{{ _title }}: {{ Other ethnic group }}%", }, + ], + // Common config set in _data.yml + ...chart_config.bar, } }) }}