Template:Short description Template:Distinguish Template:Use dmy dates

File:Correlation examples2.svg
Several sets of (xy) points, with the correlation coefficient of x and y for each set. The correlation reflects the strength and direction of a linear relationship (top row), but not the slope of that relationship (middle), nor many aspects of nonlinear relationships (bottom). N.B.: the figure in the center has a slope of 0 but in that case the correlation coefficient is undefined because the variance of Y is zero.

In statistics, the Pearson correlation coefficient (PCC)Template:Efn is a correlation coefficient that measures linear correlation between two sets of data. It is the ratio between the covariance of two variables and the product of their standard deviations; thus, it is essentially a normalized measurement of the covariance, such that the result always has a value between −1 and 1. As with covariance itself, the measure can only reflect a linear correlation of variables, and ignores many other types of relationships or correlations. As a simple example, one would expect the age and height of a sample of children from a school to have a Pearson correlation coefficient significantly greater than 0, but less than 1 (as 1 would represent an unrealistically perfect correlation).

Naming and historyEdit

It was developed by Karl Pearson from a related idea introduced by Francis Galton in the 1880s, and for which the mathematical formula was derived and published by Auguste Bravais in 1844.Template:Efn<ref>Template:Cite journal</ref><ref>Template:Cite journal</ref><ref>Template:Cite journal</ref><ref>Template:Cite journal</ref> The naming of the coefficient is thus an example of Stigler's Law.

Motivation/Intuition and DerivationEdit

The correlation coefficient can be derived by considering the cosine of the angle between two points representing the two sets of x and y co-ordinate data.<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref> This expression is therefore a number between -1 and 1 and is equal to unity when all the points lie on a straight line.

DefinitionEdit

Pearson's correlation coefficient is the covariance of the two variables divided by the product of their standard deviations. The form of the definition involves a "product moment", that is, the mean (the first moment about the origin) of the product of the mean-adjusted random variables; hence the modifier product-moment in the name.Template:Verify source

For a populationEdit

Pearson's correlation coefficient, when applied to a population, is commonly represented by the Greek letter ρ (rho) and may be referred to as the population correlation coefficient or the population Pearson correlation coefficient. Given a pair of random variables <math>(X,Y)</math> (for example, Height and Weight), the formula for ρ<ref name="RealCorBasic">Real Statistics Using Excel, "Basic Concepts of Correlation", retrieved 22 February 2015.</ref> is<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref>

<math display=block> \rho_{X,Y}= \frac{\operatorname{cov}(X,Y)}{\sigma_X \sigma_Y}</math>

where

  • <math> \operatorname{cov} </math> is the covariance
  • <math> \sigma_X </math> is the standard deviation of <math> X </math>
  • <math> \sigma_Y </math> is the standard deviation of <math> Y </math>.

The formula for <math>\operatorname{cov}(X,Y)</math> can be expressed in terms of mean and expectation. Since<ref name="RealCorBasic"/>

<math>\operatorname{cov}(X,Y) = \operatorname\mathbb{E}[(X-\mu_X)(Y-\mu_Y)],</math>

the formula for <math>\rho</math> can also be written as

<math display=block> \rho_{X,Y} = \frac{\operatorname\mathbb{E}[(X - \mu_X)(Y - \mu_Y)]}{\sigma_X\sigma_Y}</math>

where

  • <math> \sigma_Y </math> and <math> \sigma_X </math> are defined as above
  • <math> \mu_X </math> is the mean of <math> X </math>
  • <math> \mu_Y </math> is the mean of <math> Y </math>
  • <math> \operatorname\mathbb{E} </math> is the expectation.

The formula for <math>\rho</math> can be expressed in terms of uncentered moments. Since

<math>\begin{align}
      \mu_X ={} &\operatorname\mathbb{E}[X] \\
      \mu_Y ={} &\operatorname\mathbb{E}[Y] \\
 \sigma_X^2 ={} &\operatorname\mathbb{E}\left[\left(X - \operatorname\mathbb{E}[X]\right)^2\right] = \operatorname\mathbb{E}\left[X^2\right] - \left(\operatorname\mathbb{E}[X]\right)^2 \\
  \sigma_Y^2 ={} &\operatorname\mathbb{E}\left[\left(Y - \operatorname\mathbb{E}[Y]\right)^2\right] = \operatorname\mathbb{E}\left[Y^2\right] - \left(\operatorname\mathbb{E}[Y]\right)^2 \\

\operatorname{cov}(X,Y) ={} &\operatorname\mathbb{E}[\left(X - \mu_X\right)\left(Y - \mu_Y\right)] = \operatorname\mathbb{E}[\left(X - \operatorname\mathbb{E}[X]\right)\left(Y - \operatorname\mathbb{E}[Y]\right)] = \operatorname\mathbb{E}[XY] - \operatorname\mathbb{E}[X]\operatorname\mathbb{E}[Y] , \end{align}</math>

the formula for <math>\rho</math> can also be written as <math display="block">\rho_{X,Y} =

 \frac{\operatorname\mathbb{E}[XY] - \operatorname\mathbb{E}[X]\operatorname\mathbb{E}[Y]}{\sqrt{\operatorname\mathbb{E}\left[X^2\right] - \left(\operatorname\mathbb{E}[X] \right)^2} ~ \sqrt{\operatorname\mathbb{E}\left[Y^2\right] - \left(\operatorname\mathbb{E}[Y] \right)^2}}.</math>

For a sampleEdit

Pearson's correlation coefficient, when applied to a sample, is commonly represented by <math>r_{xy}</math> and may be referred to as the sample correlation coefficient or the sample Pearson correlation coefficient. We can obtain a formula for <math>r_{xy}</math> by substituting estimates of the covariances and variances based on a sample into the formula above. Given paired data <math>\left\{ (x_1,y_1),\ldots,(x_n,y_n) \right\}</math> consisting of <math>n</math> pairs, <math>r_{xy}</math> is defined as

<math display=block>r_{xy} =\frac{\sum ^n _{i=1}(x_i - \bar{x})(y_i - \bar{y})}{\sqrt{\sum ^n _{i=1}(x_i - \bar{x})^2} \sqrt{\sum ^n _{i=1}(y_i - \bar{y})^2}}</math>

where

  • <math>n</math> is sample size
  • <math>x_i, y_i</math> are the individual sample points indexed with i
  • <math display="inline">\bar{x} = \frac{1}{n} \sum_{i=1}^n x_i</math> (the sample mean); and analogously for <math>\bar{y}</math>.

Rearranging gives us this<ref name="RealCorBasic"/> formula for <math>r_{xy}</math>:

<math>r_{xy} = \frac{\sum_i x_i y_i-n\bar{x}\bar{y}}

{\sqrt{\sum_i x_i^2-n\bar{x}^2}~\sqrt{\sum_i y_i^2-n\bar{y}^2}},</math>

where <math>n, x_i, y_i, \bar{x}, \bar{y}</math> are defined as above.

Rearranging again gives us this formula for <math>r_{xy}</math>:

<math>r_{xy} = \frac{n\sum x_i y_i - \sum x_i\sum y_i}

{\sqrt{n\sum x_i^2-\left(\sum x_i\right)^2}~\sqrt{n\sum y_i^2-\left(\sum y_i\right)^2}},</math>

where <math>n, x_i, y_i</math> are defined as above.

This formula suggests a convenient single-pass algorithm for calculating sample correlations, though depending on the numbers involved, it can sometimes be numerically unstable.

An equivalent expression gives the formula for <math>r_{xy}</math> as the mean of the products of the standard scores as follows:

<math>r_{xy} = \frac{1}{n-1} \sum ^n _{i=1} \left( \frac{x_i - \bar{x}}{s_x} \right) \left( \frac{y_i - \bar{y}}{s_y} \right)</math>

where

  • <math>n, x_i, y_i, \bar{x}, \bar{y}</math> are defined as above, and <math>s_x, s_y</math> are defined below
  • <math display="inline">\left( \frac{x_i - \bar{x}}{s_x} \right)</math> is the standard score (and analogously for the standard score of <math>y</math>).

Alternative formulae for <math>r_{xy}</math> are also available. For example, one can use the following formula for <math>r_{xy}</math>:

<math>r_{xy} =\frac{\sum x_iy_i-n \bar{x} \bar{y}}{(n-1) s_x s_y}</math>

where

  • <math>n, x_i, y_i, \bar{x}, \bar{y}</math> are defined as above and:
  • <math display="inline">s_x = \sqrt{\frac{1}{n-1}\sum_{i=1}^n(x_i-\bar{x})^2}</math> (the sample standard deviation); and analogously for <math>s_y</math>.

For jointly gaussian distributionsEdit

If <math>(X, Y)</math> is jointly gaussian, with mean zero and variance <math>\Sigma</math>, then <math>\Sigma = \begin{bmatrix} \sigma_X^2 & \rho_{X,Y}\sigma_X\sigma_Y \\ \rho_{X,Y}\sigma_X\sigma_Y & \sigma_Y^2 \\ \end{bmatrix}</math>.

Practical issuesEdit

Under heavy noise conditions, extracting the correlation coefficient between two sets of stochastic variables is nontrivial, in particular where Canonical Correlation Analysis reports degraded correlation values due to the heavy noise contributions. A generalization of the approach is given elsewhere.<ref>Template:Cite book</ref>

In case of missing data, Garren derived the maximum likelihood estimator.<ref>Template:Cite journal</ref>

Some distributions (e.g., stable distributions other than a normal distribution) do not have a defined variance.

Mathematical propertiesEdit

The values of both the sample and population Pearson correlation coefficients are on or between −1 and 1. Correlations equal to +1 or −1 correspond to data points lying exactly on a line (in the case of the sample correlation), or to a bivariate distribution entirely supported on a line (in the case of the population correlation). The Pearson correlation coefficient is symmetric: corr(X,Y) = corr(Y,X).

A key mathematical property of the Pearson correlation coefficient is that it is invariant under separate changes in location and scale in the two variables. That is, we may transform X to Template:Math and transform Y to Template:Math, where a, b, c, and d are constants with Template:Math, without changing the correlation coefficient. (This holds for both the population and sample Pearson correlation coefficients.) More general linear transformations do change the correlation: see Template:Section link for an application of this. In particular, it might be useful to notice that corr(-X,Y) = -corr(X,Y)

InterpretationEdit

The correlation coefficient ranges from −1 to 1. An absolute value of exactly 1 implies that a linear equation describes the relationship between X and Y perfectly, with all data points lying on a line. The correlation sign is determined by the regression slope: a value of +1 implies that all data points lie on a line for which Y increases as X increases, whereas a value of -1 implies a line where Y increases while X decreases.<ref name="STAT 462">{{#invoke:citation/CS1|citation |CitationClass=web }}</ref> A value of 0 implies that there is no linear dependency between the variables.<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref>

More generally, Template:Math is positive if and only if Xi and Yi lie on the same side of their respective means. Thus the correlation coefficient is positive if Xi and Yi tend to be simultaneously greater than, or simultaneously less than, their respective means. The correlation coefficient is negative (anti-correlation) if Xi and Yi tend to lie on opposite sides of their respective means. Moreover, the stronger either tendency is, the larger is the absolute value of the correlation coefficient.

Rodgers and Nicewander<ref>Template:Cite journal</ref> cataloged thirteen ways of interpreting correlation or simple functions of it:

  • Function of raw scores and means
  • Standardized covariance
  • Standardized slope of the regression line
  • Geometric mean of the two regression slopes
  • Square root of the ratio of two variances
  • Mean cross-product of standardized variables
  • Function of the angle between two standardized regression lines
  • Function of the angle between two variable vectors
  • Rescaled variance of the difference between standardized scores
  • Estimated from the balloon rule
  • Related to the bivariate ellipses of isoconcentration
  • Function of test statistics from designed experiments
  • Ratio of two means

Geometric interpretationEdit

File:Regression lines.png
Regression lines for Template:Math [[[:Template:Ifsubst]] style="color:red">red] and Template:Math [[[:Template:Ifsubst]] style="color:blue">blue

]

For uncentered data, there is a relation between the correlation coefficient and the angle φ between the two regression lines, Template:Nowrap and Template:Nowrap, obtained by regressing y on x and x on y respectively. (Here, φ is measured counterclockwise within the first quadrant formed around the lines' intersection point if Template:Math, or counterclockwise from the fourth to the second quadrant if Template:Nowrap.) One can show<ref>Template:Cite journal</ref> that if the standard deviations are equal, then Template:Nowrap, where sec and tan are trigonometric functions.

For centered data (i.e., data which have been shifted by the sample means of their respective variables so as to have an average of zero for each variable), the correlation coefficient can also be viewed as the cosine of the angle θ between the two observed vectors in N-dimensional space (for N observations of each variable).<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref>

Both the uncentered (non-Pearson-compliant) and centered correlation coefficients can be determined for a dataset. As an example, suppose five countries are found to have gross national products of 1, 2, 3, 5, and 8 billion dollars, respectively. Suppose these same five countries (in the same order) are found to have 11%, 12%, 13%, 15%, and 18% poverty. Then let x and y be ordered 5-element vectors containing the above data: Template:Nowrap and Template:Nowrap.

By the usual procedure for finding the angle θ between two vectors (see dot product), the uncentered correlation coefficient is

<math> \cos \theta = \frac { \mathbf{x} \cdot \mathbf{y} } { \left\| \mathbf{x} \right\| \left\| \mathbf{y} \right\|} = \frac {2.93} { \sqrt{103} \sqrt{0.0983} } = 0.920814711. </math>

This uncentered correlation coefficient is identical with the cosine similarity. The above data were deliberately chosen to be perfectly correlated: Template:Math. The Pearson correlation coefficient must therefore be exactly one. Centering the data (shifting x by Template:Math and y by Template:Math) yields Template:Math and Template:Math, from which

<math> \cos \theta = \frac{\mathbf{x} \cdot \mathbf{y}} {\left\| \mathbf{x} \right\| \left\| \mathbf{y} \right\|} = \frac {0.308}{\sqrt{30.8}\sqrt{0.00308}} = 1 = \rho_{xy}, </math>

as expected.

Interpretation of the size of a correlationEdit

File:Pearson correlation and prediction intervals.svg
This figure gives a sense of how the usefulness of a Pearson correlation for predicting values varies with its magnitude. Given jointly normal X, Y with correlation ρ, <math>1 - \sqrt{1 - \rho^2}</math> (plotted here as a function of ρ) is the factor by which a given prediction interval for Y may be reduced given the corresponding value of X. For example, if ρ = 0.5, then the 95% prediction interval of YTemplate:PipeX will be about 13% smaller than the 95% prediction interval of Y.

Several authors have offered guidelines for the interpretation of a correlation coefficient.<ref name="Buda">Template:Cite book</ref><ref name="Cohen88"/> However, all such criteria are in some ways arbitrary.<ref name="Cohen88">Template:Cite book</ref> The interpretation of a correlation coefficient depends on the context and purposes. A correlation of 0.8 may be very low if one is verifying a physical law using high-quality instruments, but may be regarded as very high in the social sciences, where there may be a greater contribution from complicating factors.

InferenceEdit

Statistical inference based on Pearson's correlation coefficient often focuses on one of the following two aims:

  • One aim is to test the null hypothesis that the true correlation coefficient ρ is equal to 0, based on the value of the sample correlation coefficient r.
  • The other aim is to derive a confidence interval that, on repeated sampling, has a given probability of containing ρ.

Methods of achieving one or both of these aims are discussed below.

Using a permutation testEdit

Permutation tests provide a direct approach to performing hypothesis tests and constructing confidence intervals. A permutation test for Pearson's correlation coefficient involves the following two steps:

  1. Using the original paired data (xiyi), randomly redefine the pairs to create a new data set (xiyTemplate:Prime), where the Template:Prime are a permutation of the set {1,...,n}. The permutation Template:Prime is selected randomly, with equal probabilities placed on all n! possible permutations. This is equivalent to drawing the Template:Prime randomly without replacement from the set {1, ..., n}. In bootstrapping, a closely related approach, the i and the Template:Prime are equal and drawn with replacement from {1, ..., n};
  2. Construct a correlation coefficient r from the randomized data.

To perform the permutation test, repeat steps (1) and (2) a large number of times. The p-value for the permutation test is the proportion of the r values generated in step (2) that are larger than the Pearson correlation coefficient that was calculated from the original data. Here "larger" can mean either that the value is larger in magnitude, or larger in signed value, depending on whether a two-sided or one-sided test is desired.

Using a bootstrapEdit

The bootstrap can be used to construct confidence intervals for Pearson's correlation coefficient. In the "non-parametric" bootstrap, n pairs (xiyi) are resampled "with replacement" from the observed set of n pairs, and the correlation coefficient r is calculated based on the resampled data. This process is repeated a large number of times, and the empirical distribution of the resampled r values are used to approximate the sampling distribution of the statistic. A 95% confidence interval for ρ can be defined as the interval spanning from the 2.5th to the 97.5th percentile of the resampled r values.

Standard errorEdit

If <math>x</math> and <math>y</math> are random variables, with a simple linear relationship between them with an additive normal noise (i.e., y= a + bx + e), then a standard error associated to the correlation is

<math>\sigma_r = \sqrt{\frac{1-r^2}{n-2}}</math>

where <math>r</math> is the correlation and <math>n</math> the sample size.<ref>Template:Cite journal</ref><ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref>

Testing using Student's t-distributionEdit

File:Critical correlation vs. sample size.svg
Critical values of Pearson's correlation coefficient that must be exceeded to be considered significantly nonzero at the 0.05 level

For pairs from an uncorrelated bivariate normal distribution, the sampling distribution of the studentized Pearson's correlation coefficient follows Student's t-distribution with degrees of freedom n − 2. Specifically, if the underlying variables have a bivariate normal distribution, the variable

<math>t = \frac{r}{\sigma_r} = r\sqrt{\frac{n-2}{1 - r^2}}</math>

has a student's t-distribution in the null case (zero correlation).<ref>Rahman, N. A. (1968) A Course in Theoretical Statistics, Charles Griffin and Company, 1968</ref> This holds approximately in case of non-normal observed values if sample sizes are large enough.<ref>Kendall, M. G., Stuart, A. (1973) The Advanced Theory of Statistics, Volume 2: Inference and Relationship, Griffin. Template:Isbn (Section 31.19)</ref> For determining the critical values for r the inverse function is needed:

<math>r = \frac{t}{\sqrt{n - 2 + t^2}}.</math>

Alternatively, large sample, asymptotic approaches can be used.

Another early paper<ref>Template:Cite journal</ref> provides graphs and tables for general values of ρ, for small sample sizes, and discusses computational approaches.

In the case where the underlying variables are not normal, the sampling distribution of Pearson's correlation coefficient follows a Student's t-distribution, but the degrees of freedom are reduced.<ref>Template:Cite journal</ref>

Using the exact distributionEdit

For data that follow a bivariate normal distribution, the exact density function f(r) for the sample correlation coefficient r of a normal bivariate is<ref>Template:Cite journal</ref><ref>Template:Cite book</ref><ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref>

<math>f(r) = \frac{(n - 2)\, \mathrm{\Gamma}(n - 1) \left(1 - \rho^2\right)^{\frac{n - 1}{2}} \left(1 - r^2\right)^{\frac{n - 4}{2}}}{\sqrt{2\pi}\, \operatorname{\Gamma}\mathord\left(n - \tfrac{1}{2}\right) (1 - \rho r)^{n - \frac{3}{2}}} {}_{2}\mathrm{F}_{1}\mathord\left(\tfrac{1}{2}, \tfrac{1}{2}; \tfrac{1}{2}(2n - 1); \tfrac{1}{2}(\rho r + 1)\right)</math>

where <math>\Gamma</math> is the gamma function and <math>{}_{2}\mathrm{F}_{1}(a,b;c;z)</math> is the Gaussian hypergeometric function.

In the special case when <math>\rho = 0</math> (zero population correlation), the exact density function f(r) can be written as

<math>f(r) = \frac{\left( 1-r^2 \right)^{\frac{n - 4}{2}}}{\operatorname{\Beta}\mathord\left(\tfrac{1}{2}, \tfrac{n - 2}{2}\right)},</math>

where <math>\Beta</math> is the beta function, which is one way of writing the density of a Student's t-distribution for a studentized sample correlation coefficient, as above.

Using the Fisher transformationEdit

{{#invoke:Labelled list hatnote|labelledList|Main article|Main articles|Main page|Main pages}}

In practice, confidence intervals and hypothesis tests relating to ρ are usually carried out using the, Variance-stabilizing transformation, Fisher transformation, <math>F</math>:

<math>F(r) \equiv \tfrac{1}{2} \, \ln \left(\frac{1 + r}{1 - r}\right) = \operatorname{artanh}(r)</math>

F(r) approximately follows a normal distribution with

<math>\text{mean} = F(\rho) = \operatorname{artanh}(\rho)</math>Template:Spacesand standard error <math>=\text{SE} = \frac{1}{\sqrt{n - 3}},</math>

where n is the sample size. The approximation error is lowest for a large sample size <math>n</math> and small <math>r</math> and <math>\rho_0</math> and increases otherwise.

Using the approximation, a z-score is

<math>z = \frac{x - \text{mean}}{\text{SE}} = [F(r) - F(\rho_0)]\sqrt{n - 3}</math>

under the null hypothesis that <math>\rho = \rho_0</math>, given the assumption that the sample pairs are independent and identically distributed and follow a bivariate normal distribution. Thus an approximate p-value can be obtained from a normal probability table. For example, if z = 2.2 is observed and a two-sided p-value is desired to test the null hypothesis that <math>\rho = 0</math>, the p-value is Template:Nowrap, where Φ is the standard normal cumulative distribution function.

To obtain a confidence interval for ρ, we first compute a confidence interval for F(<math>\rho</math>):

<math>100(1 - \alpha)\%\text{CI}: \operatorname{artanh}(\rho) \in [\operatorname{artanh}(r) \pm z_{\alpha/2}\text{SE}]</math>

The inverse Fisher transformation brings the interval back to the correlation scale.

<math>100(1 - \alpha)\%\text{CI}: \rho \in [\tanh(\operatorname{artanh}(r) - z_{\alpha/2}\text{SE}), \tanh(\operatorname{artanh}(r) + z_{\alpha/2}\text{SE})]</math>

For example, suppose we observe r = 0.7 with a sample size of n=50, and we wish to obtain a 95% confidence interval for ρ. The transformed value is <math display="inline">\operatorname{arctanh} \left ( r \right ) = 0.8673</math>, so the confidence interval on the transformed scale is <math>0.8673 \pm \frac{1.96}{\sqrt{47}} </math>, or (0.5814, 1.1532). Converting back to the correlation scale yields (0.5237, 0.8188).

In least squares regression analysisEdit

Template:For The square of the sample correlation coefficient is typically denoted r2 and is a special case of the coefficient of determination. In this case, it estimates the fraction of the variance in Y that is explained by X in a simple linear regression. So if we have the observed dataset <math>Y_1, \dots , Y_n</math> and the fitted dataset <math>\hat Y_1, \dots , \hat Y_n</math> then as a starting point the total variation in the Yi around their average value can be decomposed as follows

<math>\sum_i (Y_i - \bar{Y})^2 = \sum_i (Y_i-\hat{Y}_i)^2 + \sum_i (\hat{Y}_i-\bar{Y})^2,</math>

where the <math>\hat{Y}_i</math> are the fitted values from the regression analysis. This can be rearranged to give

<math>1 = \frac{\sum_i (Y_i-\hat{Y}_i)^2}{\sum_i (Y_i - \bar{Y})^2} + \frac{\sum_i (\hat{Y}_i-\bar{Y})^2}{\sum_i (Y_i - \bar{Y})^2}.</math>

The two summands above are the fraction of variance in Y that is explained by X (right) and that is unexplained by X (left).

Next, we apply a property of least squares regression models, that the sample covariance between <math>\hat{Y}_i</math> and <math>Y_i-\hat{Y}_i</math> is zero. Thus, the sample correlation coefficient between the observed and fitted response values in the regression can be written (calculation is under expectation, assumes Gaussian statistics)

<math>

\begin{align} r(Y,\hat{Y}) &= \frac{\sum_i(Y_i-\bar{Y})(\hat{Y}_i-\bar{Y})}{\sqrt{\sum_i(Y_i-\bar{Y})^2\cdot \sum_i(\hat{Y}_i-\bar{Y})^2}}\\[6pt] &= \frac{\sum_i(Y_i-\hat{Y}_i+\hat{Y}_i-\bar{Y})(\hat{Y}_i-\bar{Y})}{\sqrt{\sum_i(Y_i-\bar{Y})^2\cdot \sum_i(\hat{Y}_i-\bar{Y})^2}}\\[6pt] &= \frac{ \sum_i [(Y_i-\hat{Y}_i)(\hat{Y}_i-\bar{Y}) +(\hat{Y}_i-\bar{Y})^2 ]}{\sqrt{\sum_i(Y_i-\bar{Y})^2\cdot \sum_i(\hat{Y}_i-\bar{Y})^2}}\\[6pt] &= \frac{ \sum_i (\hat{Y}_i-\bar{Y})^2 }{\sqrt{\sum_i(Y_i-\bar{Y})^2\cdot \sum_i(\hat{Y}_i-\bar{Y})^2}}\\[6pt] &= \sqrt{\frac{\sum_i(\hat{Y}_i-\bar{Y})^2}{\sum_i(Y_i-\bar{Y})^2}}. \end{align} </math>

Thus

<math>r(Y,\hat{Y})^2 = \frac{\sum_i(\hat{Y}_i-\bar{Y})^2}{\sum_i(Y_i-\bar{Y})^2}</math>

where <math>r(Y,\hat{Y})^2</math> is the proportion of variance in Y explained by a linear function of X.

In the derivation above, the fact that

<math>\sum_i (Y_i-\hat{Y}_i)(\hat{Y}_i-\bar{Y}) = 0</math>

can be proved by noticing that the partial derivatives of the residual sum of squares (Template:Math) over β0 and β1 are equal to 0 in the least squares model, where

<math>\text{RSS} = \sum_i (Y_i - \hat{Y}_i)^2</math>.

In the end, the equation can be written as

<math>r(Y,\hat{Y})^2 = \frac{\text{SS}_\text{reg}}{\text{SS}_\text{tot}}</math>

where

  • <math>\text{SS}_\text{reg} = \sum_i (\hat{Y}_i-\bar{Y})^2</math>
  • <math>\text{SS}_\text{tot} = \sum_i (Y_i-\bar{Y})^2</math>.

The symbol <math>\text{SS}_\text{reg}</math> is called the regression sum of squares, also called the explained sum of squares, and <math>\text{SS}_\text{tot}</math> is the total sum of squares (proportional to the variance of the data).

Sensitivity to the data distributionEdit

Template:Further

ExistenceEdit

The population Pearson correlation coefficient is defined in terms of moments, and therefore exists for any bivariate probability distribution for which the population covariance is defined and the marginal population variances are defined and are non-zero. Some probability distributions, such as the Cauchy distribution, have undefined variance and hence ρ is not defined if X or Y follows such a distribution. In some practical applications, such as those involving data suspected to follow a heavy-tailed distribution, this is an important consideration. However, the existence of the correlation coefficient is usually not a concern; for instance, if the range of the distribution is bounded, ρ is always defined.

Sample sizeEdit

  • If the sample size is moderate or large and the population is normal, then, in the case of the bivariate normal distribution, the sample correlation coefficient is the maximum likelihood estimate of the population correlation coefficient, and is asymptotically unbiased and efficient, which roughly means that it is impossible to construct a more accurate estimate than the sample correlation coefficient.
  • If the sample size is large and the population is not normal, then the sample correlation coefficient remains approximately unbiased, but may not be efficient.
  • If the sample size is large, then the sample correlation coefficient is a consistent estimator of the population correlation coefficient as long as the sample means, variances, and covariance are consistent (which is guaranteed when the law of large numbers can be applied).
  • If the sample size is small, then the sample correlation coefficient r is not an unbiased estimate of ρ.<ref name="RealCorBasic"/> The adjusted correlation coefficient must be used instead: see elsewhere in this article for the definition.
  • Correlations can be different for imbalanced dichotomous data when there is variance error in sample.<ref>Template:Cite journal</ref>

RobustnessEdit

Like many commonly used statistics, the sample statistic r is not robust,<ref name="wilcox">Template:Cite book</ref> so its value can be misleading if outliers are present.<ref>Template:Cite journal</ref><ref>Template:Cite bookTemplate:Page needed</ref> Specifically, the PMCC is neither distributionally robust,<ref>Template:Cite book</ref> nor outlier resistant<ref name="wilcox"/> (see Template:Section link). Inspection of the scatterplot between X and Y will typically reveal a situation where lack of robustness might be an issue, and in such cases it may be advisable to use a robust measure of association. Note however that while most robust estimators of association measure statistical dependence in some way, they are generally not interpretable on the same scale as the Pearson correlation coefficient.

Statistical inference for Pearson's correlation coefficient is sensitive to the data distribution. Exact tests, and asymptotic tests based on the Fisher transformation can be applied if the data are approximately normally distributed, but may be misleading otherwise. In some situations, the bootstrap can be applied to construct confidence intervals, and permutation tests can be applied to carry out hypothesis tests. These non-parametric approaches may give more meaningful results in some situations where bivariate normality does not hold. However the standard versions of these approaches rely on exchangeability of the data, meaning that there is no ordering or grouping of the data pairs being analyzed that might affect the behavior of the correlation estimate.

A stratified analysis is one way to either accommodate a lack of bivariate normality, or to isolate the correlation resulting from one factor while controlling for another. If W represents cluster membership or another factor that it is desirable to control, we can stratify the data based on the value of W, then calculate a correlation coefficient within each stratum. The stratum-level estimates can then be combined to estimate the overall correlation while controlling for W.<ref>Katz., Mitchell H. (2006) Multivariable Analysis – A Practical Guide for Clinicians. 2nd Edition. Cambridge University Press. Template:Isbn. Template:Isbn</ref>

VariantsEdit

Template:See also

Variations of the correlation coefficient can be calculated for different purposes. Here are some examples.

Adjusted correlation coefficientEdit

The sample correlation coefficient Template:Mvar is not an unbiased estimate of Template:Mvar. For data that follows a bivariate normal distribution, the expectation Template:Math for the sample correlation coefficient Template:Mvar of a normal bivariate is<ref>Template:Cite journal</ref>

<math>\operatorname\mathbb{E}\left[r\right] = \rho - \frac{\rho \left(1 - \rho^2\right)}{2n} + \cdots, \quad</math> therefore Template:Mvar is a biased estimator of <math>\rho.</math>

The unique minimum variance unbiased estimator Template:Math is given by<ref>Template:Cite journal.</ref>

Template:NumBlk

where:

An approximately unbiased estimator Template:Math can be obtainedTemplate:Citation needed by truncating Template:Math and solving this truncated equation:

Template:NumBlk

An approximate solutionTemplate:Citation needed to equation (Template:EquationNote) is

Template:NumBlk

where in (Template:EquationNote)

Another proposed<ref name="RealCorBasic"/> adjusted correlation coefficient isTemplate:Citation needed

<math>r_\text{adj}=\sqrt{1-\frac{(1-r^2)(n-1)}{(n-2)}}.</math>

Template:Math for large values of Template:Mvar.

Weighted correlation coefficientEdit

Suppose observations to be correlated have differing degrees of importance that can be expressed with a weight vector w. To calculate the correlation between vectors x and y with the weight vector w (all of length n),<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref><ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref>

  • Weighted mean: <math display="block">\operatorname{m}(x; w) = \frac{\sum_i w_i x_i}{\sum_i w_i}.</math>
  • Weighted covariance <math display="block">\operatorname{cov}(x,y;w) = \frac{\sum_i w_i \cdot (x_i - \operatorname{m}(x; w)) (y_i - \operatorname{m}(y; w))}{\sum_i w_i }.</math>
  • Weighted correlation <math display="block">\operatorname{corr}(x,y;w) = \frac{\operatorname{cov}(x,y;w)}{\sqrt{\operatorname{cov}(x,x;w) \operatorname{cov}(y,y;w)}}.</math>

Reflective correlation coefficientEdit

The reflective correlation is a variant of Pearson's correlation in which the data are not centered around their mean values.Template:Citation needed The population reflective correlation is

<math>\operatorname{corr}_r(X,Y) = \frac{\operatorname\mathbb{E}[\,X\,Y\,]}{\sqrt{\operatorname\mathbb{E}[\,X^2\,]\cdot \operatorname\mathbb{E}[\,Y^2\,]}}.</math>

The reflective correlation is symmetric, but it is not invariant under translation:

<math>\operatorname{corr}_r(X, Y) = \operatorname{corr}_r(Y, X) = \operatorname{corr}_r(X, bY) \neq \operatorname{corr}_r(X, a + b Y), \quad a \neq 0, b > 0.</math>

The sample reflective correlation is equivalent to cosine similarity:

<math>rr_{xy} = \frac{\sum x_i y_i}{\sqrt{(\sum x_i^2)(\sum y_i^2)}}.</math>

The weighted version of the sample reflective correlation is

<math>rr_{xy, w} = \frac{\sum w_i x_i y_i}{\sqrt{(\sum w_i x_i^2)(\sum w_i y_i^2)}}.</math>

Scaled correlation coefficientEdit

{{#invoke:Labelled list hatnote|labelledList|Main article|Main articles|Main page|Main pages}}

Scaled correlation is a variant of Pearson's correlation in which the range of the data is restricted intentionally and in a controlled manner to reveal correlations between fast components in time series.<ref name = "Nikolicetal">Template:Cite journal</ref> Scaled correlation is defined as average correlation across short segments of data.

Let <math>K</math> be the number of segments that can fit into the total length of the signal <math>T</math> for a given scale <math>s</math>:

<math>K = \operatorname{round}\left(\frac{T}{s}\right).</math>

The scaled correlation across the entire signals <math>\bar{r}_s</math> is then computed as

<math>\bar{r}_s = \frac{1}{K} \sum\limits_{k=1}^K r_k,</math>

where <math>r_k</math> is Pearson's coefficient of correlation for segment <math>k</math>.

By choosing the parameter <math>s</math>, the range of values is reduced and the correlations on long time scale are filtered out, only the correlations on short time scales being revealed. Thus, the contributions of slow components are removed and those of fast components are retained.

Pearson's distanceEdit

A distance metric for two variables X and Y known as Pearson's distance can be defined from their correlation coefficient as<ref>Fulekar (Ed.), M.H. (2009) Bioinformatics: Applications in Life and Environmental Sciences, Springer (pp. 110) Template:Isbn</ref>

<math>d_{X,Y}=1-\rho_{X,Y}.</math>

Considering that the Pearson correlation coefficient falls between [−1, +1], the Pearson distance lies in [0, 2]. The Pearson distance has been used in cluster analysis and data detection for communications and storage with unknown gain and offset.<ref>Template:Cite journal</ref>

The Pearson "distance" defined this way assigns distance greater than 1 to negative correlations. In reality, both strong positive correlation and negative correlations are meaningful, so care must be taken when Pearson "distance" is used for nearest neighbor algorithm as such algorithm will only include neighbors with positive correlation and exclude neighbors with negative correlation. Alternatively, an absolute valued distance, <math>d_{X,Y}=1-|\rho_{X,Y}|</math>, can be applied, which will take both positive and negative correlations into consideration. The information on positive and negative association can be extracted separately, later.

Circular correlation coefficientTemplate:AnchorEdit

Template:Further

For variables X = {x1,...,xn} and Y = {y1,...,yn} that are defined on the unit circle Template:Not a typo, it is possible to define a circular analog of Pearson's coefficient.<ref name="SRJ">Template:Cite book</ref> This is done by transforming data points in X and Y with a sine function such that the correlation coefficient is given as:

<math>r_\text{circular} = \frac{\sum ^n _{i=1}\sin(x_i - \bar{x}) \sin(y_i - \bar{y})}{\sqrt{\sum^n_{i=1} \sin(x_i - \bar{x})^2} \sqrt{\sum ^n_{i=1} \sin(y_i - \bar{y})^2}}</math>

where <math>\bar{x}</math> and <math>\bar{y}</math> are the circular means of X and Y. This measure can be useful in fields like meteorology where the angular direction of data is important.

Partial correlationEdit

{{#invoke:Labelled list hatnote|labelledList|Main article|Main articles|Main page|Main pages}} If a population or data-set is characterized by more than two variables, a partial correlation coefficient measures the strength of dependence between a pair of variables that is not accounted for by the way in which they both change in response to variations in a selected subset of the other variables.

Pearson correlation coefficient in quantum systemsEdit

For two observables, <math>X</math> and <math>Y</math>, in a bipartite quantum system Pearson correlation coefficient is defined as <ref>Template:Cite journal</ref><ref>Template:Cite journal</ref>

<math>\mathbb{Cor}(X,Y) = \frac{\mathbb{E}[X \otimes Y] - \mathbb{E}[X] \cdot \mathbb{E}[Y]}{\sqrt{\mathbb{V}[X] \cdot \mathbb{V}[Y]}} \,,</math>

where

  • <math> \mathbb{E}[X] </math> is the expectation value of the observable <math> X </math>,
  • <math> \mathbb{E}[Y] </math> is the expectation value of the observable <math> Y </math>,
  • <math> \mathbb{E}[X \otimes Y] </math> is the expectation value of the observable <math> X \otimes Y </math>,
  • <math> \mathbb{V}[X] </math> is the variance of the observable <math> X </math>, and
  • <math> \mathbb{V}[Y] </math> is the variance of the observable <math> Y </math>.

<math>\mathbb{Cor}(X,Y)</math> is symmetric, i.e., <math>\mathbb{Cor}(X,Y)= \mathbb{Cor}(Y, X)</math>, and its absolute value is invariant under affine transformations.

Decorrelation of n random variablesEdit

{{#invoke:Labelled list hatnote|labelledList|Main article|Main articles|Main page|Main pages}}

It is always possible to remove the correlations between all pairs of an arbitrary number of random variables by using a data transformation, even if the relationship between the variables is nonlinear. A presentation of this result for population distributions is given by Cox & Hinkley.<ref>Template:Cite book</ref>

A corresponding result exists for reducing the sample correlations to zero. Suppose a vector of n random variables is observed m times. Let X be a matrix where <math>X_{i,j}</math> is the jth variable of observation i. Let <math>Z_{m,m}</math> be an m by m square matrix with every element 1. Then D is the data transformed so every random variable has zero mean, and T is the data transformed so all variables have zero mean and zero correlation with all other variables – the sample correlation matrix of T will be the identity matrix. This has to be further divided by the standard deviation to get unit variance. The transformed variables will be uncorrelated, even though they may not be independent.

<math>D = X -\frac{1}{m} Z_{m,m} X</math>
<math>T = D (D^{\mathsf{T}} D)^{-\frac{1}{2}},</math>

where an exponent of Template:Frac represents the matrix square root of the inverse of a matrix. The correlation matrix of T will be the identity matrix. If a new data observation x is a row vector of n elements, then the same transform can be applied to x to get the transformed vectors d and t:

<math>d = x - \frac{1}{m} Z_{1,m} X,</math>
<math>t = d (D^{\mathsf{T}} D)^{-\frac{1}{2}}.</math>

This decorrelation is related to principal components analysis for multivariate data.

Software implementationsEdit

See alsoEdit

Template:Portal

FootnotesEdit

Template:Notelist

ReferencesEdit

Template:Reflist

External linksEdit

Template:Wikiversity

  • {{#invoke:citation/CS1|citation

|CitationClass=web }} – A free web interface and R package for the statistical comparison of two dependent or independent correlations with overlapping or non-overlapping variables.

  • {{#invoke:citation/CS1|citation

|CitationClass=web }} – an interactive Flash simulation on the correlation of two normally distributed variables.

  • {{#invoke:citation/CS1|citation

|CitationClass=web }}

  • {{#invoke:citation/CS1|citation

|CitationClass=web }} – large table.

  • {{#invoke:citation/CS1|citation

|CitationClass=web }} – A game where players guess how correlated two variables in a scatter plot are, in order to gain a better understanding of the concept of correlation.

Template:Statistics Template:Machine learning evaluation metrics Template:Authority control