Skip to content

Instantly share code, notes, and snippets.

@DevinBayly
Created July 16, 2021 15:22
Show Gist options
  • Select an option

  • Save DevinBayly/4a2ba092f2a2e5fee6c7b4aaa789fc80 to your computer and use it in GitHub Desktop.

Select an option

Save DevinBayly/4a2ba092f2a2e5fee6c7b4aaa789fc80 to your computer and use it in GitHub Desktop.
Vega-Lite spec from Fri Jul 16 2021
{
"$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