Created
July 16, 2021 15:55
-
-
Save DevinBayly/e1d08d0e987573e621d9afa4040f660f to your computer and use it in GitHub Desktop.
some faceting
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" | |
| }, | |
| "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