G03ACF (PDF version)
G03 Chapter Contents
G03 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

G03ACF

Note:  before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.

+ Contents

    1  Purpose
    7  Accuracy

1  Purpose

G03ACF performs a canonical variate (canonical discrimination) analysis.

2  Specification

SUBROUTINE G03ACF ( WEIGHT, N, M, X, LDX, ISX, NX, ING, NG, WT, NIG, CVM, LDCVM, E, LDE, NCV, CVX, LDCVX, TOL, IRANKX, WK, IWK, IFAIL)
INTEGER  N, M, LDX, ISX(M), NX, ING(N), NG, NIG(NG), LDCVM, LDE, NCV, LDCVX, IRANKX, IWK, IFAIL
REAL (KIND=nag_wp)  X(LDX,M), WT(*), CVM(LDCVM,NX), E(LDE,6), CVX(LDCVX,NG-1), TOL, WK(IWK)
CHARACTER(1)  WEIGHT

3  Description

Let a sample of n observations on nx variables in a data matrix come from ng groups with n1,n2,,nng observations in each group, ni=n. Canonical variate analysis finds the linear combination of the nx variables that maximizes the ratio of between-group to within-group variation. The variables formed, the canonical variates can then be used to discriminate between groups.
The canonical variates can be calculated from the eigenvectors of the within-group sums of squares and cross-products matrix. However, G03ACF calculates the canonical variates by means of a singular value decomposition (SVD) of a matrix V. Let the data matrix with variable (column) means subtracted be X, and let its rank be k; then the k by (ng-1) matrix V is given by:
V = QXT Qg ,
where Qg is an n by ng-1 orthogonal matrix that defines the groups and QX is the first k rows of the orthogonal matrix Q either from the QR decomposition of X:
X=QR
if X is of full column rank, i.e., k=nx, else from the SVD of X:
X=QDPT .
Let the SVD of V be:
V = Ux Δ UgT
then the nonzero elements of the diagonal matrix Δ, δi, for i=1,2,,l, are the l canonical correlations associated with the l = mink,ng-1  canonical variates, where l = mink,ng .
The eigenvalues, λi2, of the within-group sums of squares matrix are given by:
λi2=δi2 1-δi2
and the value of πi=λi2/λi2 gives the proportion of variation explained by the ith canonical variate. The values of the πi's give an indication as to how many canonical variates are needed to adequately describe the data, i.e., the dimensionality of the problem.
To test for a significant dimensionality greater than i the χ2 statistic:
n-1-ng-12k-ng j=i+1 l log 1 + λj2
can be used. This is asymptotically distributed as a χ2-distribution with k-ing-1-i degrees of freedom. If the test for i=h is not significant, then the remaining tests for i>h should be ignored.
The loadings for the canonical variates are calculated from the matrix Ux. This matrix is scaled so that the canonical variates have unit within-group variance.
In addition to the canonical variates loadings the means for each canonical variate are calculated for each group.
Weights can be used with the analysis, in which case the weighted means are subtracted from each column and then each row is scaled by an amount wi, where wi is the weight for the ith observation (row).

4  References

Chatfield C and Collins A J (1980) Introduction to Multivariate Analysis Chapman and Hall
Gnanadesikan R (1977) Methods for Statistical Data Analysis of Multivariate Observations Wiley
Hammarling S (1985) The singular value decomposition in multivariate statistics SIGNUM Newsl. 20(3) 2–25
Kendall M G and Stuart A (1969) The Advanced Theory of Statistics (Volume 1) (3rd Edition) Griffin

5  Parameters

1:     WEIGHT – CHARACTER(1)Input
On entry: indicates if weights are to be used.
WEIGHT='U'
No weights are used.
WEIGHT='W' or 'V'
Weights are used and must be supplied in WT.
If WEIGHT='W', the weights are treated as frequencies and the effective number of observations is the sum of the weights.
If WEIGHT='V', the weights are treated as being inversely proportional to the variance of the observations and the effective number of observations is the number of observations with nonzero weights.
Constraint: WEIGHT='U', 'W' or 'V'.
2:     N – INTEGERInput
On entry: n, the number of observations.
Constraint: NNX+NG.
3:     M – INTEGERInput
On entry: m, the total number of variables.
Constraint: MNX.
4:     X(LDX,M) – REAL (KIND=nag_wp) arrayInput
On entry: Xij must contain the ith observation for the jth variable, for i=1,2,,n and j=1,2,,m.
5:     LDX – INTEGERInput
On entry: the first dimension of the array X as declared in the (sub)program from which G03ACF is called.
Constraint: LDXN.
6:     ISX(M) – INTEGER arrayInput
On entry: ISXj indicates whether or not the jth variable is to be included in the analysis.
If ISXj>0, the variables contained in the jth column of X is included in the canonical variate analysis, for j=1,2,,m.
Constraint: ISXj>0 for NX values of j.
7:     NX – INTEGERInput
On entry: the number of variables in the analysis, nx.
Constraint: NX1.
8:     ING(N) – INTEGER arrayInput
On entry: INGi indicates which group the ith observation is in, for i=1,2,,n. The effective number of groups is the number of groups with nonzero membership.
Constraint: 1INGiNG, for i=1,2,,n.
9:     NG – INTEGERInput
On entry: the number of groups, ng.
Constraint: NG2.
10:   WT(*) – REAL (KIND=nag_wp) arrayInput
Note: the dimension of the array WT must be at least N if WEIGHT='W' or 'V', and at least 1 otherwise.
On entry: if WEIGHT='W' or 'V', the first n elements of WT must contain the weights to be used in the analysis.
If WTi=0.0, the ith observation is not included in the analysis.
If WEIGHT='U', WT is not referenced.
Constraints:
  • WTi0.0, for i=1,2,,n;
  • 1nWTiNX+effective number of groups.
