Created
March 25, 2022 11:53
-
-
Save pmuellr/a3dcb6e4106a857ae57ce3229aba2f1e to your computer and use it in GitHub Desktop.
task manager tasks heatmap in vega-lite (baby steps)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://vega.github.io/schema/vega-lite/v5.json", | |
"description": "task manager tasks", | |
"data": {"values": [ | |
{"worker": 0, "begin": 0, "duration": 1, "type": "i" }, | |
{"worker": 0, "begin": 3, "duration": 1, "type": "i" }, | |
{"worker": 0, "begin": 6, "duration": 1, "type": "i" }, | |
{"worker": 0, "begin": 9, "duration": 1, "type": "i" }, | |
{"worker": 1, "begin": 0, "duration": 4, "type": "o" }, | |
{"worker": 1, "begin": 6, "duration": 2, "type": "s" } | |
]}, | |
"mark": "rect", | |
"encoding": { | |
"x": { | |
"bin": {}, | |
"field": "begin", | |
"type": "ordinal" | |
}, | |
"y": { | |
"bin": {"maxbins": 10}, | |
"field": "worker", | |
"type": "ordinal" | |
}, | |
"color": {"field": "type"} | |
}} |
Author
pmuellr
commented
Mar 25, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment