Skip to content

Instantly share code, notes, and snippets.

@mwdchang
Created June 17, 2024 14:38
Show Gist options
  • Save mwdchang/405758adac2e05fc285e50585518fe18 to your computer and use it in GitHub Desktop.
Save mwdchang/405758adac2e05fc285e50585518fe18 to your computer and use it in GitHub Desktop.
Vega/vegalite: plot + raincloud
{
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"data": {"url": "data/unemployment-across-industries.json"},
"transform": [{"calculate": "random()", "as": "jitter"}],
"vconcat": [
{
"width": 500,
"height": 100,
"mark": "area",
"encoding": {
"x": {
"timeUnit": "yearmonth",
"field": "date",
"axis": {"format": "%Y"}
},
"y": {
"aggregate": "sum",
"field": "count",
"title": "count"
}
}
},
{
"width": 500,
"height": 50,
"mark": "boxplot",
"encoding": {
"color": { "value": "#a52" },
"x": {
"field": "count",
"type": "quantitative",
"scale": { "zero": false}
}
}
},
{
"width": 500,
"height": 100,
"mark": "point",
"encoding": {
"color": { "value": "#f80" },
"opacity": { "value": 0.4 },
"size": { "value": 5 },
"x": { "field": "count", "type":"quantitative" },
"y": { "field": "jitter", "type": "quantitative" },
// "yOffset": {"field": "random", "type": "quantitative"}
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment