Module

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

A concise grammar of interactive graphics, built on Vega.
Latest
File
{ "$schema": "https://vega.github.io/schema/vega-lite/v4.json", "description": "A vertical box plot showing median, min, and max body mass of penguins.", "data": {"url": "data/penguins.json"}, "mark": { "type": "boxplot", "extent": "min-max" }, "encoding": { "x": {"field": "Species", "type": "nominal"}, "color": {"field": "Species", "type": "nominal", "legend": null}, "y": { "field": "Body Mass (g)", "type": "quantitative", "scale": {"zero": false} } }}