Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save DevinBayly/e1d08d0e987573e621d9afa4040f660f to your computer and use it in GitHub Desktop.
some faceting
{
"$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"
},
"facet":{"row":{"field":"category"},"col":{"field":"category"}},
"spec":{
"width": 400,
"height": 300,
"mark": "point",
"encoding": {
"x": {"field": "index", "type": "quantitative", "title": "Index"},
"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