Skip to content
Snippets Groups Projects
singleview_6_6_hist-cat.vl.json 511 B
Newer Older
Danyel Fisher's avatar
Danyel Fisher committed
{
  "$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"}
Danyel Fisher's avatar
Danyel Fisher committed
  }
}