forked from csaladenes/course-datascience
-
Notifications
You must be signed in to change notification settings - Fork 5
/
s5_chart2.json
38 lines (38 loc) · 1.04 KB
/
s5_chart2.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
{
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"background": "rgb(15,33,44)",
"title": {
"anchor": "start",
"text": "Indian Trade",
"color": "whitesmoke",
"subtitleColor": "whitesmoke",
"subtitleFontWeight": "lighter",
"subtitle": ["Exports and Imports, % of GDP", "Source: ODI via ECO API", ""]
},
"data": {
"url": "https://raw.githubusercontent.com/EconomicsObservatory/courses/main/5/s5_indian_trade_data.csv"
},
"mark": "line",
"width": 600,
"height": 300,
"encoding": {
"x": {
"field": "date",
"type": "temporal",
"title": null,
"axis": {"grid": false, "labelColor": "whitesmoke"}
},
"y": {
"field": "value",
"type": "quantitative",
"title": null,
"axis": {"format": "%", "labelColor": "whitesmoke", "gridOpacity": 0.5}
},
"color": {
"field": "series",
"legend": {"title": null, "orient": "top", "labelColor": "whitesmoke"},
"scale": {"scheme": "dark2"}
}
},
"config": {"view": {"strokeOpacity": 0}}
}