// SLIDE 01 — HOOK

WORD CLOUD

Visually Engaging, Analytically Poor — Use With Eyes Open

Word Cloud — Figure 78.1 — Visually Engaging, Analytically Poor
NARRATION

Visually Engaging, Analytically Poor , Use With Eyes Open Figure 78.1 , Visually Engaging, Analytically Poor

// SLIDE 02 — WHAT THIS CHART IS

WHAT THIS CHART IS.

A word cloud — sometimes called a tag cloud or weighted list — is a text visualization in which words from a corpus are

What this chart is — The chart is genuinely useful for one purpose: forming a quick visual impression of which terms dominate a corpus before
NARRATION

A word cloud , sometimes called a tag cloud or weighted list , is a text visualization in which words from a corpus are positioned within a bounded shape and sized in proportion to their frequency or importance. Larger words appear more frequently in the source text; smaller words appear less often. The most common implementations use a packing algorithm (Jonathan Feinberg's "Wordle" layout, which D3-cloud reimplements) to fit words into a rectangle or shape without overlap.

// SLIDE 03 — WHAT THE CHART ACTUALLY ENCODE

WHAT THE CHART ACTUALLY ENCODES.

·Position is meaningless. Words are placed by an algorithm that prioritises packing density, not data relationships. Two
·Color is meaningless in most implementations. Color is chosen to make the cloud visually appealing, not to encode a seco
·Word length confounds frequency. A long word at frequency 50 occupies more pixels than a short word at frequency 50, and
·Orientation is decoration. Many word clouds rotate words 90 degrees to fit the packing. The reader's eye reads horizonta
NARRATION

Word size encodes frequency. That much is honest. Almost everything else in the chart is decoration: Position is meaningless. Words are placed by an algorithm that prioritises packing density, not data relationships. Two words next to each other in the cloud are not more related than two words at opposite ends. Readers who infer proximity-as-relatedness are reading information the chart did not encode. Color is meaningless in most implementations. Color is chosen to make the cloud visually appealing, not to encode a second variable.

// SLIDE 04 — WHY THE CHART MISLEADS

WHY THE CHART MISLEADS.

Stephen Few has been direct about word clouds in print: they are "amongst the most useless and absurd visualizations eve

Why the chart misleads — The reader looks at a word cloud and reaches three intuitions: which word is largest (frequency rank #1), which words cl
NARRATION

Stephen Few has been direct about word clouds in print: they are "amongst the most useless and absurd visualizations ever devised." Jacob Harris at The New York Times called them "the mullets of the Internet." The criticism is not aesthetic , it is mechanical. The chart's central encoding (size = frequency) is corrupted by the chart's own layout decisions (word length, orientation, packing position) in ways the reader cannot correct for.

// SLIDE 05 — WHEN TO USE IT ANYWAY

WHEN TO USE IT ANYWAY.

Word clouds are appropriate in two contexts. The first is presentation theatre — a slide showing audience-submitted word

When to use it anyway — In both contexts, the word cloud should be paired with the underlying frequency table. The cloud handles the visceral im
NARRATION

Word clouds are appropriate in two contexts. The first is presentation theatre , a slide showing audience-submitted words after a brainstorming session, where the goal is engagement rather than analysis. The second is preliminary corpus exploration , a glance at a thousand reviews to see whether the dominant terms are about price, quality, or service before committing to a more rigorous frequency analysis. In both contexts, the word cloud should be paired with the underlying frequency table.

// SLIDE 06 — WHAT THE ALTERNATIVE DOES BETT

WHAT THE ALTERNATIVE DOES BETTER.

A horizontal bar chart of the top 20 (or top 50) terms by frequency, sorted descending, gives the reader length-along-a-

What the alternative does better — A treemap of term frequencies gives the same area-encoding word clouds use but with rectangles rather than text glyphs,
NARRATION

A horizontal bar chart of the top 20 (or top 50) terms by frequency, sorted descending, gives the reader length-along-a-shared-baseline , the most accurate quantitative encoding humans can read. The reader can compare any two terms directly. Word length does not confound the encoding because all bar lengths are measured the same way. There is no wasted real estate, no decorative position, no rotational confusion. Cleveland and McGill's perceptual ranking puts bar length above area; word clouds use area; the bar chart wins.

// SLIDE 07 — FRAMEWORK REFERENCE

FRAMEWORK REFERENCE

FRAMEWORK FT Visual Vocabulary: not classified — word clouds sit outside the FT's chart taxonomy because the encoding is

NARRATION

FRAMEWORK FT Visual Vocabulary: not classified , word clouds sit outside the FT's chart taxonomy because the encoding is too unreliable to defend. Tufte principle violated: the chart's data-ink ratio is poor; word length, orientation, and position all consume ink without encoding data. Few's position: the chart is "useless and absurd" for analytical work and acceptable only as decorative orientation.

// SLIDE 08 — PROMPT

PROMPT

word-cloud.htmla full HTML page with inline CSS, inline D3 v7 (loaded from and inline d3-cloud (loaded from The chart should fill the v
word-cloud/data.jsonthe data file the chart loads via d3.json("./word-cloud/data.json"), with a fallback inline literal in the HTML if the f
·A weighted term list. 80–150 entries with realistic frequencies (long-tailed; a few high-frequency terms, many low-frequ
textstring — the word or term to render
weightnumber — frequency or importance, drives font size
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 word cloud in D3 v7 using the d3-cloud layout. Two files:

// SLIDE 09 — AI WAYBACK MACHINE

AI WAYBACK MACHINE.

Marshall McLuhanRun this:"Marshall McLuhan Gutenberg Galaxy"Now make the prompt better.
NARRATION

The ideas in this chapter didn't appear from nowhere. Marshall McLuhan argued in The Gutenberg Galaxy (1962) and Understanding Media (1964) that typography itself is a medium , that the size, the weight, the spacing of letters carry meaning independent of the words they spell. The word cloud is McLuhan's claim made literal. The frequency of a term is encoded in its visual prominence. The medium is the message, rendered as a chart. Marshall McLuhan, circa 1965. AI-generated portrait based on a public domain photograph (Wikimedia Commons).

// SLIDE 10 — THESIS

THE CORE CLAIM.

The ideas in this chapter didn't appear from nowhere. Marshall McLuhan argued in The Gutenberg Galaxy (1962) and Underst

Marshall McLuhan, circa 1965. AI-generated portrait based on a public domain photograph (Wikimedia Commons).

NARRATION

The ideas in this chapter didn't appear from nowhere. Marshall McLuhan argued in The Gutenberg Galaxy (1962) and Understanding Media (1964) that typography itself is a medium , that the size, the weight, the spacing of letters carry meaning independent of the words they spell. The word cloud is McLuhan's claim made literal. The frequency of a term is encoded in its visual prominence. The medium is the message, rendered as a chart. Marshall McLuhan, circa 1965. AI-generated portrait based on a public domain photograph (Wikimedia Commons).

// SLIDE 11 — CLOSE

ASK THE QUESTION. APPLY THE FRAMEWORK.

WHAT THIS CHART IS//WHAT THE CHART ACTUALLY E//WHY THE CHART MISLEADS

Brutalist D3 × Claude · Ch.78 · Word Cloud

NARRATION

That is the framework. Brutalist D3 times Claude, chapter 78: Word Cloud. The patterns are now in place. Apply them.

01 / 11
Brutalist D3 × Claude · Ch.78 · Nik Bear Brown