Skip to content

Instantly share code, notes, and snippets.

@simplymathematics
Created April 7, 2022 08:17
Show Gist options
  • Save simplymathematics/bc62440f4a2950b93a878f9df3a32b05 to your computer and use it in GitHub Desktop.
Save simplymathematics/bc62440f4a2950b93a878f9df3a32b05 to your computer and use it in GitHub Desktop.
Vega-Lite spec from Thu Apr 07 2022
{
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"data": {"url": "data/seattle-weather.csv"},
"mark": "bar",
"encoding": {
"x": {"timeUnit": "month", "field": "date", "type": "ordinal"},
"y": {"aggregate": "average", "field": "precipitation"}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment