Published
Edited
Jan 17, 2021
Importers
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
function unit_range(count) {
return range(count).map(t => t / (count - 1));
}
Insert cell
Insert cell
function power(y0, y1, p) {
let l = linear(Math.pow(y0, 1 / p), Math.pow(y1, 1 / p));
return t => Math.pow(l(t), p);
}
Insert cell
function geometric(y0, y1) {
let l = linear(0, Math.log(y1 / y0));
return t => y0 * Math.exp(l(t));
}
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