Module

x/vega_lite/examples/specs/layer_point_errorbar_1d_vertical.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/barley.json"}, "layer": [ { "mark": "errorbar", "encoding": { "y": { "field": "yield", "type": "quantitative", "scale": {"zero": false} } } }, { "mark": { "type": "point", "filled": true, "color": "black" }, "encoding": { "y": { "field": "yield", "aggregate": "mean", "type": "quantitative" } } } ]}