Skip to content

Instantly share code, notes, and snippets.

View Cheeseu999's full-sized avatar

Cheeseu999

View GitHub Profile
@Cheeseu999
Cheeseu999 / spec2.json
Created November 21, 2025 04:44
Vega-Lite Bar Chart of Average Awards per Movie in Binned Years
{
"$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"},
@Cheeseu999
Cheeseu999 / spec.json
Created November 21, 2025 04:42
Vega-Lite Scatter of Movie Awards over Time
{
"$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"},