Data Visualization Math Example 2

Follow the full solution, then compare it with the other examples linked below.

Example 2

medium
A pie chart shows 20 slices representing 20 countries' market shares. Explain why this is a poor choice and suggest a better visualization.

Solution

  1. 1
    Problem with many-slice pie chart: humans struggle to compare angles of similar-sized slices; more than 5-7 slices becomes unreadable
  2. 2
    Specific issues: slices close in size look identical; 3D effects distort area perception; no easy way to read exact values
  3. 3
    Better choice: horizontal bar chart โ€” lengths are easy to compare accurately; can sort by value; labels fit naturally
  4. 4
    Alternative: dot plot or treemap for many categories with hierarchical structure

Answer

Pie charts with 20 slices are unreadable. Use a sorted horizontal bar chart instead.
Pie charts are best for 2โ€“5 categories summing to 100%. For many categories, bar charts are far superior โ€” length is easier to judge than angle, sorting by value enables quick ranking, and exact labels can be added.

About Data Visualization

Data visualization is the use of graphs, charts, and other visual representations to communicate patterns, trends, and relationships in data.

Learn more about Data Visualization โ†’

More Data Visualization Examples