Skip to content

Instantly share code, notes, and snippets.

@domoritz
Last active July 25, 2017 18:23
Show Gist options
  • Save domoritz/6be69bdea3aea947f7c9784fcd2c3b4e to your computer and use it in GitHub Desktop.
Save domoritz/6be69bdea3aea947f7c9784fcd2c3b4e to your computer and use it in GitHub Desktop.
Airline Delays: Scatterplot
{
"$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": "point",
"encoding": {
"x": {"field": "DepDelay", "type": "quantitative"},
"y": {"field": "ArrDelay", "type": "quantitative"}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment