Created
July 16, 2021 15:22
-
-
Save DevinBayly/4a2ba092f2a2e5fee6c7b4aaa789fc80 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.", | |
| "width": 400, | |
| "height": 300, | |
| "data": { | |
| "url": "https://gist.githubusercontent.com/DevinBayly/a4bbb3b0f1293f0b4d373bc99e1917cc/raw/710cd28eb5e458f270c5686823887ff19c8b998f/vega_data.json" | |
| }, | |
| "mark": "point", | |
| "encoding": { | |
| "x": {"field": "index", "type": "quantitative", "title": "Date"}, | |
| "y": {"type": "quantitative", "field": "value", "axis": {"title": "Value"}} | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment