Multi-dimensionalBeginner

Star Plot

A small radial glyph where each variable is a spoke from the center — the resulting star shape is a fingerprint of a single data record’s profile.

// 01 — The chart

What it looks like

Example — Employee skill profiles (small multiples)6 variables
LeadTechCommPlanCreatAnalyAliceLeadTechCommPlanCreatAnalyBobLeadTechCommPlanCreatAnalyCarol

Three star plots showing employee skill profiles. Each star’s shape instantly reveals individual strengths and weaknesses.

// 02 — Definition

What is a star plot?

A star plot (also called a star glyph or radial glyph) is a compact visual representation of a single multivariate data record. Each variable gets its own ray (spoke) radiating from a common center point, and the data value determines how far out from the center the point is plotted on that ray. Connecting the endpoints creates a star-like polygon.

While a radar chart overlays multiple data series on a single shared radial grid, star plots typically show one record per glyph and are arranged in a grid of small multiples. This makes them ideal for quickly scanning and comparing many items.

The power of the star plot lies in its shape. Each data record gets a distinctive silhouette — similar records produce similar-looking stars. Your visual system can detect shape similarity far faster than comparing lists of numbers.

Radar vs. Star: A radar chart overlays 2–3 polygons on one grid for direct comparison. A star plot creates one small glyph per record and tiles them in a grid — better when you have many items to compare at a glance.

// 03 — Anatomy

Parts of a star plot

ABC
A — Center point: The origin shared by all rays, representing the minimum or zero value for all variables
B — Ray endpoint: Each point on a spoke shows the value for that variable — farther from center means higher
C — Star polygon: The closed shape formed by connecting all endpoints — its silhouette is the visual fingerprint

// 04 — Usage

When to use it — and when not to

✓Use a star plot when…
  • Comparing the profiles of many items (10+) at a glance using small multiples
  • Each item has 4–8 measured attributes on a common scale
  • The shape of the profile matters more than exact values
  • Grouping items visually by silhouette similarity
  • Building dashboards with compact multivariate summaries
×Avoid a star plot when…
  • You need precise numeric comparisons — angular reading is inherently imprecise
  • You have more than 10 variables per glyph — the star becomes unreadable
  • You want to compare just 2–3 items directly — a radar chart with overlays is clearer
  • Variables are on very different scales that can't be normalized
  • Your data is categorical rather than quantitative

// 05 — Reading guide

How to read a star plot

Use these steps to interpret star plot grids.

1.

Identify the axes and their labels

Read the spoke labels on any single glyph to understand which variables are being measured and in which direction they increase.

2.

Observe the overall shape

A large, round star indicates high and balanced performance. A small star means low values. A spiked star reveals strengths and weaknesses.

3.

Compare shapes across glyphs

Scan the grid for similar shapes — these are your clusters. Stars that look different from the rest are outliers worth investigating.

4.

Identify prominent spikes and dips

Long spikes reaching the outer ring are standout strengths. Short stubs near the center are clear weaknesses for that record.

5.

Cross-reference with labels

Once you spot interesting shapes, read the glyph label (typically below) to identify which data record produced that pattern.

// 06 — Pitfalls

Common mistakes

Too many variables per glyph

Beyond 8–10 spokes, individual rays become too close together and the shape loses its diagnostic power.

Unnormalized scales

If one variable ranges 0–1 and another 0–10,000, the high-range variable dominates the shape. Always normalize to a common scale.

Comparing area instead of shape

Our eyes naturally compare the area enclosed by the polygon, but area is misleading in radial charts. Focus on ray lengths and overall shape.

Inconsistent axis ordering

Changing the order of spokes between glyphs makes comparison impossible. Keep axis order fixed across all stars in a set.

// 07 — In the wild

Real-world examples

Nutritional profiling

Food scientists use star plots to compare the nutrient profiles of foods — each spoke represents a different nutrient (protein, fiber, vitamins), making it easy to identify nutritionally similar products.

Car comparison guides

Consumer review sites display star glyphs for vehicles across attributes like fuel economy, safety rating, reliability, and comfort — readers can quickly scan dozens of cars.

Employee skill assessments

HR departments visualize employee competency profiles as star plots in performance dashboards, identifying skill gaps and team composition at a glance.

// 08 — Quick reference

Key facts

Also known asStar glyph, radial glyph, kiviat diagram
Best for4–8 variables per glyph
Display modeSmall multiples grid
Key insightShape similarity = data similarity
Related toRadar chart (shared grid version)
DifficultyBeginner

// 09 — Variations

Variations of the star plot

Whisker plot (segment star)

Omits the connecting polygon, showing only the rays — simpler but loses the shape gestalt. Useful when you only care about individual variable magnitudes.

Filled star glyph

Fills the polygon with color or gradient to emphasize overall area. Can use hue to encode a categorical grouping variable.

Stacked star plot

Layers multiple profiles on the same glyph with different fills — bridging the gap between star plots and radar charts for small-scale comparisons.

// 10 — FAQs

Frequently asked questions

What is a star plot?+

A star plot (also called a star glyph or radial glyph) is a compact visual representation of a single multivariate data record. Each variable gets its own ray (spoke) radiating from a common center point, and the data value determines how far out from the center the point is plotted on that ray. Connecting the endpoints creates a star-like polygon.

When should you use a star plot?+

Use a star plot when comparing the profiles of many items (10+) at a glance using small multiples. It also works well when each item has 4–8 measured attributes on a common scale, and when the shape of the profile matters more than exact values.

When should you avoid a star plot?+

Avoid a star plot when you need precise numeric comparisons — angular reading is inherently imprecise. It is also a poor fit when you have more than 10 variables per glyph — the star becomes unreadable, or when you want to compare just 2–3 items directly — a radar chart with overlays is clearer.

What is another name for a star plot?+

Star Plot is also known as Star glyph, radial glyph, kiviat diagram. The name varies between fields, but the visualisation technique is the same.

What size of dataset works best for a star plot?+

Star Plot works best for 4–8 variables per glyph. Outside that range the chart either looks empty or becomes too cluttered to read clearly.

Is a star plot suitable for dashboards?+

Yes — a star plot can work well in dashboards as long as the panel is large enough for readers to perceive the encoded values, has a clear title, and includes the legend or axis labels needed to interpret it.