Omni Calculator logo

This Pearson correlation calculator helps you determine Pearson's r for any given two variable dataset. Below, we explain what Pearson correlation is, give you the mathematical formula, and teach how to calculate the Pearson correlation by hand. You can also discover the link between Pearson's r and linear regression, as well as finally understanding what that common saying, "correlation does not equal causation", means.

Interested in other correlation coefficients? Visit Omni's Spearman's rank correlation calculator!

What is the Pearson correlation coefficient?

The Pearson correlation measures the strength and direction of the linear relation between two random variables, or bivariate data. Linearity means that one variable changes by the same amount whenever the other variable changes by 1 unit, no matter whether it changes e.g., from 11 to 22, or from 1111 to 1212.

A simple real-life example is the relationship between parent's height and their offspring's height - the taller people are, the taller their children tend to be.

The Pearson correlation coefficient is most often denoted by r (and so this coefficient is also referred to as Pearson's r).

Interpretation of the Pearson correlation

  • The sign of the Pearson correlation gives the direction of the relationship:

    • If r is positive, it means that as one variable increases, the other tends to increase as well; and
    • If r is negative, then one variable tends to decrease as the other increases.
  • The absolute value gives the strength of the relationship:

    • Pearson's r ranges from 1-1 to +1+1;
    • The closer it is to ±1\pm 1, the stronger the relationship between the variables;
    • If r equals 1-1 or +1+1, then the linear fit is perfect: all data points lie on one line; and
    • If r equal 00, it means that no linear relationship is present in the data.
Correlation of several datasets

Remember that Pearson correlation detects only a linear relationship! For coefficients that can detect other types of relationship, see our correlation calculator.

This means that a low (or even null) correlation doesn't mean that there is no relationship at all! Take a look at the eight data sets below: they all have a Pearson correlation coefficient equal to zero.

Examples of data with null Pearson correlation

How to use this Pearson correlation calculator

Just input your data into the rows. When at least three points (both an x and y coordinate) are in place, our Pearson correlation calculator will give you your result, along with an interpretation.

The verbal description of the strength of correlation returned in this calculator employs Evan's scale (1996) for the absolute value of r:

  • 0.8r1.00.8 \le |r| \le 1.0 very strong

  • 0.6r<0.80.6 \le |r| \lt 0.8 strong

  • 0.4r<0.60.4 \le |r| \lt 0.6 moderate

  • 0.2r<0.40.2 \le |r| \lt 0.4 weak

  • 0.0r<0.20.0 \le |r| \lt 0.2 very weak

You may encounter many other guidelines for the interpretation of the Pearson correlation coefficient. Bear in mind that all such descriptions and interpretations are arbitrary and depend on context.

Pearson correlation formula and properties

It is high time we gave the mathematical formula for the Pearson correlation. Formally, Pearson's r is defined as the covariance of two variables divided by the product of their respective standard deviations. This translates into the following formula:

rxy ⁣= ⁣i=1n(xixˉ)(yiyˉ) ⁣ ⁣i=1n ⁣(xi ⁣ ⁣xˉ)2 ⁣i=1n ⁣(yi ⁣ ⁣yˉ)2\small r_{xy} \! = \! \frac{\sum_{i=1}^n (x_i - \bar x) (y_i - \bar y)}{\!\! \sqrt{\sum_{i=1}^n \! (x_i \! - \! \bar x)^2} \! \sqrt{\sum_{i=1}^n \! (y_i \! - \! \bar y)^2}}

which can be further rewritten as:

rxy=xiyinxˉyˉxi2nxˉ2yi2nyˉ2\small r_{xy} = \frac{\sum x_i y_i - n \bar x \bar y}{\sqrt{\sum x_i ^2 - n \bar x^2} \sqrt{\sum y_i ^2 - n \bar y^2}}
  1. It can be proven (via the Cauchy–Schwarz inequality) that the absolute value of the correlation coefficient never exceeds 11.

  2. Note that the correlation is symmetric, i.e., the correlation between XX and YY is the same as between YY and XX.

  3. Correlation vs. independence. If the variables are independent, their correlation is 00, but, in general, the converse is not true! There is, however, a special case: when XX and YY are jointly normal (i.e., the random vector (X,Y)(X, Y) follows a bivariate normal distribution) and uncorrelated, then independence follows.

Since we have mentioned covariance, you can visit the covariance calculator for more insights regarding this statistical quantity.

How to calculate Pearson correlation by hand

In case you wanted to better understand how the Pearson correlation formula works, we have prepared a way for you to compute Pearson's r by hand. Suppose we have the data set:

(1,1),(3,2),(3,3),(5,4)(1, 1), (3, 2), (3, 3), (5, 4),

so the x-values are 1,3,3,51, 3, 3, 5, and the respective y-values are 1,2,3,41, 2, 3, 4.

  1. Count how many points there are: 44
  2. Calculate the mean (arithmetic average) of the xx and yy values with our average calculator or manually:
xˉ=(1+3+3+5)/4=12/4=3\begin{split} \bar x =& (1 + 3 + 3 + 5)/4 = \\[0.5em] &12 / 4 = 3 \end{split}
yˉ=(1+2+3+4)/4=10/4=2.5\begin{split} \bar y =& (1 + 2 + 3 + 4)/4 = \\[0.5em] &10 / 4 = 2.5 \end{split}
  1. Calculate the sums of the squares of xx and yy, and their dot-products:
xi2=12+32+32+52=44\sum x_i^2 = 1^2 + 3^2 + 3^2 + 5^2 = 44
yi2=12+22+32+42=30\sum y_i^2 = 1^2 + 2^2 + 3^2 + 4^2 = 30
xiyi=1×1+3×2+3×3+5×4=36\begin{split} \sum x_i y_i &= 1 \times 1 + 3 \times 2 \\[0.5em] &+ 3 \times 3 + 5 \times 4 = 36 \end{split}
  1. We have all the values needed to apply the formula:
rxy=xiyinxˉyˉxi2nxˉ2yi2nyˉ2\small r_{xy} = \frac{\sum x_i y_i - n \bar x \bar y}{\sqrt{\sum x_i ^2 - n \bar x^2} \sqrt{\sum y_i ^2 - n \bar y^2}}
numerator=xiyinxˉyˉ=36 ⁣ ⁣4 ⁣× ⁣3 ⁣×2.5 ⁣= ⁣6\begin{split} \mathrm{numerator} = & \sum x_i y_i - n \bar x \bar y = \\[0.5em] & 36 \! - \! 4 \! \times \! 3 \! \times 2.5 \! = \! 6 \\[0.5em] \end{split}
denominator=8×5=406.32\begin{split} \mathrm{denominator} =& \sqrt 8 \times \sqrt 5 = \\[0.5em] &\sqrt 40 \approx 6.32 \end{split}

because

xi2nxˉ2=444×32=8\sum x_i ^2 - n \bar x^2 \\[0.5em] \quad = 44 - 4 \times 3^2 = 8

and

yi2nyˉ2=304×2.52=5\sum y_i ^2 - n \bar y^2 \\[0.5em] \quad = 30 - 4 \times 2.5^2 = 5

  1. Finally, we can compute the value of the Pearson correlation coefficient:
r=66.320.95r = \frac{6}{6.32} \approx 0.95

Pearson's r and R-squared in simple linear regression

In simple linear regression (YaX+bY \sim aX + b), the Pearson correlation is directly linked to the coefficient of determination (R-squared), which expresses the fraction of the variance in YY that is explained by XX:

  1. The R-squared can be calculated by simply squaring the Pearson correlation coefficient.

  2. The slope aa of the fitted regression line can be found, as the Pearson correlation between YY and XX multiplied by the ratio of their respective standard deviations gives the gradient: a=r(sy/sx)a = r (s_y / s_x).

If you want to perform linear regression on your data, check the least squares regression line calculator to find the best fit of aa and bb parameters.

"Correlation does not equal causation"

Always remember that even a very strong correlation between two variables does not mean there's a causal link between the variables. It could be random chance, or there may be some other intervening variable that affects both your variables.

For example, the demand for sunglasses is strongly positively correlated with the rate of people drowning. This does not mean that sunglasses force anybody underwater! Instead, we rather suspect that hot weather causes both of these variables to increase.

Click here to read about other mind-blowing examples of crazy correlations.

Anna Szczepanek, PhD
Data (You may enter up to 30 points)
x₁
y₁
x₂
y₂
Show calculation details?
No
Enter at least 3 points (x and y coordinates).
Check out 44 similar descriptive statistics calculators 📊
5 number summary5★ rating averageCoefficient of variation… 41 more
People also viewed…

Black hole collision

The Black Hole Collision Calculator lets you see the effects of a black hole collision, as well as revealing some of the mysteries of black holes, come on in and enjoy!

Plant spacing

Optimize your garden layout with our garden spacing calculator. Perfect for precise plant spacing. Plan your dream garden effortlessly now!

Roulette payout

Find your bet's odds and potential winnings with the roulette payout calculator!

Standard deviation

The standard deviation calculator tells you the mean and standard deviation of a dataset.
Copyright by Omni Calculator sp. z o.o.
Privacy, Cookies & Terms of Service