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

NAG Library Routine Document

G03FAF

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

G03FAF performs a principal coordinate analysis also known as classical metric scaling.

2  Specification

SUBROUTINE G03FAF ( ROOTS, N, D, NDIM, X, LDX, EVAL, WK, IWK, IFAIL)
INTEGER  N, NDIM, LDX, IWK(5*N), IFAIL
REAL (KIND=nag_wp)  D(N*(N-1)/2), X(LDX,NDIM), EVAL(N), WK(N*(N+17)/2-1)
CHARACTER(1)  ROOTS

3  Description

For a set of n objects a distance matrix D can be calculated such that dij is a measure of how ‘far apart’ are objects i and j (see G03EAF for example). Principal coordinate analysis or metric scaling starts with a distance matrix and finds points X in Euclidean space such that those points have the same distance matrix. The aim is to find a small number of dimensions, kn-1, that provide an adequate representation of the distances.
The principal coordinates of the points are computed from the eigenvectors of the matrix E where e ij = -1 / 2 d ij 2 - d i. 2 - d .j 2 + d .. 2  with di.2 denoting the average of dij2 over the suffix j, etc.. The eigenvectors are then scaled by multiplying by the square root of the value of the corresponding eigenvalue.
Provided that the ordered eigenvalues, λi, of the matrix E are all positive, i=1 k λi / i=1 n-1 λi  shows how well the data is represented in k dimensions. The eigenvalues will be non-negative if E is positive semidefinite. This will be true provided dij satisfies the inequality: dij dik + djk  for all i,j,k. If this is not the case the size of the negative eigenvalue reflects the amount of deviation from this condition and the results should be treated cautiously in the presence of large negative eigenvalues. See Krzanowski (1990) for further discussion. G03FAF provides the option for all eigenvalues to be computed so that the smallest eigenvalues can be checked.

4  References

Chatfield C and Collins A J (1980) Introduction to Multivariate Analysis Chapman and Hall
Gower J C (1966) Some distance properties of latent root and vector methods used in multivariate analysis Biometrika 53 325–338
Krzanowski W J (1990) Principles of Multivariate Analysis Oxford University Press

5  Parameters

1:     ROOTS – CHARACTER(1)Input
On entry: indicates if all the eigenvalues are to be computed or just the NDIM largest.
ROOTS='A'
All the eigenvalues are computed.
ROOTS='L'
Only the largest NDIM eigenvalues are computed.
Constraint: ROOTS='A' or 'L'.
2:     N – INTEGERInput
On entry: n, the number of objects in the distance matrix.
Constraint: N>NDIM.
3:     DN×N-1/2 – REAL (KIND=nag_wp) arrayInput
On entry: the lower triangle of the distance matrix D stored packed by rows. That is D i-1 × i-2 /2+j  must contain dij for i=2,3,,n;j=1,2,,i-1.
Constraint: Di0.0, for i=1,2,,nn-1/2.
4:     NDIM – INTEGERInput
On entry: k, the number of dimensions used to represent the data.
Constraint: NDIM1.
5:     XLDXNDIM – REAL (KIND=nag_wp) arrayOutput
On exit: the ith row contains k coordinates for the ith point, i=1,2,,n.
6:     LDX – INTEGERInput
On entry: the first dimension of the array X as declared in the (sub)program from which G03FAF is called.
Constraint: LDXN.
7:     EVALN – REAL (KIND=nag_wp) arrayOutput
On exit: if ROOTS='A', EVAL contains the n scaled eigenvalues of the matrix E.
If ROOTS='L', EVAL contains the largest k scaled eigenvalues of the matrix E.
In both cases the eigenvalues are divided by the sum of the eigenvalues (that is, the trace of E).
8:     WKN×N+17/2-1 – REAL (KIND=nag_wp) arrayWorkspace
9:     IWK5×N – INTEGER arrayWorkspace
10:   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,NDIM<1,
orN<NDIM,
orROOTS'A' or 'L',
orLDX<N.
IFAIL=2
On entry,Di<0.0 for some i, i=1,2,,nn-1/2,
orall elements of D=0.0.
IFAIL=3
There are less than NDIM eigenvalues greater than zero. Try a smaller number of dimensions (NDIM) or use non-metric scaling (G03FCF).
IFAIL=4
The computation of the eigenvalues or eigenvectors has failed. Seek expert help.
IFAIL=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 3.8 in the Essential Introduction for further information.
IFAIL=-399
Your licence key may have expired or may not have been installed correctly.
See Section 3.7 in the Essential Introduction for further information.
IFAIL=-999
Dynamic memory allocation failed.
See Section 3.6 in the Essential Introduction for further information.

7  Accuracy

G03FAF uses F08JFF (DSTERF) or F08JJF (DSTEBZ) to compute the eigenvalues and F08JKF (DSTEIN) to compute the eigenvectors. These routines should be consulted for a discussion of the accuracy of the computations involved.

8  Parallelism and Performance

G03FAF is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
G03FAF makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the Users' Note for your implementation for any additional implementation-specific information.

9  Further Comments

Alternative, non-metric, methods of scaling are provided by G03FCF.
The relationship between principal coordinates and principal components, see G03FCF, is discussed in Krzanowski (1990) and Gower (1966).

10  Example

The data, given by Krzanowski (1990), are dissimilarities between water vole populations in Europe. The first two principal coordinates are computed.

10.1  Program Text

Program Text (g03fafe.f90)

10.2  Program Data

Program Data (g03fafe.d)

10.3  Program Results

Program Results (g03fafe.r)

GnuplotProduced by GNUPLOT 4.6 patchlevel 3 −0.4 −0.3 −0.2 −0.1 0 0.1 0.2 0.3 −0.6 −0.5 −0.4 −0.3 −0.2 −0.1 0 0.1 0.2 0.3 Second Principal Coordinate First Principal Coordinate Example Program Plot of Observation Number by the First Two Principal Coordinates gnuplot_plot_1 1 2 3 4 5 6 7 8 9 10 11 12 13 14

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

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