Module

x/vega_lite/examples/specs/point_color_with_shape.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 scatterplot showing body mass and flipper lengths of penguins.", "data": { "url": "data/penguins.json" }, "mark": "point", "encoding": { "x": { "field": "Flipper Length (mm)", "type": "quantitative", "scale": {"zero": false} }, "y": { "field": "Body Mass (g)", "type": "quantitative", "scale": {"zero": false} }, "color": {"field": "Species", "type": "nominal"}, "shape": {"field": "Species", "type": "nominal"} }}