Created
July 25, 2017 18:23
-
-
Save domoritz/4a15722fc7377ba5aa286261b58d35a0 to your computer and use it in GitHub Desktop.
Airline Delays: Heatmap
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/v2.json", | |
"data": { | |
"url": "https://gist.githubusercontent.com/domoritz/1ca6a741fbfb0a64396e40f233ae6f21/raw/1b1e1e3cb5d112760fbc0fe620e1eeb6558bbdf3/delays.csv" | |
}, | |
"width": 800, | |
"height": 400, | |
"mark": "rect", | |
"encoding": { | |
"x": { | |
"field": "DepDelay", | |
"type": "quantitative", | |
"bin": {"maxbins": 50} | |
}, | |
"y": { | |
"field": "ArrDelay", | |
"type": "quantitative", | |
"bin": {"maxbins": 50} | |
}, | |
"color": { | |
"aggregate": "count", | |
"type": "quantitative" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment