{ "$schema": "https://vega.github.io/schema/vega-lite/v4.json", "data": { "url": "https://vega.github.io/vega-lite/data/movies.json" }, "encoding": { "x": { "axis": { "title": "IMDB Rating" }, "field": "IMDB_Rating", "type": "quantitative" }, "y": { "axis": { "title": "" }, "field": "Title", "sort": { "encoding": "x", "order": "descending" }, "type": "nominal" } }, "mark": "bar", "transform": [ { "filter": "datum.IMDB_Rating != null" }, { "as": "year", "field": "Release_Date", "timeUnit": "year" }, { "groupby": [ "year" ], "joinaggregate": [ { "as": "AverageYearRating", "field": "IMDB_Rating", "op": "mean" } ] }, { "filter": "(datum.IMDB_Rating - datum.AverageYearRating) > 2.5" } ] }