-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
22,190 additions
and
37 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
{% set background = "#005776" %} | ||
|
||
{% comp 'grid.block', { | ||
link: '~/maps/neet-factors/index.njk' | url + '?map-selector=total-score', | ||
background: background, | ||
colour: 'white' | ||
} %} | ||
|
||
<h3>NEET factors</h3> | ||
|
||
<p> | ||
Likelihood of NEET outcome modelled on multiple factors by Local Authority. | ||
</p> | ||
|
||
<div class="dashboard-viz"> | ||
{{ comp.oi.map.hex_cartogram({ | ||
config: { | ||
hexjson: search.data('/maps').uk_local_authority_districts_2021, | ||
data: search.data('/maps/neet-factors').view.total_score.rows, | ||
matchKey: 'local_authority_code', | ||
value: 'value', | ||
scale: 'YFF', | ||
tooltip: '{{ n }}: <strong>{{ value | toFixed(2) }}</strong>' | ||
} | ||
}) | simpleviz | safe }} | ||
</div> | ||
{% endcomp %} | ||
|
||
{% comp 'grid.block', { | ||
link: '~/maps/employment/index.njk' | url + '?map-selector=census-youth-unemployed-economically-inactive', | ||
background: background, | ||
colour: 'white' | ||
} %} | ||
<h3>Employment</h3> | ||
|
||
<p> | ||
Propoprtion of young people unemployed, economically inactive and not in full-time education by parliamentary consituency. | ||
</p> | ||
|
||
<div class="dashboard-viz"> | ||
{{ comp.oi.map.hex_cartogram({ | ||
config: { | ||
hexjson: search.data('/maps').constituencies, | ||
data: search.data('/maps/employment').view.census_unemployed_or_economically_inactive_and_not_in_fte_youth.rows, | ||
matchKey: 'geography_code', | ||
value: 'rate', | ||
scale: 'YFF', | ||
tooltip: '{{ n }}: <strong>{{ rate | toFixed(1) }}%</strong>' | ||
} | ||
}) | simpleviz | safe }} | ||
</div> | ||
|
||
{% endcomp %} |
File renamed without changes.
Oops, something went wrong.