Created
November 7, 2022 17:17
-
-
Save jonmmease/1857db38e6dcd7119b7689392b0a9ee2 to your computer and use it in GitHub Desktop.
histogram_drilldown
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/cars.json"}, | |
"layer": [ | |
{ | |
"params": [ | |
{"name": "brush", "select": {"type": "interval", "encodings": ["x"]}} | |
], | |
"mark": "bar", | |
"encoding": { | |
"x": {"field": "Acceleration", "bin": true}, | |
"y": {"aggregate": "count"} | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment