hvega-0.12.0.7: tests/specs/gallery/bar/signedpopulation.vl
{
"$schema": "https://vega.github.io/schema/vega-lite/v4.json",
"config": {
"axis": {
"grid": false
},
"view": {
"stroke": null
}
},
"data": {
"url": "https://vega.github.io/vega-lite/data/population.json"
},
"encoding": {
"color": {
"field": "gender",
"legend": {
"orient": "top",
"title": ""
},
"scale": {
"range": [
"#675193",
"#ca8861"
]
},
"type": "nominal"
},
"x": {
"aggregate": "sum",
"axis": {
"format": "s",
"title": "Population"
},
"field": "signedPeople",
"type": "quantitative"
},
"y": {
"axis": null,
"field": "age",
"sort": "descending",
"type": "ordinal"
}
},
"height": 200,
"mark": "bar",
"transform": [
{
"filter": "datum.year == 2000"
},
{
"as": "gender",
"calculate": "datum.sex == 2 ? 'Female' : 'Male'"
},
{
"as": "signedPeople",
"calculate": "datum.sex == 2 ? datum.people : -datum.people"
}
],
"width": 300
}