Public
Edited
Jul 19, 2023
Food clockDisambiguating selection in a 2D treePerceptually more-uniform diverging color scatterplotDays since a U.S. President was last shotSingle-serving sitesDo you feel old?Dynamic scales deprive dashboards of institutional memoryNesting chevron pillsColumnar group byDe Moivre by generatorsShowing ESPN Receiver Tracking Metrics using weighted radar charts
Combine consecutive strings
Dollar spectrumThe Feedback BathtubIs Visnu’s hex random?Dual axes are a great way to show correlation 🔥Promise.raceHealthcare plan payoff curvePlot image beeswarmGenerations on Google TrendsFor i of myriadChatterjee correlationChecking invariance of round trip-0 and 0Norms and central tendencyDisordering ULsData-driven table sort iconPlot: weather with sunrise and sunsetRecreating Östling’s regression visualizationsMixing knowledge and random guessesHow many five digit numbers are prime?Warping gridspaceSampling moodLow IDsTesting for OmicronAll Too WellDistance from square root to nearest factorSuper BogosortParrots of Telegraph HillNudibranch sightingsDecimal watershedsFirst Ladies of the United StatesEval-in-PlaceClassic Research in Data VisualizationResponsive PrettierObsv, obvsGenerating All Natural NumbersDaily Café PickerConcentration of MeasureDivide SeriesMultiply SeriesMultiplication and Division by Similar TrianglesRecursive typed table (sketch!)Lorenz CurveThe “Select cells” buttonRecursive viewof testBubble Map RaceSensitivity and Specificity (sketch)Reactive transition sketchHow to crash ObservableSpilhaus World TourSimpson’s paradox: CalendarsThe Cauchy DistributionEmoji frequenciesThe Man Comes AroundNot what I meant to doSVG numeral sketchesRSAMandelbrot’s binomial time bending??Re: “Can Moons Have Moons?”Continuous cursorParenthesis matching with vertical offsetsA filter icon that shows filtering instead of funnelingFlag of the Popular VoteFlag of the Popular VoteFlag of the Popular VoteTrailing zeroes in factorialsBitcoin fractal bubbles (animated)Bitcoin fractal bubbles
Insert cell
Insert cell
elements = [1, 5, true, "hello", "world", "toph", "tucker", ""]
Insert cell
Insert cell
arr = reshuffle, d3.range(10).map(() => d3.shuffle(elements)[0])
Insert cell
Insert cell
Insert cell
combine(arr)
Insert cell
combine = (arr) => {
let strBuffer = null;
const combined = [];
for (let i = 0; i < arr.length; i++) {
const d = arr[i];
if (typeof d === "string") {
if (!i || strBuffer === null) {
strBuffer = d;
} else {
strBuffer += d;
}
} else {
if (strBuffer !== null) {
combined.push(strBuffer);
strBuffer = null;
}
combined.push(d);
}
}
if (strBuffer !== null) combined.push(strBuffer);
return combined;
}
Insert cell
Insert cell
elements1 = [
{
type: "section",
text: { type: "mrkdwn", text: "Hello world" }
},
{
type: "context",
elements: [{ type: "mrkdwn", text: "Footer" }]
},
new Blob()
]
Insert cell
Insert cell
arr1 = reshuffle1, d3.range(10).map(() => d3.shuffle(elements1)[0])
Insert cell
Insert cell
Insert cell
combine1(arr1)
Insert cell
combine1 = (arr) => {
let blockBuffer = [];
const combined = [];
for (let i = 0; i < arr.length; i++) {
const d = arr[i];
if (!(d instanceof Blob)) {
blockBuffer.push(d);
} else {
if (blockBuffer.length) {
combined.push(blockBuffer);
blockBuffer = [];
}
combined.push(d);
}
}
if (blockBuffer.length) combined.push(blockBuffer);
return combined;
}
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