Trellis Bar Chart
A trellis bar chart showing the US population distribution of age groups and gender in 2000.
View this example in the online editor
Vega-Lite JSON Specification
{
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"description": "A trellis bar chart showing the US population distribution of age groups and gender in 2000.",
"data": { "url": "data/population.json"},
"transform": [
{"filter": "datum.year == 2000"},
{"calculate": "datum.sex == 2 ? 'Female' : 'Male'", "as": "gender"}
],
"width": {"step": 17},
"mark": "bar",
"encoding": {
"row": {"field": "gender"},
"y": {
"aggregate": "sum", "field": "people",
"title": "population"
},
"x": {"field": "age"},
"color": {
"field": "gender",
"scale": {"range": ["#675193", "#ca8861"]}
}
}
}