observable-framework-lib-plot

Installation
SKILL.md

Library: Observable Plot

Observable Framework documentation: Library: Observable Plot Source: https://observablehq.com/framework/lib-plot

Observable Plot is a “JavaScript library for visualizing tabular data, focused on accelerating exploratory data analysis. It has a concise, memorable, yet expressive interface, featuring scales and layered marks.” It’s the sister library to our other visualization library, D3.js. Observable Plot is available by default as Plot in Markdown, but you can import it explicitly like so:

import * as Plot from "npm:@observablehq/plot";

To display a chart, call Plot.plot or mark.plot like so:

Plot.rectY(alphabet, {x: "letter", y: "frequency"}).plot()

As another example, here’s a pretty (but meaningless) Voronoi chart:

Related skills
Installs
3
First Seen
Feb 28, 2026