{ "transform": [ { "filter": "datum.year == 2000" }, { "as": "gender", "calculate": "datum.sex == 2 ? 'Female' : 'Male'" } ], "config": { "header": { "labelFontSize": 15, "titleFontSize": 20 } }, "mark": "bar", "data": { "url": "https://vega.github.io/vega-lite/data/population.json" }, "$schema": "https://vega.github.io/schema/vega-lite/v3.json", "encoding": { "color": { "field": "gender", "scale": { "range": [ "#EA98D2", "#659CCA" ] }, "type": "nominal" }, "x": { "field": "age", "scale": { "rangeStep": 17 }, "type": "ordinal" }, "column": { "field": "gender", "header": {}, "type": "nominal" }, "y": { "field": "people", "aggregate": "sum", "type": "quantitative", "axis": { "title": "Population" } } } }