Machine-readable page content
Canonical: https://semiotic.nteract.io/playground/scatterplot
Scatterplot Playground
Experiment with Scatterplot props in real time. Adjust the controls below the chart to see how each prop affects the visualization, then copy the generated code.
Points
Generated Code
The link restores this exact configuration; the config is a portable ChartConfig artifact.
JSX
import { Scatterplot } from "semiotic" const data = [ { x: 160, y: 55 }, { x: 165, y: 62 }, { x: 170, y: 68 }, // ...15 points ] <Scatterplot data={data} />