Newer
Older
{
"$schema": "https://vega.github.io/schema/vega-lite/v2.json",
"config": {"background":"#ffffff"},
"data": {
"url": "data/cars.csv",
"format": {"type":"csv"}
},
"mark": "bar",
"encoding": {
"x": {
"field": "body-style",
"type": "nominal",
"axis": {"title": "Body Style"},
"sort": {
"field":"*",
"op": "count",
"order": "descending"
}
},
"y": { "type": "quantitative", "aggregate": "count"}