Calculate Pearson's r Instantly
Enter paired values for variable X and variable Y. Use commas, spaces, or new lines between numbers.
What is Pearson's product moment correlation?
Pearson's product moment correlation coefficient (usually written as r) measures the strength and direction of a linear relationship between two quantitative variables. It answers questions like:
- Do higher study hours tend to come with higher exam scores?
- As ad spend increases, do sales increase too?
- Do two measurements move in opposite directions?
The value of r ranges from -1 to +1:
- +1 = perfect positive linear relationship
- 0 = no linear relationship
- -1 = perfect negative linear relationship
How to use this calculator
Step 1: Enter paired data
Each X value must correspond to one Y value from the same case/observation. For example, if X is "hours slept" and Y is "reaction time," each pair should come from the same participant.
Step 2: Click Calculate
The calculator computes Pearson's r, gives a plain-language interpretation, and reports r² (coefficient of determination), which estimates the proportion of variance explained by the linear relationship.
Step 3: Interpret responsibly
A high correlation does not automatically imply causation. Correlation describes association, not proof of cause-and-effect.
The formula behind Pearson's r
The classic computational formula is:
r = [nΣxy - (Σx)(Σy)] / √{[nΣx² - (Σx)²][nΣy² - (Σy)²]}
Where:
- n = number of paired observations
- Σxy = sum of products of paired scores
- Σx, Σy = sums of X and Y
- Σx², Σy² = sums of squared X and Y values
This page uses that approach in JavaScript to produce your results instantly.
How to interpret correlation strength
Guidelines vary by field, but a common practical interpretation looks like this:
- 0.00 to 0.09: negligible
- 0.10 to 0.29: weak
- 0.30 to 0.49: moderate
- 0.50 to 0.69: strong
- 0.70 to 0.89: very strong
- 0.90 to 0.99: near-perfect
- 1.00: perfect
Always interpret these ranges in context. In psychology and education, an r of 0.30 may be meaningful. In some engineering contexts, it may be considered modest.
Assumptions and best practices
1) Linear relationship
Pearson's r captures linear patterns. If the relationship is curved, r can be near zero even when variables are strongly related.
2) Quantitative variables
Use continuous or interval/ratio-like data. For ordinal ranks, Spearman's rho may be better.
3) Outliers matter
A single extreme point can inflate or deflate correlation dramatically. Always check a scatterplot when possible.
4) Pairing is essential
Do not sort X and Y independently before calculating. Keep pairs intact exactly as observed.
Common mistakes to avoid
- Using unequal list lengths (the calculator blocks this).
- Trying to correlate categorical text labels.
- Ignoring missing values and accidentally shifting pair alignment.
- Concluding "X causes Y" based only on correlation.
Example use case
Suppose you collect data on weekly practice hours and performance scores for 12 trainees. If the calculator returns r = 0.76, that suggests a very strong positive linear relationship. If r² = 0.58, about 58% of score variation is associated with practice time variation in a linear sense.
That still does not prove causation (other factors like sleep, coaching quality, and prior ability can contribute), but it gives a clear signal worth exploring further.
Final takeaway
Pearson's product moment correlation is one of the most useful first-pass statistics for examining relationships between two numeric variables. Use it to screen patterns, support data storytelling, and guide deeper analysis such as regression, hypothesis testing, or experimental design.