Template:Machine learning Template:Short description In statistics, canonical-correlation analysis (CCA), also called canonical variates analysis, is a way of inferring information from cross-covariance matrices. If we have two vectors X = (X1, ..., Xn) and Y = (Y1, ..., Ym) of random variables, and there are correlations among the variables, then canonical-correlation analysis will find linear combinations of X and Y that have a maximum correlation with each other.<ref>Template:Cite book</ref> T. R. Knapp notes that "virtually all of the commonly encountered parametric tests of significance can be treated as special cases of canonical-correlation analysis, which is the general procedure for investigating the relationships between two sets of variables."<ref>Template:Cite journal</ref> The method was first introduced by Harold Hotelling in 1936,<ref>Template:Cite journal</ref> although in the context of angles between flats the mathematical concept was published by Camille Jordan in 1875.<ref name="jordan">Template:Cite journal</ref>
CCA is now a cornerstone of multivariate statistics and multi-view learning, and a great number of interpretations and extensions have been proposed, such as probabilistic CCA, sparse CCA, multi-view CCA, deep CCA,<ref>Template:Cite journal</ref> and DeepGeoCCA.<ref>Template:Cite book</ref> Unfortunately, perhaps because of its popularity, the literature can be inconsistent with notation, we attempt to highlight such inconsistencies in this article to help the reader make best use of the existing literature and techniques available.
Like its sister method PCA, CCA can be viewed in population form (corresponding to random vectors and their covariance matrices) or in sample form (corresponding to datasets and their sample covariance matrices). These two forms are almost exact analogues of each other, which is why their distinction is often overlooked, but they can behave very differently in high dimensional settings.<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref> We next give explicit mathematical definitions for the population problem and highlight the different objects in the so-called canonical decomposition - understanding the differences between these objects is crucial for interpretation of the technique.
Population CCA definition via correlationsEdit
Given two column vectors <math>X = (x_1, \dots, x_n)^T</math> and <math>Y = (y_1, \dots, y_m)^T</math> of random variables with finite second moments, one may define the cross-covariance <math>\Sigma _{XY} = \operatorname{cov}(X, Y) </math> to be the <math> n \times m</math> matrix whose <math>(i, j)</math> entry is the covariance <math>\operatorname{cov}(x_i, y_j)</math>. In practice, we would estimate the covariance matrix based on sampled data from <math>X</math> and <math>Y</math> (i.e. from a pair of data matrices).
Canonical-correlation analysis seeks a sequence of vectors <math>a_k</math> (<math>a_k \in\mathbb R^n</math>) and <math>b_k</math> (<math>b_k \in\mathbb R^m</math>) such that the random variables <math>a_k^T X</math> and <math>b_k^T Y</math> maximize the correlation <math>\rho = \operatorname{corr}(a_k^T X, b_k^T Y)</math>. The (scalar) random variables <math>U = a_1^T X</math> and <math>V = b_1^T Y</math> are the first pair of canonical variables. Then one seeks vectors maximizing the same correlation subject to the constraint that they are to be uncorrelated with the first pair of canonical variables; this gives the second pair of canonical variables. This procedure may be continued up to <math>\min\{m,n\}</math> times.
- <math display="block">(a_k,b_k) = \underset{a,b}\operatorname{argmax} \operatorname{corr}(a^T X, b^T Y) \quad\text{ subject to } \operatorname{cov}(a^T X, a_j^T X) = \operatorname{cov}(b^T Y, b_j^T Y) = 0 \text{ for } j=1, \dots, k-1</math>
The sets of vectors <math>a_k, b_k</math> are called canonical directions or weight vectors or simply weights. The 'dual' sets of vectors <math>\Sigma_{XX}a_k, \Sigma_{YY} b_k</math> are called canonical loading vectors or simply loadings; these are often more straightforward to interpret than the weights.<ref>Template:Cite journal</ref>
ComputationEdit
DerivationEdit
Let <math>\Sigma _{XY}</math> be the cross-covariance matrix for any pair of (vector-shaped) random variables <math>X</math> and <math>Y</math>. The target function to maximize is
- <math>
\rho = \frac{a^T \Sigma _{XY} b}{\sqrt{a^T \Sigma _{XX} a} \sqrt{b^T \Sigma _{YY} b}}. </math>
The first step is to define a change of basis and define
- <math>
c = \Sigma _{XX} ^{1/2} a, </math>
- <math>
d = \Sigma _{YY} ^{1/2} b, </math> where <math>\Sigma_{XX}^{1/2}</math> and <math>\Sigma_{YY}^{1/2}</math> can be obtained from the eigen-decomposition (or by diagonalization):
- <math>
\Sigma _{XX} ^{1/2} = V_X D_X^{1/2} V_X^\top,\qquad V_X D_X V_X^\top = \Sigma_{XX}, </math> and
- <math>
\Sigma _{YY} ^{1/2} = V_Y D_Y^{1/2} V_Y^\top,\qquad V_Y D_Y V_Y^\top = \Sigma_{YY}. </math>
Thus
- <math>
\rho = \frac{c^T \Sigma _{XX} ^{-1/2} \Sigma _{XY} \Sigma _{YY} ^{-1/2} d}{\sqrt{c^Tc} \sqrt{d^Td}}. </math>
By the Cauchy–Schwarz inequality, ...can someone check the this, particularly the term to the right of "(d) leq"?
- <math>
\left(c^T \Sigma _{XX} ^{-1/2} \Sigma _{XY} \Sigma _{YY} ^{-1/2} \right) (d) \leq \left(c^T \Sigma _{XX} ^{-1/2} \Sigma _{XY} \Sigma _{YY} ^{-1/2} \Sigma _{YY} ^{-1/2} \Sigma _{YX} \Sigma _{XX} ^{-1/2} c \right)^{1/2} \left(d^T d \right)^{1/2}, </math>
- <math>
\rho \leq \frac{\left(c^T \Sigma _{XX}^{-1/2} \Sigma _{XY} \Sigma _{YY}^{-1} \Sigma _{YX} \Sigma_{XX}^{-1/2} c \right)^{1/2}}{\left(c^T c \right)^{1/2}}. </math>
There is equality if the vectors <math>d</math> and <math>\Sigma_{YY}^{-1/2} \Sigma_{YX} \Sigma_{XX}^{-1/2} c</math> are collinear. In addition, the maximum of correlation is attained if <math>c</math> is the eigenvector with the maximum eigenvalue for the matrix <math>\Sigma_{XX}^{-1/2} \Sigma_{XY} \Sigma_{YY}^{-1} \Sigma_{YX} \Sigma_{XX}^{-1/2}</math> (see Rayleigh quotient). The subsequent pairs are found by using eigenvalues of decreasing magnitudes. Orthogonality is guaranteed by the symmetry of the correlation matrices.
Another way of viewing this computation is that <math>c</math> and <math>d</math> are the left and right singular vectors of the correlation matrix of X and Y corresponding to the highest singular value.
SolutionEdit
The solution is therefore:
- <math>c</math> is an eigenvector of <math>\Sigma_{XX}^{-1/2} \Sigma_{XY} \Sigma_{YY}^{-1} \Sigma_{YX} \Sigma_{XX}^{-1/2}</math>
- <math>d</math> is proportional to <math>\Sigma _{YY}^{-1/2} \Sigma_{YX} \Sigma_{XX}^{-1/2} c</math>
Reciprocally, there is also:
- <math>d</math> is an eigenvector of <math>\Sigma_{YY}^{-1/2} \Sigma_{YX} \Sigma_{XX}^{-1} \Sigma_{XY} \Sigma_{YY}^{-1/2}</math>
- <math>c</math> is proportional to <math>\Sigma_{XX}^{-1/2} \Sigma_{XY} \Sigma_{YY}^{-1/2} d</math>
Reversing the change of coordinates, we have that
- <math>a</math> is an eigenvector of <math>\Sigma_{XX}^{-1} \Sigma_{XY} \Sigma_{YY}^{-1} \Sigma_{YX}</math>,
- <math>b</math> is proportional to <math>\Sigma_{YY}^{-1} \Sigma_{YX} a;</math>
- <math>b</math> is an eigenvector of <math>\Sigma _{YY}^{-1} \Sigma_{YX} \Sigma_{XX}^{-1} \Sigma_{XY},</math>
- <math>a</math> is proportional to <math>\Sigma_{XX}^{-1} \Sigma_{XY} b</math>.
The canonical variables are defined by:
- <math>U = c^T \Sigma_{XX}^{-1/2} X = a^T X</math>
- <math>V = d^T \Sigma_{YY}^{-1/2} Y = b^T Y</math>
ImplementationEdit
CCA can be computed using singular value decomposition on a correlation matrix.<ref>Template:Cite journal</ref> It is available as a function in<ref>Template:Cite journal</ref>
- MATLAB as canoncorr (also in Octave)
- R as the standard function cancor and several other packages, including candisc, CCA and vegan. CCP for statistical hypothesis testing in canonical correlation analysis.
- SAS as proc cancorr
- Python in the library scikit-learn, as cross decomposition and in statsmodels, as CanCorr. The CCA-Zoo library <ref>Template:Cite journal</ref> implements CCA extensions, such as probabilistic CCA, sparse CCA, multi-view CCA, and deep CCA.
- SPSS as macro CanCorr shipped with the main software
- Julia (programming language) in the MultivariateStats.jl package.
CCA computation using singular value decomposition on a correlation matrix is related to the cosine of the angles between flats. The cosine function is ill-conditioned for small angles, leading to very inaccurate computation of highly correlated principal vectors in finite precision computer arithmetic. To fix this trouble, alternative algorithms<ref name="KA02">Template:Citation</ref> are available in
Hypothesis testingEdit
Each row can be tested for significance with the following method. Since the correlations are sorted, saying that row <math>i</math> is zero implies all further correlations are also zero. If we have <math>p</math> independent observations in a sample and <math>\widehat{\rho}_i</math> is the estimated correlation for <math>i = 1,\dots, \min\{m,n\}</math>. For the <math>i</math>th row, the test statistic is:
- <math>\chi^2 = - \left( p - 1 - \frac{1}{2}(m + n + 1)\right) \ln \prod_{j = i}^{\min\{m,n\}} (1 - \widehat{\rho}_j^2),</math>
which is asymptotically distributed as a chi-squared with <math>(m - i + 1)(n - i + 1)</math> degrees of freedom for large <math>p</math>.<ref>Template:Cite book</ref> Since all the correlations from <math> \min\{m,n\}</math> to <math>p</math> are logically zero (and estimated that way also) the product for the terms after this point is irrelevant.
Note that in the small sample size limit with <math>p < n + m</math> then we are guaranteed that the top <math>m + n - p</math> correlations will be identically 1 and hence the test is meaningless.<ref>Yang Song, Peter J. Schreier, David Ram´ırez, and Tanuj Hasija Canonical correlation analysis of high-dimensional data with very small sample support Template:ArXiv</ref>
Practical usesEdit
A typical use for canonical correlation in the experimental context is to take two sets of variables and see what is common among the two sets.<ref>Template:Cite book</ref> For example, in psychological testing, one could take two well established multidimensional personality tests such as the Minnesota Multiphasic Personality Inventory (MMPI-2) and the NEO. By seeing how the MMPI-2 factors relate to the NEO factors, one could gain insight into what dimensions were common between the tests and how much variance was shared. For example, one might find that an extraversion or neuroticism dimension accounted for a substantial amount of shared variance between the two tests.
One can also use canonical-correlation analysis to produce a model equation which relates two sets of variables, for example a set of performance measures and a set of explanatory variables, or a set of outputs and set of inputs. Constraint restrictions can be imposed on such a model to ensure it reflects theoretical requirements or intuitively obvious conditions. This type of model is known as a maximum correlation model.<ref>Template:Cite journal</ref>
Visualization of the results of canonical correlation is usually through bar plots of the coefficients of the two sets of variables for the pairs of canonical variates showing significant correlation. Some authors suggest that they are best visualized by plotting them as heliographs, a circular format with ray like bars, with each half representing the two sets of variables.<ref>Template:Cite book</ref>
ExamplesEdit
Let <math>X = x_1</math> with zero expected value, i.e., <math>\operatorname{E}(X)=0</math>.
- If <math>Y = X</math>, i.e., <math>X</math> and <math>Y</math> are perfectly correlated, then, e.g., <math>a=1</math> and <math>b=1</math>, so that the first (and only in this example) pair of canonical variables is <math>U = X</math> and <math>V = Y =X</math>.
- If <math>Y = -X</math>, i.e., <math>X</math> and <math>Y</math> are perfectly anticorrelated, then, e.g., <math>a=1</math> and <math>b=-1</math>, so that the first (and only in this example) pair of canonical variables is <math>U = X</math> and <math>V = -Y =X</math>.
We notice that in both cases <math>U =V</math>, which illustrates that the canonical-correlation analysis treats correlated and anticorrelated variables similarly.
Connection to principal anglesEdit
Assuming that <math>X = (x_1, \dots, x_n)^T</math> and <math>Y = (y_1, \dots, y_m)^T</math> have zero expected values, i.e., <math>\operatorname{E}(X)=\operatorname{E}(Y)=0</math>, their covariance matrices <math>\Sigma _{XX} =\operatorname{Cov}(X,X) = \operatorname{E}[X X^T]</math> and <math>\Sigma _{YY} =\operatorname{Cov}(Y,Y) = \operatorname{E}[Y Y^T]</math> can be viewed as Gram matrices in an inner product for the entries of <math>X</math> and <math>Y</math>, correspondingly. In this interpretation, the random variables, entries <math>x_i</math> of <math>X</math> and <math>y_j</math> of <math>Y</math> are treated as elements of a vector space with an inner product given by the covariance <math>\operatorname{cov}(x_i, y_j)</math>; see Covariance#Relationship to inner products.
The definition of the canonical variables <math>U</math> and <math>V</math> is then equivalent to the definition of principal vectors for the pair of subspaces spanned by the entries of <math>X</math> and <math>Y</math> with respect to this inner product. The canonical correlations <math>\operatorname{corr}(U,V)</math> is equal to the cosine of principal angles.
Whitening and probabilistic canonical correlation analysisEdit
CCA can also be viewed as a special whitening transformation where the random vectors <math>X</math> and <math>Y</math> are simultaneously transformed in such a way that the cross-correlation between the whitened vectors <math>X^{CCA}</math> and <math>Y^{CCA}</math> is diagonal.<ref>Template:Cite journal</ref> The canonical correlations are then interpreted as regression coefficients linking <math>X^{CCA}</math> and <math>Y^{CCA}</math> and may also be negative. The regression view of CCA also provides a way to construct a latent variable probabilistic generative model for CCA, with uncorrelated hidden variables representing shared and non-shared variability.<ref>Template:Cite journal</ref>
See alsoEdit
- Generalized canonical correlation
- RV coefficient
- Angles between flats
- Principal component analysis
- Linear discriminant analysis
- Regularized canonical correlation analysis
- Singular value decomposition
- Partial least squares regression
ReferencesEdit
External linksEdit
- Discriminant Correlation Analysis (DCA)<ref name="dca">Template:Cite journal</ref> (MATLAB)
- Template:Cite journal
- A note on the ordinal canonical-correlation analysis of two sets of ranking scores (Also provides a FORTRAN program)- in Journal of Quantitative Economics 7(2), 2009, pp. 173–199
- Representation-Constrained Canonical Correlation Analysis: A Hybridization of Canonical Correlation and Principal Component Analyses (Also provides a FORTRAN program)- in Journal of Applied Economic Sciences 4(1), 2009, pp. 115–124