forked from csaladenes/course-datascience
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy paths4_chart2.json
More file actions
78 lines (68 loc) · 1.74 KB
/
Copy paths4_chart2.json
File metadata and controls
78 lines (68 loc) · 1.74 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
77
78
{
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"title": {
"text": "Gun deaths and income - US states",
"subtitle":["Median income (x), firearm deaths per 100k population (y), prison rate per 100 pop. (bubble size)",""],
"subtitleFontStyle":"italic",
"subtitleFontSize":10,
"anchor": "start",
"color": "black"
},
"description": "Various US measures state by state",
"data": {
"url": "https://raw.githubusercontent.com/EconomicsObservatory/courses/main/datasets/advanced/usa_socioEconomic.csv",
"format":{"type":"csv"}},
"mark": {
"type":"point",
"size":150,
"color":"rgb(0,67,167)",
"opacity":0.6},
"height": 300,
"width": 400,
"transform": [
{"calculate": "datum.PrisonRate * 1000", "as": "PrisonRatePer100k"}
],
"encoding": {
"x": {
"field": "medIncome",
"type": "quantitative",
"scale": {
"domain": [40000, 80000]
},
"axis": {
"title": "Median Income"
}
},
"y": {
"field": "FirearmDeaths",
"type": "quantitative",
"axis": {
"title": "Firearm Deaths"
}
},
"color": {
"field": "GeographicDivision",
"type": "ordinal",
"scale": {
"scheme": "set1"
},
"legend": {
"title": null
}
},
"size": {
"field": "PrisonRate",
"type": "quantitative",
"title": "Prison Rate",
"scale": {
"range": [5, 300]
}
},
"tooltip": [
{"field": "State"},
{"field": "medIncome", "format": "$,", "title": "Median Income"},
{"field": "FirearmDeaths", "format": ",", "title":"Firearm Deaths"},
{"field": "ImprisonmentRate", "format": ",", "title":"Prison Rate"}
]
}
}