Created
November 16, 2022 12:45
-
-
Save jonmmease/e1a43899b2b6321178db1c053595bee2 to your computer and use it in GitHub Desktop.
Vega-Lite Histogram
This file contains 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/v5.json", | |
"data": {"url": "data/movies.json"}, | |
"mark": "bar", | |
"encoding": { | |
"x": {"bin": true, "field": "IMDB Rating"}, | |
"y": {"aggregate": "count"} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment