// SLIDE 01 — HOOK

PROPORTIONAL AREA

North America + East Asia hold 62% of global AI for Good investment

Proportional Area — Figure 56.1 — North America + East Asia hold 62% of global AI for Good investment
NARRATION

North America + East Asia hold 62 percent of global AI for Good investment Figure 56.1 , North America + East Asia hold 62 percent of global AI for Good investment

// SLIDE 02 — WHAT THIS CHART IS

WHAT THIS CHART IS.

A Proportional Area Chart encodes quantitative values as the area of geometric shapes — most commonly circles, but any c

NARRATION

A Proportional Area Chart encodes quantitative values as the area of geometric shapes , most commonly circles, but any closed shape works. The perceptual mechanism is area estimation : the eye reads the space inside the shape and compares it across items. Area estimation is less precise than position on a common axis (the bar chart's mechanism), which makes proportional area charts better suited to presentational contexts , conveying the scale of differences at a glance , than to analytical ones, where readers need to extract specific values.

// SLIDE 03 — WHY IT WAS CHOSEN HERE

WHY IT WAS CHOSEN HERE.

The data spans 43:1 from the largest to the smallest value ($8,420M to $195M). A bar chart would render this honestly bu

NARRATION

The data spans 43:1 from the largest to the smallest value ($8,420M to $195M). A bar chart would render this honestly but the smallest bars would be barely visible without a log scale, which introduces its own perceptual problems. A proportional area chart handles extreme ratios naturally: the eye tolerates wide size variation between circles and still perceives the relative scale. The circular form also avoids implying a ranking or sequence , these are independent regions, not ordered categories.

// SLIDE 04 — THE ENCODING ERROR — AND HOW T

THE ENCODING ERROR — AND HOW TO SPOT IT

the common mistake If you set radius ∝ value instead of area ∝ value , area grows as value². North America ($8,420M) is

The encoding error — and how to spot it — D3's fix: use d3.scaleSqrt() or pass the raw value to hierarchy.sum() and let d3.pack() compute r = sqrt(value) internal
NARRATION

the common mistake If you set radius ∝ value instead of area ∝ value , area grows as value². North America ($8,420M) is 43times larger than Oceania ($195M). With correct area encoding: visually 43times larger area . With radius encoding: visually 1,849times larger area . The error amplifies differences by a factor equal to the value ratio. Hit the radius error toggle on slide 1 and watch the small circles become nearly invisible.

// SLIDE 05 — FRAMEWORK REFERENCE & THE ONE

FRAMEWORK REFERENCE & THE ONE DECISION WORTH KNOWING.

The one decision worth knowing: circle color uses the same sequential scale as the size (darker = larger value). This is

NARRATION

The one decision worth knowing: circle color uses the same sequential scale as the size (darker = larger value). This is double encoding , both area and colour encode the same variable. That's usually redundant and inefficient; here it is deliberate. Double encoding reinforces the size hierarchy for viewers who find area estimation difficult, and it makes the smallest circles (which are almost invisible by area) still perceptible by hue contrast.

// SLIDE 06 — FRAMEWORK REFERENCE

FRAMEWORK REFERENCE

FT Visual Vocabulary + Tufte FT Visual Vocabulary: Magnitude — Size comparison . Abela quadrant: Comparison — comparing

NARRATION

FT Visual Vocabulary + Tufte FT Visual Vocabulary: Magnitude , Size comparison . Abela quadrant: Comparison , comparing the relative magnitude of items without a continuous axis. Tufte: proportional area charts sacrifice data-ink ratio precision for gestalt comprehension; acceptable only when the scale of difference is the message, not the precise values.

// SLIDE 07 — PROMPT

PROMPT

proportional-area.htmla full HTML page with inline CSS and inline D3 v7 (loaded from The chart should fill the viewport, be responsive on resi
proportional-area/data.jsonthe data file the chart loads via d3.json("./proportional-area/data.json"), with a fallback inline literal in the HTML i
Flat dataset for proportional area (bubble) chart. Each item gets a circle whose AREA is proportional to its value. D3 pa common and serious implementation mistake.
titlestring — chart headline
unitstring — display unit for values
NARRATION

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 proportional area in D3 v7. Two files:

// SLIDE 08 — AI WAYBACK MACHINE

AI WAYBACK MACHINE.

Joseph A. HillRun this:"Joseph A. Hill Statistical Atlas United States Census"Now make the prompt better.
NARRATION

The ideas in this chapter didn't appear from nowhere. Joseph A. Hill served as Chief Statistician of the U.S. Census and oversaw the Statistical Atlas of the United States editions of 1900, 1910, and 1920 , produced with the Census Office's graphics team. Those atlases pioneered the use of proportionally-sized squares, circles, and human figures to encode population, immigration, manufacturing output. Every modern bubble-area chart is a descendant of those plates. Joseph A. Hill, circa 1920. AI-generated portrait based on a public domain photograph (Wikimedia Commons).

// SLIDE 09 — THESIS

THE CORE CLAIM.

The ideas in this chapter didn't appear from nowhere. Joseph A. Hill served as Chief Statistician of the U.S. Census and

Joseph A. Hill, circa 1920. AI-generated portrait based on a public domain photograph (Wikimedia Commons).

NARRATION

The ideas in this chapter didn't appear from nowhere. Joseph A. Hill served as Chief Statistician of the U.S. Census and oversaw the Statistical Atlas of the United States editions of 1900, 1910, and 1920 , produced with the Census Office's graphics team. Those atlases pioneered the use of proportionally-sized squares, circles, and human figures to encode population, immigration, manufacturing output. Every modern bubble-area chart is a descendant of those plates. Joseph A. Hill, circa 1920. AI-generated portrait based on a public domain photograph (Wikimedia Commons).

// SLIDE 10 — CLOSE

ASK THE QUESTION. APPLY THE FRAMEWORK.

WHAT THIS CHART IS//WHY IT WAS CHOSEN HERE//THE ENCODING ERROR — AND

Brutalist D3 × Claude · Ch.56 · Proportional Area

NARRATION

That is the framework. Brutalist D3 times Claude, chapter 56: Proportional Area. The patterns are now in place. Apply them.

01 / 10
Brutalist D3 × Claude · Ch.56 · Nik Bear Brown