Created
July 16, 2021 19:40
-
-
Save DevinBayly/c3b42a5df6396b25d0bc21795d1e3713 to your computer and use it in GitHub Desktop.
Vega-Lite spec from Fri Jul 16 2021
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/v5.json", | |
| "description": "Plot showing a 30 day rolling average with raw values in the background.", | |
| "title":"Learning Vega", | |
| "data": { | |
| "url": "https://gist.githubusercontent.com/DevinBayly/a4bbb3b0f1293f0b4d373bc99e1917cc/raw/ca4376a0255d00885866be5b7f395743833321e9/vega_data.json" | |
| }, | |
| "width": 400, | |
| "height": 300, | |
| "mark": "bar", | |
| "encoding": { | |
| "x": {"field": "value", "type": "quantitative", "title": "Index","bin": true}, | |
| "y":{"aggregate":"count"} | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment