Module

x/vega_lite/examples/specs/layer_precipitation_mean.vl.json

A concise grammar of interactive graphics, built on Vega.
Latest
File
{ "$schema": "https://vega.github.io/schema/vega-lite/v4.json", "data": {"url": "data/seattle-weather.csv"}, "layer": [ { "mark": "bar", "encoding": { "x": { "timeUnit": "month", "field": "date", "type": "ordinal"
}, "y": { "aggregate": "mean", "field": "precipitation", "type": "quantitative" } } }, { "mark": "rule", "encoding": { "y": { "aggregate": "mean", "field": "precipitation", "type": "quantitative" }, "color": {"value": "red"}, "size": {"value": 3} } } ]}