-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprison_spending.json
87 lines (85 loc) · 2.1 KB
/
prison_spending.json
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
77
78
79
80
81
82
83
84
85
86
87
{
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"title": {
"text": "Government Budget Spending 1982 - 2010",
"anchor": "middle"
},
"config": {
"style": {
"cell": {
"stroke": "transparent"
}
}
},
"data": {"url": "https://raw.githubusercontent.com/nkan0016/FIT3179-DV2/main/data/prison_spending_long.csv"},
"transform": [
{"filter": "datum.Sector != 'Total'"},
{"filter": "datum.Sector != 'Other'"}
],
"vconcat": [
{
"width": 575,
"height": 300,
"mark": "area",
"encoding": {
"x": {
"field": "Year",
"type": "temporal",
"scale": {"domain": {"param": "brush"}},
"axis": {
"labelAngle": 0,
"tickCount": 5,
"title": null
}
},
"y": {
"field": "Spending",
"type": "quantitative",
"title": "Spending ($ Billions)"
},
"color": {
"field": "Sector",
"scale": {"range": ["#fa1b35", "#3b304d", "#f5b73b", "#3a4991", "#809191"]},
"legend": {
"orient": "none",
"legendX": 5,
"legendY": 5
}
},
"tooltip": [
{"field": "Sector", "type": "nominal"},
{"field": "Year", "type": "temporal", "timeUnit": "year", "title": "Year"},
{"field": "Spending", "type": "quantitative", "title": "Budget (Bil)", "format": "$"}
]
}
},
{
"width":575,
"height": 60,
"mark": "area",
"params": [
{"name": "brush", "select": {"type": "interval", "encodings": ["x"]}}
],
"encoding": {
"x": {
"field": "Year",
"type": "temporal",
"axis": {
"labelAngle": 0,
"tickCount": 5
},
"title": "Date"
},
"y": {
"field": "Spending",
"type": "quantitative",
"title": "Spending ($ Billions)"
},
"color": {
"field": "Sector",
"legend": null
}
}
}
]
}