Suvarna Garge (Editor)

Correspondence analysis

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

Correspondence analysis (CA) is a multivariate statistical technique proposed by Hirschfeld and later developed by Jean-Paul Benzécri. It is conceptually similar to principal component analysis, but applies to categorical rather than continuous data. In a similar manner to principal component analysis, it provides a means of displaying or summarising a set of data in two-dimensional graphical form.

Contents

All data should be nonnegative and on the same scale for CA to be applicable, keeping in mind that the method treats rows and columns equivalently. It is traditionally applied to contingency tables — CA decomposes the chi-squared statistic associated with this table into orthogonal factors. Because CA is a descriptive technique, it can be applied to tables whether or not the χ 2 statistic is appropriate.

Details

Like principal components analysis, correspondence analysis creates orthogonal components and, for each item in a table, a set of scores (sometimes called factor scores, see Factor analysis). Correspondence analysis is performed on a contingency table, C, of size m×n where m is the number of rows and n is the number of columns.

Preprocessing

From table C, compute a set of weights for the columns and the rows (sometimes called masses), where row weights are

w m = ( 1 C 1 ) 1 C 1

and column weights are

w n = ( 1 C 1 ) 1 1 C .

Next, compute a table S (called the stochastic matrix), where C is divided by the sum of C

S = ( 1 C 1 ) 1 C .

Finally, compute a table M from S and the weights as such

M = S w m w n .

Orthogonal components

The table M is then decomposed with the generalized singular value decomposition where the left and right singular vectors are constrained by weights. The weights are diagonal tables

W m = diag { w m }

and

W n = diag { w n }

where the diagonal elements of W n are w n and the off-diagonal elements are all 0.

M is then decomposed via the generalized singular value decomposition

M = U Σ V

where

U W m U = V W n V = I .

Factor scores

Factor scores for the row items of table C are

F m = W m U Σ

and for the column items

F n = W n V Σ .

Extensions and applications

Several variants of CA are available, including detrended correspondence analysis (DCA) and canonical correspondence analysis (CCA). The extension of correspondence analysis to many categorical variables is called multiple correspondence analysis. An adaptation of correspondence analysis to the problem of discrimination based upon qualitative variables (i.e., the equivalent of discriminant analysis for qualitative data) is called discriminant correspondence analysis or barycentric discriminant analysis.

In the social sciences, correspondence analysis, and particularly its extension multiple correspondence analysis, was made known outside France through French sociologist Pierre Bourdieu's application of it.

Implementations

  • The data visualization system Orange include the module: orngCA.
  • The statistical system R includes the packages: MASS, ade4, ca, vegan, ExPosition, andFactoMineR which perform correspondence analysis and multiple correspondence analysis.
  • References

    Correspondence analysis Wikipedia