Module

x/vega_lite/examples/specs/circle_binned_maxbins_5.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": "circle", "encoding": { "x": { "bin": {"maxbins": 5}, "field": "IMDB Rating" }, "y": { "bin": {"maxbins": 5}, "field": "Rotten Tomatoes Rating" }, "size": {"aggregate": "count"} }}