Module

x/vega_lite/examples/specs/boxplot_2D_horizontal_color_size.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 horizontal box plot showing median and lower and upper quartiles of the distribution of body mass of penguins.", "data": {"url": "data/penguins.json"}, "mark": "boxplot", "encoding": { "y": {"field": "Species", "type": "nominal"}, "x": { "field": "Body Mass (g)", "type": "quantitative", "scale": {"zero": false} }, "size": {"value": 10}, "color": {"value" : "teal"} }}