Public
Edited
Oct 19, 2023
Fork of Untitled
Insert cell
data = (async function* a() {
while(true) {
await Promises.delay(1000);
yield d3.range(100).map(d => ({hello: Math.random()}));
}
})()
Insert cell
{
yield Plot.plot({
marks: [
Plot.lineY(data, {y: "hello"})
]
})
}
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