Created
July 16, 2020 10:27
-
-
Save keckelt/15d03c0f5713d75aa2f6d77ca353c4f7 to your computer and use it in GitHub Desktop.
Nintendo Console Sales
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/v4.json", | |
"description": "A simple bar chart with embedded data.", | |
"data": { | |
"values": [ | |
{"console": "NES", "sales": 61.2}, | |
{"console": "SNES", "sales": 49.1}, | |
{"console": "N64", "sales": 33}, | |
{"console": "GC", "sales": 21.7}, | |
{"console": "Wii", "sales": 101.6}, | |
{"console": "Wii U", "sales": 13.6}, | |
{"console": "Switch", "sales": 55.8} | |
] | |
}, | |
"mark": {"type": "bar", "bandSize": 20, "binSpacing": 2, "size": 34, "color": "#00c800"}, | |
"width": 500, | |
"encoding": { | |
"x": {"field": "console", "type": "nominal", "axis": {"labelAngle": 0}, "sort": null}, | |
"y": {"field": "sales", "type": "quantitative"} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment