Skip to content

Instantly share code, notes, and snippets.

@lsh
Created July 19, 2022 16:50
Show Gist options
  • Save lsh/50165888dd39277b9bebeb2b638dfb07 to your computer and use it in GitHub Desktop.
Save lsh/50165888dd39277b9bebeb2b638dfb07 to your computer and use it in GitHub Desktop.
Vega-Lite spec from Tue Jul 19 2022
{
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"data": {"url": "data/population.json"},
"transform": [
{"filter": "datum.year == 2000"},
{"calculate": "datum.sex == 2 ? 'Female' : 'Male'", "as": "gender"}
],
"mark": {"type": "arc", "tooltip": true},
"encoding": {
"theta": {
"aggregate": "sum",
"field": "people",
"title": "population",
"stack": "normalize"
},
"color": {"field": "gender", "scale": {"range": ["#675193", "#ca8861"]}}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment