{ "$schema": "https://vega.github.io/schema/vega/v5.json", "background": "white", "padding": 5, "width": 200, "height": 200, "style": "cell", "data": [ {"name": "source_0", "url": "https://raw.githubusercontent.com/vega/vega-datasets/master/data/movies.json", "format": {"type": "json"}}, { "name": "data_0", "source": "source_0", "transform": [ { "type": "extent", "field": "IMDB Rating", "signal": "layer_0_bin_maxbins_10_IMDB_Rating_extent" }, { "type": "bin", "field": "IMDB Rating", "as": [ "bin_maxbins_10_IMDB Rating", "bin_maxbins_10_IMDB Rating_end" ], "signal": "layer_0_bin_maxbins_10_IMDB_Rating_bins", "extent": {"signal": "layer_0_bin_maxbins_10_IMDB_Rating_extent"}, "maxbins": 10 }, { "type": "aggregate", "groupby": [ "bin_maxbins_10_IMDB Rating", "bin_maxbins_10_IMDB Rating_end" ], "ops": ["count"], "fields": [null], "as": ["__count"] }, { "type": "filter", "expr": "isValid(datum[\"bin_maxbins_10_IMDB Rating\"]) && isFinite(+datum[\"bin_maxbins_10_IMDB Rating\"])" } ] }, { "name": "data_1", "source": "source_0", "transform": [ { "type": "aggregate", "groupby": [], "ops": ["mean"], "fields": ["IMDB Rating"], "as": ["mean_IMDB Rating"] }, { "type": "filter", "expr": "isValid(datum[\"mean_IMDB Rating\"]) && isFinite(+datum[\"mean_IMDB Rating\"])" } ] } ], "marks": [ { "name": "layer_0_marks", "type": "rect", "style": ["bar"], "from": {"data": "data_0"}, "encode": { "update": { "fill": {"value": "#4c78a8"}, "ariaRoleDescription": {"value": "bar"}, "description": { "signal": "\"IMDB Rating (binned): \" + (!isValid(datum[\"bin_maxbins_10_IMDB Rating\"]) || !isFinite(+datum[\"bin_maxbins_10_IMDB Rating\"]) ? \"null\" : format(datum[\"bin_maxbins_10_IMDB Rating\"], \"\") + \" – \" + format(datum[\"bin_maxbins_10_IMDB Rating_end\"], \"\")) + \"; Count of Records: \" + (format(datum[\"__count\"], \"\"))" }, "x2": [ { "test": "!isValid(datum[\"bin_maxbins_10_IMDB Rating\"]) || !isFinite(+datum[\"bin_maxbins_10_IMDB Rating\"])", "value": 0 }, {"scale": "x", "field": "bin_maxbins_10_IMDB Rating", "offset": 1} ], "x": [ { "test": "!isValid(datum[\"bin_maxbins_10_IMDB Rating\"]) || !isFinite(+datum[\"bin_maxbins_10_IMDB Rating\"])", "value": 0 }, {"scale": "x", "field": "bin_maxbins_10_IMDB Rating_end"} ], "y": {"scale": "y", "field": "__count"}, "y2": {"scale": "y", "value": 0} } } }, { "name": "layer_1_marks", "type": "rule", "style": ["rule"], "from": {"data": "data_1"}, "encode": { "update": { "stroke": {"value": "red"}, "description": { "signal": "\"Mean of IMDB Rating: \" + (format(datum[\"mean_IMDB Rating\"], \"\"))" }, "x": [ { "test": "!isValid(datum[\"mean_IMDB Rating\"]) || !isFinite(+datum[\"mean_IMDB Rating\"])", "value": 0 }, {"scale": "x", "field": "mean_IMDB Rating"} ], "y": {"value": 0}, "y2": {"field": {"group": "height"}}, "strokeWidth": {"value": 5} } } } ], "scales": [ { "name": "x", "type": "linear", "domain": { "fields": [ { "signal": "[layer_0_bin_maxbins_10_IMDB_Rating_bins.start, layer_0_bin_maxbins_10_IMDB_Rating_bins.stop]" }, {"data": "data_1", "field": "mean_IMDB Rating"} ] }, "range": [0, {"signal": "width"}], "bins": {"signal": "layer_0_bin_maxbins_10_IMDB_Rating_bins"}, "nice": true, "zero": false }, { "name": "y", "type": "linear", "domain": {"data": "data_0", "field": "__count"}, "range": [{"signal": "height"}, 0], "nice": true, "zero": true } ], "axes": [ { "scale": "y", "orient": "left", "gridScale": "x", "grid": true, "tickCount": {"signal": "ceil(height/40)"}, "domain": false, "labels": false, "aria": false, "maxExtent": 0, "minExtent": 0, "ticks": false, "zindex": 0 }, { "scale": "x", "orient": "bottom", "grid": false, "title": "IMDB Rating (binned), Mean of IMDB Rating", "labelFlush": true, "labelOverlap": true, "tickCount": {"signal": "ceil(width/10)"}, "zindex": 0 }, { "scale": "y", "orient": "left", "grid": false, "title": "Count of Records", "labelOverlap": true, "tickCount": {"signal": "ceil(height/40)"}, "zindex": 0 } ] }