embed({
"$schema": "https://vega.github.io/schema/vega-lite/v4.json",
"data": {"values": gameImdb},
"width": 800,
"height": 400,
"transform": [
{
"calculate": "floor(datum.year / 10) * 10",
"as": "decade_group"
}
],
"mark": "point",
"encoding": {
"x": {
"field": "decade_group",
"type": "ordinal",
"title": "Year"
},
"y": {
"field": "rating",
"type": "quantitative",
"title": "Rating"
},
"color": {
"field": ["Action", "Adventure", "Comedy"],
"type": "nominal",
"title": "Chosen Genre",
"scale": {
"range": ["blue", "gray"]
},
"condition": {
"test": "datum.chosen_genre === true",
"value": "blue"
}
}
},
"selection": {
"genreFilter": {
"type": "multi",
"fields": ["Action", "Adventure", "Comedy"],
"bind": {
"input": "checkbox"
}
}
}
});