Finding the Natural Shape of the Roster

September 9, 2026 · Part 6 of 20

Opening Scene

A coach starts the season tracking a dozen stats per player: points, rebounds, assists, steals, minutes played, shot attempts, sprint speed, vertical jump, and more. It’s thorough, but useless for a quick decision — nobody can compare twelve numbers per player at a glance and instantly see who’s similar to whom. After a few weeks, the coach notices most of those twelve numbers move together in predictable ways: high points tends to come with high shot attempts and high minutes, almost as one combined “offensive load” factor. A dozen stats quietly collapses into two or three that actually explain most of what’s going on.

That collapsing — many measured variables reducing down to a few that capture most of the real variation — is the everyday version of dimensionality reduction.

In Plain English

Dimensionality reduction takes data with many measured variables and finds a smaller number of combined variables that still capture most of the meaningful variation. It doesn’t just delete columns; it finds new, combined dimensions — like the coach’s “offensive load” — that summarize several original measurements at once. The point isn’t to lose information, it’s to strip out redundancy so what’s left is easier to see, plot, and reason about.

The Old Way

Before this had a formal name, people simplified overwhelming detail into a few things that mattered constantly:

  • A doctor summarizing dozens of lab values into a handful of overall risk categories for a quick read at a glance.
  • A financial analyst boiling down a company’s numbers into a few key ratios instead of reading every line item.
  • A scout summarizing a player’s whole profile into a short list of “strengths” rather than reciting every measured stat.

Each case involved genuine judgment about which combinations of raw numbers actually captured the meaningful differences — exactly what dimensionality reduction does algorithmically instead of intuitively.

What’s Changing (and Why AI Is the Reason)

  1. Modern datasets often have hundreds or thousands of measured variables, far beyond a coach’s dozen stats — dimensionality reduction has gone from a nice simplification to a practical necessity for working with the data at all.
  2. AI models increasingly use reduced representations as their actual working format, not just for human visualization — the “offensive load” style combined variable becomes an input other models consume directly, a theme this series will connect to feature engineering elsewhere in this content library.
  3. It’s getting easier to check how much information a reduction actually preserved. Tooling can quantify how much of the original variation survives the simplification, so the tradeoff between “simpler” and “still accurate enough” is measured rather than guessed.

The Metaphor, Fully Extended

Coaching StatsDimensionality Reduction Concept
Twelve raw stats tracked per playerThe original, high-dimensional dataset
Points, shot attempts, and minutes moving togetherCorrelated variables that can be combined
The combined “offensive load” factorA reduced dimension capturing several original ones
Plotting players on just two combined factorsVisualizing high-dimensional data in a simplified space
Losing a rare but meaningful stat in the simplificationInformation lost in an overly aggressive reduction
Checking how much of the original variation the two factors explainMeasuring how much information a reduction preserved

For Beginners: What to Actually Do

  • Before reducing dimensions, look at which raw variables tend to move together — it builds real intuition for what a reduction is actually doing, rather than treating it as a black box.
  • Always check how much of the original information a reduction preserves before relying on it for an important decision.
  • Use reduced dimensions to explore and visualize data, but don’t assume every original nuance survived the simplification.

For Practitioners and Leaders: The Deeper Layer

  • Dimensionality reduction trades some detail for tractability — be explicit with stakeholders about what’s being simplified away, especially if a rare but important signal could get compressed out.
  • Reduced representations built once can go stale as the underlying data shifts; revisit them periodically rather than treating them as permanent.
  • When reduced dimensions feed into other models downstream, document what each combined dimension actually represents — an opaque “factor 2” is hard for anyone else to trust or debug later.

Quick Recap

  • Dimensionality reduction finds a smaller number of combined variables that still capture most of the meaningful variation in the data.
  • It mirrors an old instinct — collapsing overwhelming detail into a few things that actually matter — done mathematically instead of intuitively.
  • Modern datasets with hundreds of variables make this less a convenience and more a practical necessity.
  • Always check how much original information survives a reduction before trusting decisions built on top of it.

Where This Fits in the Series

Article 5 covered grouping similar players together; this article covered simplifying how many measurements it takes to describe them in the first place. Article 7 looks at a different kind of unlabeled pattern — habits and associations that show up without anyone writing them down.