Published
Edited
Oct 26, 2021
Insert cell
# Oct Test
Insert cell
height = 300
Insert cell
h = d3.csv(
"https://raw.githubusercontent.com/vega/vega-datasets/next/data/disasters.csv",
(d) => {
return {
entity: d.Entity,
year: new Date(d.Year),
deaths: +d.Deaths
};
}
)
Insert cell
g = aq.from(h)
Insert cell
Plot.dot(h, { x: "year", y: "deaths" }).plot()
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