Published
Edited
May 2, 2020
Insert cell
Insert cell
Insert cell
Insert cell
extent = d3.extent(data, d => d.value) // data is loaded in the Annex, below
Insert cell
Insert cell
scaleAnomalyPuOr = d3.scaleDiverging()
.domain([extent[0], 0, extent[1]])
.interpolator(d3.interpolatePuOr)
Insert cell
chart(scaleAnomalyPuOr) // chart is defined in the Annex, below
Insert cell
Insert cell
scaleAnomaly = d3.scaleDiverging(t => d3.interpolateRdBu(1 - t))
.domain([extent[0], 0, extent[1]])
Insert cell
chart(scaleAnomaly)
Insert cell
Insert cell
chart_1 = chart(d3.scaleDiverging([extent[0], 0, extent[1]], t => d3.interpolateRdBu(1 - t)))
Insert cell
Insert cell
Insert cell
scaleAnomaly(NaN)
Insert cell
scaleAnomaly.copy().unknown("transparent")(NaN)
Insert cell
Insert cell
scaleAnomaly.range()
Insert cell
chart(scaleAnomaly.copy().range(["green", "white", "orange"]))
Insert cell
Insert cell
Insert cell
scaleDivergingGeneric = d3.scaleDivergingSymlog(
[-1e6, 0, 1e6],
d3.interpolatePiYG
)
Insert cell
{
const context = DOM.context2d(width, 45);
context.font = "30px sans-serif";
context.textBaseline = "hanging";

do {
const v = 1000 * (1 / Math.random() - 1) * (Math.random() < 0.5 ? -1 : 1);

context.fillStyle = scaleDivergingGeneric(v);
context.fillRect(0, 0, width, 45);

context.fillStyle = "white";
context.fillText(`value = ${v.toFixed(2)}`, 10, 10);

yield context.canvas;
await Promises.tick(1000);
} while (1);
}
Insert cell
Insert cell
data = {
const all_data = [];
for (let i=0; i<1; i++) {
const data = [];
// https://data.giss.nasa.gov/gistemp/tabledata_v3/GLB.Ts+dSST.csv
// See https://observablehq.com/@mbostock/global-temperature-trends
await d3.csv(
await FileAttachment("temperatures1.csv").url(),
(d, i, columns) => {
for (let i = 1; i < 13; ++i) {
data.push({
date: new Date(d.Year, i - 1, 1),
value: +d[columns[i]]
});
}
}
);
all_data[i] = data;
}
return all_data[0];
}
Insert cell
function chart(scale) {
const canvas = DOM.canvas(data.length, 1);
const context = canvas.getContext("2d");
canvas.style.margin = "0 -14px";
canvas.style.width = "calc(100% + 28px)";
canvas.style.height = "40px";
canvas.style.imageRendering = "pixelated";
var i = 0;
for (const d of data) {
context.fillStyle = scale(d.value);
context.fillRect(i++, 0, 1, 1);
}
return canvas;
}
Insert cell
d3 = require("d3-scale@^3.2", "d3-fetch@1", "d3-array@2", "d3-scale-chromatic@1")
Insert cell
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more