Published
Edited
Sep 15, 2019
Also listed in…
uncertainty: templates
Insert cell
md`# identity`
Insert cell
chart = {
const svg = d3.select(DOM.svg(width, height))
.style("font", "10px sans-serif");
svg.selectAll("dot")
.data(data)
.enter().append("circle")
.attr("r", radius)
.attr("cx", function(d) { return d[0]; })
.attr("cy", function(d) { return d[1]; });
return svg.node();
}
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
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