Scatter Chart Tool
Explore correlations and distributions by plotting X/Y data points in groups.
Chart Data
Note: What Is a Scatter Chart?
What It Is
A scatter chart, also called a scatter plot or scatter diagram, places one point on a grid for each observation, with two numeric variables mapped to the horizontal and vertical axes. The position of a point encodes both of its values at once, so the cloud of points reveals how the two variables relate. Points that cluster along a rising line show a positive relationship, points along a falling line show a negative relationship, and a shapeless cloud shows little or none.
Because every observation keeps its own point, scatter charts preserve detail that summary statistics erase. Two very different data sets can share the same average and the same correlation coefficient yet look nothing alike when plotted. That is why analysts plot data before fitting models: a scatter chart exposes the shape of a relationship, its outliers, and its gaps long before any equation is applied.
Common Use Cases
- Height versus weight across a sample of people
- Product price versus customer rating for competing items
- Advertising spend versus sales revenue for each campaign
- Study hours versus exam scores for a class of students
- Engine size versus fuel consumption across car models
- Age versus income, or income versus spending, in survey data
When to Use It vs Alternatives
Choose a scatter chart when both axes are numeric variables and the question is how they move together. If the x axis is time, a line chart usually tells the trend story better. If one axis holds categories, switch to bars or box plots. If a third numeric variable must be shown as well, a bubble chart adds size as an extra dimension. When the point cloud is very dense, consider hexbin plots or density contours, which show where points pile up without the mess of hundreds of overlapping dots.
How to Use It Well
- Plot one point per observation and do not connect the dots unless the points follow a real sequence
- Read the overall shape first: linear, curved, clustered, or scattered with no pattern
- Treat outliers as clues: check them for data entry errors before calling them insights
- Add a trend line only when it genuinely describes the shape of the cloud
- Combat overplotting with transparency or slight jitter when points stack on top of each other
- Remember that correlation is not causation: a tight pattern never proves that one variable drives the other
- Keep both axes scaled honestly, because stretching one axis changes the apparent strength of the relationship
Fun Facts
- Francis Galton used scatter-like plots in the 1870s and 1880s to study heredity, height, and the concept of regression
- The scatter diagram became a standard tool of statistical analysis in the late 1800s and early 1900s
- Anscombe's quartet, published by Francis Anscombe in 1973, is four data sets with nearly identical averages and correlations but completely different scatter patterns
- The Datasaurus Dozen is a modern sequel: twelve data sets with the same summary statistics that plot as the outline of a dinosaur and other shapes
- The correlation coefficient r summarizes the strength and direction of a linear relationship, but only the chart reveals its true shape
- Scatter charts are the first step of most data science workflows, usually plotted before any model is trained
- When thousands of points overlap, statisticians invented transparency, binning, and hexagonal grids to keep the chart readable