Module

x/vega_lite/examples/specs/histogram_ordinal_sort.vl.json

A concise grammar of interactive graphics, built on Vega.
Latest
File
{ "$schema": "https://vega.github.io/schema/vega-lite/v4.json", "data": {"url": "data/movies.json"}, "mark": "bar", "encoding": { "x": { "bin": true, "field": "IMDB Rating", "type": "ordinal", "sort": { "op": "count", "order": "descending" } }, "y": {"aggregate": "count"} }}