What Is a Dot Plot (Individual Values Plot) and How Do You Use It in Quality Analysis?

If you have a small set of measurements and want to see exactly where every data point falls, a dot plot—also called an individual values plot—is one of the simplest and most honest tools in exploratory data analysis (EDA). Before you calculate averages or run hypothesis tests, this chart shows you the raw shape of your data, one dot at a time.

What It Is

A dot plot is a univariate chart that displays each individual observation as a dot along a numerical axis. When values repeat, the dots stack vertically, giving you a quick visual histogram without binning artifacts. Unlike boxplots (which summarize) or histograms (which group), the dot plot preserves every single value, making it ideal for small sample sizes (typically n < 50) where outliers or clusters matter.

In quality work, you often use it to:
  • Spot outliers or unusual readings before further analysis.
  • Compare two or more groups side by side (e.g., batches, shifts, machines).
  • Check whether data are roughly symmetric, skewed, or multimodal.


How It Works: Steps and Interpretation

There is no complex formula—the dot plot is a pure visualization method. The steps are:

  1. Collect your data as a list of individual numeric values.
  2. Draw a horizontal (or vertical) axis scaled to cover the full range of your data.
  3. Place one dot for each observation at its value on the axis. If multiple observations share the same value, stack the dots vertically.
  4. Label the axis with the measurement unit and add a title that identifies the variable and context.


What to look for:
  • Gaps or isolated dots → possible outliers or measurement errors.
  • Two distinct clusters → possible mixture of populations (e.g., two machines).
  • A long tail → skewed distribution, which may violate normality assumptions.
  • Overall spread → compare the range across groups to assess variability.


A Worked Illustrative Example

Example data (illustrative only):
Suppose you measure the tensile strength (MPa) of 10 adhesive samples from a new batch:

24.1, 25.3, 24.8, 26.0, 24.5, 25.1, 24.9, 25.6, 24.2, 25.4

If you plot these on a dot plot with an axis from 24.0 to 26.0, you will see:
  • All dots fall between 24.1 and 26.0.
  • The densest stacking is around 24.8–25.1, suggesting a central tendency near 25 MPa.
  • No isolated dots or gaps appear, so no obvious outlier is present.


Now suppose you add five more samples: 27.8, 27.9, 28.1, 27.7, 28.0. The dot plot would now show a clear second cluster around 28 MPa, separated from the first cluster by a gap. This visual gap immediately alerts you that your "batch" may actually contain two different populations—perhaps a change in raw material or a process shift—before you run any averages.

Common Pitfalls to Avoid

  • Using a dot plot for very large datasets (n > 100–200): Dots overlap and the chart becomes unreadable. Switch to a histogram or a boxplot for larger samples.
  • Ignoring stacked dots: A single dot at a value does not mean "one occurrence" if you forget to check the vertical stack count. Always read the y-axis (count) when present.
  • Over-interpreting small gaps: With n < 10, random gaps are common. Do not declare an outlier unless the gap is large relative to the overall spread or you have a technical reason.
  • Forgetting the context: A dot plot shows distribution, not cause. Use it to generate hypotheses, then confirm with control charts or tests.


---

For a quick, no-install way to create your own individual values plot, try the free tool at: https://www.6sq.com/tools/dotplot/ — paste your data and see the distribution of every point in seconds.
Invited:

0 replies, guests cannot view replies. For more features, please log in or register