Skip to content

Scatter Plot

A scatter plot places one point per pair of values (x, y), so you can see at a glance whether two variables move together. McKinney uses this exact technique to check relationships in economic data — for example, plotting the change in money supply (m1) against the change in unemployment (unemp) to look for a pattern.

diagram Reading a scatter plot mermaid
Each point is one observation; the overall pattern of points reveals the relationship between two variables.
Scatter
import matplotlib.pyplot as plt
 
x = [1, 2, 3, 4, 5, 6, 7]
y = [50, 55, 65, 70, 75, 78, 85]
 
plt.figure(figsize=(7, 4))
plt.scatter(x, y)
plt.title("Hours vs score")
plt.xlabel("Hours")
plt.ylabel("Score")
plt.grid(True, alpha=0.3)
plt.tight_layout()
plt.show()

Use transparency:

Alpha
import matplotlib.pyplot as plt
 
plt.figure(figsize=(7, 4))
plt.scatter(x, y, alpha=0.6)
plt.title("Scatter with alpha")
plt.tight_layout()
plt.show()
Annotate
import matplotlib.pyplot as plt
 
plt.figure(figsize=(7, 4))
plt.scatter(x, y)
 
plt.annotate("top", xy=(7, 85), xytext=(6, 88), arrowprops={"arrowstyle": "->"})
 
plt.title("Annotated scatter")
plt.tight_layout()
plt.show()

Each dot below is one (x, y) observation — watch the cloud of points build up and notice the upward trend:

sketch A scatter plot shows one point per observation p5.js
Every (x, y) pair becomes one dot; the pattern of dots reveals whether the two variables relate.

Continue to Pie Chart to see how (and when) to show parts of a whole.

pch.coffeeTagline

pch.coffeeCta

pch.feedbackHeading

pch.feedbackSubheading