Skip to content

Instantly share code, notes, and snippets.

@DevinBayly
Created July 16, 2021 19:40
Show Gist options
  • Save DevinBayly/7705cb9ec75d6ec96a6cc0c2c17aec23 to your computer and use it in GitHub Desktop.
Save DevinBayly/7705cb9ec75d6ec96a6cc0c2c17aec23 to your computer and use it in GitHub Desktop.
aggregation
{
"$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