Public
Edited
Apr 11, 2023
Insert cell
Insert cell
data_orig = {
let n = 1e6;
let out = d3.range(n).map(() => ({ x: Math.random(), y: Math.random() }));
return out;
}
Insert cell
data = data_orig
Insert cell
Plot.plot({
marks: [
Plot.hexagon(data_orig, Plot.hexbin({ fill: "count" }, { x: "x", y: "y" }))
]
})
Insert cell

Purpose-built for displays of data

Observable is your go-to platform for exploring data and creating expressive data visualizations. Use reactive JavaScript notebooks for prototyping and a collaborative canvas for visual data exploration and dashboard creation.
Learn more