Last active
August 4, 2017 16:36
-
-
Save kanitw/02edd4fe0173cf3b535468292e1610fe to your computer and use it in GitHub Desktop.
Vega-lite Quick Demo
This file contains 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", | |
"description": "Summarized and per year weather information for Seatle and New York.", | |
"data": {"url": "data/weather.csv"}, | |
"repeat": {"column": ["temp_max","precipitation","wind"]}, | |
"spec": { | |
"layer": [ | |
{ | |
"mark": "line", | |
"encoding": { | |
"y": { | |
"aggregate": "mean", | |
"field": {"repeat": "column"}, | |
"type": "quantitative" | |
}, | |
"x": { | |
"timeUnit": "month", | |
"type": "temporal", | |
"field": "date" | |
}, | |
"detail": { | |
"timeUnit": "year", | |
"type": "temporal", | |
"field": "date" | |
}, | |
"color": {"type": "nominal","field": "location"}, | |
"opacity": {"value": 0.2} | |
} | |
}, | |
{ | |
"mark": "line", | |
"encoding": { | |
"y": { | |
"aggregate": "mean", | |
"field": {"repeat": "column"}, | |
"type": "quantitative" | |
}, | |
"x": { | |
"timeUnit": "month", | |
"type": "temporal", | |
"field": "date" | |
}, | |
"color": {"type": "nominal","field": "location"} | |
} | |
} | |
] | |
} | |
} |
This file contains 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
{ | |
"data": {"url": "data/cars.json"}, | |
"selection": { | |
"brush": { | |
"type": "interval" | |
} | |
}, | |
"mark": {"type": "circle", "clip": true}, | |
"encoding": { | |
"x": { | |
"field": "Horsepower", "type": "quantitative", | |
"scale": {"domain": [75, 150]} | |
}, | |
"y": { | |
"field": "Miles_per_Gallon", "type": "quantitative", | |
"scale": {"domain": [20, 40]} | |
}, | |
"size": {"field": "Cylinders", "type": "quantitative"}, | |
"color": { | |
"condition": { | |
"selection": "brush", | |
"field": "Origin", "type": "nominal" | |
}, | |
"value": "grey" | |
} | |
} | |
} |
Author
kanitw
commented
Aug 4, 2017
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment