-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHeat map
52 lines (52 loc) · 1.45 KB
/
Heat map
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
{
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"data": {"name": "dataset"},
"spacing": 30,
"bounds": "flush",
"vconcat": [
{
"mark": {
"type": "rect",
"stroke": "white",
"tooltip": true,
"cornerRadius": 6
},
"encoding": {
"y": {
"field": "Day of Week",
"type": "ordinal",
"sort": ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"],
"axis": {"labelColor": "white", "title": null}
},
"x": {
"field": "Month",
"type": "ordinal",
"sort": ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
"axis": {"labelColor": "white", "title": null}
},
"color": {"field": "_Track", "type": "quantitative", "scale": {"scheme": "pbiColorLinear"}}
},
"height": 150,
"width": 310
},
{
"height": 50,
"width": 310,
"mark": {
"type": "bar",
"stroke": null,
"cornerRadiusEnd": 4,
"tooltip": true,
"color": {"expr": "pbiColor(5)"}
},
"encoding": {
"x": {
"field": "Month",
"sort": ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
"axis": {"labelColor": "white", "title": null}
},
"y": {"field": "_Track", "aggregate": "mean", "axis": {"labelColor": "white", "title": null}}
}
}
]
}