11:   NIG(NG) – INTEGER arrayOutput
On exit: NIGj gives the number of observations in group j, for j=1,2,,ng.
12:   CVM(LDCVM,NX) – REAL (KIND=nag_wp) arrayOutput
On exit: CVMij contains the mean of the jth canonical variate for the ith group, for i=1,2,,ng and j=1,2,,l; the remaining columns, if any, are used as workspace.
13:   LDCVM – INTEGERInput
On entry: the first dimension of the array CVM as declared in the (sub)program from which G03ACF is called.
Constraint: LDCVMNG.
14:   E(LDE,6) – REAL (KIND=nag_wp) arrayOutput
On exit: the statistics of the canonical variate analysis.
Ei1
The canonical correlations, δi, for i=1,2,,l.
Ei2
The eigenvalues of the within-group sum of squares matrix, λi2, for i=1,2,,l.
Ei3
The proportion of variation explained by the ith canonical variate, for i=1,2,,l.
Ei4
The χ2 statistic for the ith canonical variate, for i=1,2,,l.
Ei5
The degrees of freedom for χ2 statistic for the ith canonical variate, for i=1,2,,l.
Ei6
The significance level for the χ2 statistic for the ith canonical variate, for i=1,2,,l.
15:   LDE – INTEGERInput
On entry: the first dimension of the array E as declared in the (sub)program from which G03ACF is called.
Constraint: LDEminNX,NG-1.
16:   NCV – INTEGEROutput
On exit: the number of canonical variates, l. This will be the minimum of ng-1 and the rank of X.
17:   CVX(LDCVX,NG-1) – REAL (KIND=nag_wp) arrayOutput
On exit: the canonical variate loadings. CVXij contains the loading coefficient for the ith variable on the jth canonical variate, for i=1,2,,nx and j=1,2,,l; the remaining columns, if any, are used as workspace.
18:   LDCVX – INTEGERInput
On entry: the first dimension of the array CVX as declared in the (sub)program from which G03ACF is called.
Constraint: LDCVXNX.
19:   TOL – REAL (KIND=nag_wp)Input
On entry: the value of TOL is used to decide if the variables are of full rank and, if not, what is the rank of the variables. The smaller the value of TOL the stricter the criterion for selecting the singular value decomposition. If a non-negative value of TOL less than machine precision is entered, the square root of machine precision is used instead.
Constraint: TOL0.0.
20:   IRANKX – INTEGEROutput
On exit: the rank of the dependent variables.
If the variables are of full rank then IRANKX=NX.
If the variables are not of full rank then IRANKX is an estimate of the rank of the dependent variables. IRANKX is calculated as the number of singular values greater than TOL×(largest singular value).
21:   WK(IWK) – REAL (KIND=nag_wp) arrayWorkspace
22:   IWK – INTEGERInput
On entry: the dimension of the array WK as declared in the (sub)program from which G03ACF is called.
Constraints:
  • if NXNG-1, IWKN×NX+max5×NX-1+NX+1×NX,N+1;
  • if NX<NG-1, IWKN×NX+max5×NX-1+NG-1×NX,N+1.
23:   IFAIL – INTEGERInput/Output
On entry: IFAIL must be set to 0, -1​ or ​1. If you are unfamiliar with this parameter you should refer to Section 3.3 in the Essential Introduction for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is 0. When the value -1​ or ​1 is used it is essential to test the value of IFAIL on exit.
On exit: IFAIL=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6  Error Indicators and Warnings

If on entry IFAIL=0 or -1, explanatory error messages are output on the current error message unit (as defined by X04AAF).
Errors or warnings detected by the routine:
IFAIL=1
On entry,NX<1,
orNG<2,
orM<NX,
orN<NX+NG,
orLDX<N,
orLDCVX<NX,
orLDCVM<NG,
or LDE < minNX,NG-1 ,
orNXNG-1 and IWK < N × NX + max5×NX-1+NX+1×NX,N ,
orNX<NG-1 and IWK < N × NX + max5×NX-1+NG-1×NX,N ,
orWEIGHT'U', 'W' or 'V',
orTOL<0.0.
IFAIL=2
On entry,WEIGHT='W' or 'V' and a value of WT<0.0.
IFAIL=3
On entry,a value of ING<1,
ora value of ING>NG.
IFAIL=4
On entry, the number of variables to be included in the analysis as indicated by ISX is not equal to NX.
IFAIL=5
A singular value decomposition has failed to converge. This is an unlikely error exit.
IFAIL=6
A canonical correlation is equal to 1. This will happen if the variables provide an exact indication as to which group every observation is allocated.
IFAIL=7
On entry,less than two groups have nonzero membership, i.e., the effective number of groups is less than 2,
orthe effective number of groups plus the number of variables, NX, is greater than the effective number of observations.
IFAIL=8
The rank of the variables is 0. This will happen if all the variables are constants.

7  Accuracy

As the computation involves the use of orthogonal matrices and a singular value decomposition rather than the traditional computing of a sum of squares matrix and the use of an eigenvalue decomposition, G03ACF should be less affected by ill-conditioned problems.

8  Further Comments

None.

9  Example

This example uses a sample of nine observations, each consisting of three variables plus a group indicator. There are three groups. An unweighted canonical variate analysis is performed and the results printed.

9.1  Program Text

Program Text (g03acfe.f90)

9.2  Program Data

Program Data (g03acfe.d)

9.3  Program Results

Program Results (g03acfe.r)


G03ACF (PDF version)
G03 Chapter Contents
G03 Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2012