nag_mv_ordinal_multidimscale (g03fcc) (PDF version)
g03 Chapter Contents
g03 Chapter Introduction
NAG Library Manual

NAG Library Function Document

nag_mv_ordinal_multidimscale (g03fcc)

 Contents

    1  Purpose
    7  Accuracy

1  Purpose

nag_mv_ordinal_multidimscale (g03fcc) performs non-metric (ordinal) multidimensional scaling.

2  Specification

#include <nag.h>
#include <nagg03.h>
void  nag_mv_ordinal_multidimscale (Nag_ScaleCriterion type, Integer n, Integer ndim, const double d[], double x[], Integer tdx, double *stress, double dfit[], Nag_E04_Opt *options, NagError *fail)

3  Description

For a set of n  objects, a distance or dissimilarity matrix D  can be calculated such that d ij  is a measure of how ‘far apart’ objects i  and j  are. If p  variables x k  have been recorded for each observation this measure may be based on Euclidean distance, d ij = k=1 p x ki - x kj 2 , or some other calculation such as the number of variables for which x kj x ki . Alternatively, the distances may be the result of a subjective assessment. For a given distance matrix, multidimensional scaling produces a configuration of n  points in a chosen number of dimensions, m , such that the distance between the points in some way best matches the distance matrix. For some distance measures, such as Euclidean distance, the size of distance is meaningful, for other measures of distance all that can be said is that one distance is greater or smaller than another. For the former, metric scaling can be used, see nag_mv_prin_coord_analysis (g03fac), for the latter, a non-metric scaling is more appropriate.
For non-metric multidimensional scaling, the criterion used to measure the closeness of the fitted distance matrix to the observed distance matrix is known as stress . stress  is given by,
i=1 n j=1 i-1 d ^ ij - d ~ ij 2 i=1 n j=1 i-1 d ^ ij 2  
where d ^ ij 2  is the Euclidean squared distance between points i  and j  and d ~ ij  is the fitted distance obtained when d ^ ij  is monotonically regressed on d ij , that is, d ~ ij  is monotonic relative to d ij  and is obtained from d ^ ij  with the smallest number of changes. So stress  is a measure of by how much the set of points preserve the order of the distances in the original distance matrix. Non-metric multidimensional scaling seeks to find the set of points that minimize the stress .
An alternate measure is squared stress , S S T R E S S ,
i=1 n j=1 i-1 d ^ ij 2 - d ~ ij 2 2 i=1 n j=1 i-1 d ^ ij 4  
in which the distances in stress  are replaced by squared distances.
In order to perform a non-metric scaling, an initial configuration of points is required. This can be obtained from principal coordinate analysis, see nag_mv_prin_coord_analysis (g03fac). Given an initial configuration, nag_mv_ordinal_multidimscale (g03fcc) uses the optimization function nag_opt_conj_grad (e04dgc) to find the configuration of points that minimizes stress  or S S T R E S S . The function nag_opt_conj_grad (e04dgc) uses a conjugate gradient algorithm. nag_mv_ordinal_multidimscale (g03fcc) will find an optimum that may only be a local optimum, to be more sure of finding a global optimum several different initial configurations should be used; these can be obtained by randomly perturbing the original initial configuration using functions from the g05 Chapter Introduction.

4  References

Chatfield C and Collins A J (1980) Introduction to Multivariate Analysis Chapman and Hall
Krzanowski W J (1990) Principles of Multivariate Analysis Oxford University Press

5  Arguments

1:     type Nag_ScaleCriterionInput
On entry: indicates whether stress  or S S T R E S S  is to be used as the criterion.
type=Nag_Stress
stress  is used.
type=Nag_SStress
S S T R E S S  is used.
Constraint: type=Nag_Stress or Nag_SStress.
2:     n IntegerInput
On entry: the number of objects in the distance matrix , n .
Constraint: n>ndim .
3:     ndim IntegerInput
On entry: the number of dimensions used to represent the data, m .
Constraint: ndim1 .
4:     d[n×n-1/2] const doubleInput
On entry: the lower triangle of the distance matrix D  stored packed by rows. That is d[ i-1 × i-2 / 2 + j - 1 ]  must contain d ij , for i=2,3,, n and j=1,2,, i - 1 . If d ij  is missing then set d ij < 0 ; For further comments on missing values see Section 9.
5:     x[n×tdx] doubleInput/Output
Note: the i,jth element of the matrix X is stored in x[i-1×tdx+j-1].
On entry: the i th row must contain an initial estimate of the coordinates for the i th point, i = 1 , 2 , , n . One method of computing these is to use nag_mv_prin_coord_analysis (g03fac).
On exit: the i th row contains m  coordinates for the i th point, i = 1 , 2 , , n .
6:     tdx IntegerInput
On entry: the stride separating matrix column elements in the array x.
Constraint: tdxndim .
7:     stress double *Output
On exit: the value of stress  or S S T R E S S  at the final iteration.
8:     dfit[2×n×n-1] doubleOutput
On exit: auxiliary outputs. If type=Nag_Stress, the first n n-1 / 2  elements contain the distances, d ^ ij , for the points returned in x, the second set of n n-1 / 2  contains the distances d ^ ij  ordered by the input distances, d ij , the third set of n n-1 / 2  elements contains the monotonic distances, d ~ ij , ordered by the input distances, d ij  and the final set of n n-1 / 2  elements contains fitted monotonic distances, d ~ ij , for the points in x. The d ~ ij  corresponding to distances which are input as missing are set to zero. If type=Nag_SStress, the results are as above except that the squared distances are returned.
Each distance matrix is stored in lower triangular packed form in the same way as the input matrix D .
9:     options Nag_E04_Opt *Input/Output
On entry/exit: a pointer to a structure of type Nag_E04_Opt whose members are optional arguments for nag_opt_conj_grad (e04dgc). These structure members offer the means of adjusting some of the argument values of the algorithm and on output will supply further details of the results. You are referred to the nag_opt_conj_grad (e04dgc) document for further details.
The default values used by nag_mv_ordinal_multidimscale (g03fcc) when the options argument is set to the NAG defined null pointer, E04_DEFAULT, are as follows:
  • optim_tol=0.00001 ;
  • print_level=Nag_NoPrint;
  • list=Nag_FALSE ;
  • verify_grad=Nag_FALSE ;
  • max_iter = max50,n×ndim .
If a different value is required for any of these four structure members or if other options available in nag_opt_conj_grad (e04dgc) are to be used, then the structure options should be declared and initialized by a call to nag_opt_init (e04xxc) and supplied as an argument to nag_mv_ordinal_multidimscale (g03fcc). In this case, the structure members listed above except for list will have the default values as specified above; list=Nag_TRUE  in this case.
10:   fail NagError *Input/Output
The NAG error argument (see Section 3.6 in the Essential Introduction).

6  Error Indicators and Warnings

NE_2_INT_ARG_LE
On entry, n=value  while ndim=value . These arguments must satisfy n>ndim .
NE_2_INT_ARG_LT
On entry, tdx=value  while ndim=value . These arguments must satisfy tdxndim .
NE_ALLOC_FAIL
Dynamic memory allocation failed.
NE_BAD_PARAM
On entry, argument type had an illegal value.
NE_INT_ARG_LT
On entry, ndim=value.
Constraint: ndim1.
NE_INTERNAL_ERROR
Additional error messages are output if the optimization fails to converge or if the options are set incorrectly, Details of these can be found in the nag_opt_conj_grad (e04dgc) document.
An internal error has occurred in this function. Check the function call and any array sizes. If the call is correct then please contact NAG for assistance.
NE_NEG_OR_ZERO_ARRAY
All elements of array d0.0 .
Constraint: At least one element of d must be positive.

7  Accuracy

After a successful optimization, the relative accuracy of stress  should be approximately ε , as specified by optim_tol.

8  Parallelism and Performance

Not applicable.

9  Further Comments

Missing values in the input distance matrix can be specified by a negative value and providing there are not more than about two thirds of the values missing, the algorithm may still work. However, the function nag_mv_prin_coord_analysis (g03fac) does not allow for missing values so an alternative method of obtaining an initial set of coordinates is required. It may be possible to estimate the missing values with some form of average and then use nag_mv_prin_coord_analysis (g03fac) to give an initial set of coordinates.

10  Example

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

10.1  Program Text

Program Text (g03fcce.c)

10.2  Program Data

Program Data (g03fcce.d)

10.3  Program Results

Program Results (g03fcce.r)


nag_mv_ordinal_multidimscale (g03fcc) (PDF version)
g03 Chapter Contents
g03 Chapter Introduction
NAG Library Manual

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