This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "https://vega.github.io/schema/vega-lite/v6.json", | |
| "description": "Chart showing average number of awards won per movie in binned years", | |
| "data": { | |
| "url": "https://raw.githubusercontent.com/Cheeseu999/testing/refs/heads/main/clean_dataset.csv", | |
| "format": {"type": "csv"} | |
| }, | |
| "mark": "bar", | |
| "encoding": { | |
| "x": {"bin": true, "field": "Year"}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "https://vega.github.io/schema/vega-lite/v6.json", | |
| "description": "Awards per Movie over Time", | |
| "data": {"url": "https://raw.githubusercontent.com/Cheeseu999/testing/refs/heads/main/clean_dataset.csv", | |
| "format": { | |
| "type": "csv"} | |
| }, | |
| "mark": "point", | |
| "encoding": { | |
| "x": {"field": "Year", "type": "temporal"}, |