Crisis domains span the threshold — best models clear it, worst miss by 30+ points
Crisis domains span the threshold , best models clear it, worst miss by 30+ points Figure 64.1 , Crisis domains span the threshold
A Span Chart (also Range Bar, Floating Bar, High-Low Graph) draws a bar that floats between a minimum and maximum value
A Span Chart (also Range Bar, Floating Bar, High-Low Graph) draws a bar that floats between a minimum and maximum value for each category. Unlike a bar chart, there is no zero baseline , the left edge of each bar is the minimum, and the right edge is the maximum. Both values, their difference (the span), and the bar's position on the axis carry information simultaneously. The viewer can read: where does this range sit? (bar position) and how wide is the range? (bar length).
The data describes performance variation across AI models — a story that requires showing both extremes and their relati
The data describes performance variation across AI models , a story that requires showing both extremes and their relationship to a deployment threshold. A standard bar chart can only show one value per category (the max, or the mean) and would conceal the worst-case performance entirely. A dot plot with two dots per category would work but loses the immediate visual reading of span width.
Span charts show only the two extreme values. They give no information about the distribution between min and max : whet
Span charts show only the two extreme values. They give no information about the distribution between min and max : whether most models cluster near the top, near the bottom, or scatter evenly. A wide span could mean all models are mediocre except one outlier at each end, or it could mean models genuinely vary across the full range. Without that context, the span chart can mislead , a single outlier at the minimum drags the bar left without representing typical performance.
The one decision worth knowing: bars animate from the midpoint outward , not from the left edge rightward. This is not c
The one decision worth knowing: bars animate from the midpoint outward , not from the left edge rightward. This is not cosmetic. Animating from zero or the left would imply a start-to-end directionality the data does not have. Expanding symmetrically from the centre makes the visual argument: uncertainty (range) grows around a central estimate , which is the correct mental model for a min-max range.
FT Visual Vocabulary + Abela FT Visual Vocabulary: Distribution — Range . Abela quadrant: Comparison — comparing ranges
FT Visual Vocabulary + Abela FT Visual Vocabulary: Distribution , Range . Abela quadrant: Comparison , comparing ranges across categories. Tufte: the floating bar is honest about its baseline absence , it would be wrong to extend bars to zero, which would imply that zero is the lower bound when the data's minimum is 33.
Paste this into Claude Code to generate a working version of this chart, plus its data file. The result will not be a perfect replica , the goal is that the reader can run the prompt, get a chart of this type, and read its source. Generate a complete, self-contained span chart in D3 v7. Two files:
The ideas in this chapter didn't appear from nowhere. Walter A. Shewhart invented the control chart at Bell Labs in 1924 , a span-style chart with mean lines and tolerance bands that turned statistical quality control into a discipline. The chart family includes the span chart you're learning here. Walter A. Shewhart, circa 1935. AI-generated portrait based on a public domain photograph (Wikimedia Commons).
Walter A. Shewhart, circa 1935. AI-generated portrait based on a public domain photograph (Wikimedia Commons).
The ideas in this chapter didn't appear from nowhere. Walter A. Shewhart invented the control chart at Bell Labs in 1924 , a span-style chart with mean lines and tolerance bands that turned statistical quality control into a discipline. The chart family includes the span chart you're learning here. Walter A. Shewhart, circa 1935. AI-generated portrait based on a public domain photograph (Wikimedia Commons).
Brutalist D3 × Claude · Ch.64 · Span Chart
That is the framework. Brutalist D3 times Claude, chapter 64: Span Chart. The patterns are now in place. Apply them.