Binned Scatterplot
View this example in the online editor
Vega-Lite JSON Specification
{
"$schema": "https://vega.github.io/schema/vega-lite/v2.json",
"data": {"url": "data/movies.json"},
"mark": "circle",
"encoding": {
"x": {
"bin": {"maxbins": 10},
"field": "IMDB_Rating",
"type": "quantitative"
},
"y": {
"bin": {"maxbins": 10},
"field": "Rotten_Tomatoes_Rating",
"type": "quantitative"
},
"size": {
"aggregate": "count",
"type": "quantitative"
}
}
}