Notebooks 2.0 is here.

Published
Edited
Apr 30, 2020
Insert cell
Insert cell
mychart = {
var svg = d3.create("svg")
.attr("width", 1000)
.attr("height", 500);

svg.selectAll("path")
.data(nyc.features)
.enter().append("path")
.attr("d", path)
return svg.node()
}
Insert cell
path = d3.geoPath()
.projection(d3.geoConicConformal()
.parallels([33, 45])
.rotate([96, -39])
.fitSize([1000, 500], nyc))
Insert cell
nyc = d3.json("https://gist.githubusercontent.com/pstuffa/928a2a31f352e59edef5ef56fa767e20/raw/7ba0230c627237c12cc1b3809f85d99486621756/nyc.json")
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