-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchart1_covidUKRegions.json
More file actions
76 lines (65 loc) · 1.55 KB
/
chart1_covidUKRegions.json
File metadata and controls
76 lines (65 loc) · 1.55 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"description": "Coronavirus cases",
"data": {
"url": "https://api.coronavirus.data.gov.uk/v2/data?areaType=region&metric=newCasesByPublishDate&format=csv",
"format": {"type": "csv"}},
"title": {
"text": "Covid cases: UK regions",
"subtitleFontStyle":"italic",
"subtitleFontSize":10,
"anchor": "start",
"color": "black"},
"height": 300,
"width": 280,
"mark": {"type": "bar", "width":10},
"selection": {
"Region": {
"type": "single",
"fields": ["areaName"],
"bind": {
"input": "select",
"options": [
null,
"East Midlands",
"East of England",
"London",
"North East",
"North West",
"South East",
"South West",
"West Midlands",
"Yorkshire and The Humber"],
"name": "Region"
}
}
},
"transform": [
{"filter": {"selection": "Region"}},
{
"filter": {
"field": "date",
"range": [
{"year": 2020, "month": "dec", "date": 1},
{"year": 2050, "month": "dec", "date": 30}
]
}
}
],
"encoding": {
"x": {
"field": "date",
"type": "temporal",
"title": null},
"y": {
"field": "newCasesByPublishDate",
"type": "quantitative",
"title": null
},
"color": {
"field": "areaName",
"type": "nominal",
"legend": null,
"scale": {"scheme": "inferno"}
}
}
}