Skip to content

Instantly share code, notes, and snippets.

@declann
Created August 19, 2024 17:54
Show Gist options
  • Save declann/261a9333c999c4e743d0093330eaaf90 to your computer and use it in GitHub Desktop.
Save declann/261a9333c999c4e743d0093330eaaf90 to your computer and use it in GitHub Desktop.
Vega-Lite spec from Mon Aug 19 2024
{
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"title": "Seattle Weather, 2012-2015",
"data": {
"url": "data/seattle-weather.csv"
},
"vconcat": [
{ "width": 600,
"height": 300,
"layer":[{
"mark": "rule",
"encoding": {
"x": {"value": 100}
}
},{
"encoding": {
"color": {
"condition": {
"param": "brush",
"title": "Weather",
"field": "weather",
"type": "nominal",
"scale": {
"domain": ["sun", "fog", "drizzle", "rain", "snow"],
"range": ["#e7ba52", "#a7a7a7", "#aec7e8", "#1f77b4", "#9467bd"]
}
},
"value": "lightgray"
},
"size": {
"title": "Precipitation",
"field": "precipitation",
"scale": {"domain": [-1, 50]},
"type": "quantitative"
},
"x": {
"field": "date",
"timeUnit": "monthdate",
"title": "Date",
"axis": {"format": "%b"}
},
"y": {
"title": "Maximum Daily Temperature (C)",
"field": "temp_max",
"scale": {"domain": [-5, 40]},
"type": "quantitative"
}
},
"mark": "point",
"params": [{
"name": "brush",
"select": {"type": "interval", "encodings": ["x"]}
}],
"transform": [{"filter": {"param": "click"}}]
}]},
{
"encoding": {
"color": {
"condition": {
"param": "click",
"field": "weather",
"scale": {
"domain": ["sun", "fog", "drizzle", "rain", "snow"],
"range": ["#e7ba52", "#a7a7a7", "#aec7e8", "#1f77b4", "#9467bd"]
}
},
"value": "lightgray"
},
"x": {"aggregate": "count"},
"y": {"title": "Weather", "field": "weather"}
},
"width": 600,
"mark": "bar",
"params": [{
"name": "click",
"select": {"type": "point", "encodings": ["color"]}
}],
"transform": [{"filter": {"param": "brush"}}]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment