NAG Library Routine Document
G03AAF
1 Purpose
G03AAF performs a principal component analysis on a data matrix; both the principal component loadings and the principal component scores are returned.
2 Specification
SUBROUTINE G03AAF ( |
MATRIX, STD, WEIGHT, N, M, X, LDX, ISX, S, WT, NVAR, E, LDE, P, LDP, V, LDV, WK, IFAIL) |
INTEGER |
N, M, LDX, ISX(M), NVAR, LDE, LDP, LDV, IFAIL |
REAL (KIND=nag_wp) |
X(LDX,M), S(M), WT(*), E(LDE,6), P(LDP,NVAR), V(LDV,NVAR), WK(1) |
CHARACTER(1) |
MATRIX, STD, WEIGHT |
|
3 Description
Let
be an
by
data matrix of
observations on
variables
and let the
by
variance-covariance matrix of
be
. A vector
of length
is found such that:
The variable
is known as the first principal component and gives the linear combination of the variables that gives the maximum variation. A second principal component,
, is found such that:
This gives the linear combination of variables that is orthogonal to the first principal component that gives the maximum variation. Further principal components are derived in a similar way.
The vectors
, are the eigenvectors of the matrix
and associated with each eigenvector is the eigenvalue,
. The value of
gives the proportion of variation explained by the
th principal component. Alternatively, the
's can be considered as the right singular vectors in a singular value decomposition with singular values
of the data matrix centred about its mean and scaled by
,
. This latter approach is used in G03AAF, with
where
is a diagonal matrix with elements
,
is the
by
matrix with columns
and
is an
by
matrix with
, which gives the principal component scores.
Principal component analysis is often used to reduce the dimension of a dataset, replacing a large number of correlated variables with a smaller number of orthogonal variables that still contain most of the information in the original dataset.
The choice of the number of dimensions required is usually based on the amount of variation accounted for by the leading principal components. If
principal components are selected, then a test of the equality of the remaining
eigenvalues is
which has, asymptotically, a
-distribution with
degrees of freedom.
Equality of the remaining eigenvalues indicates that if any more principal components are to be considered then they all should be considered.
Instead of the variance-covariance matrix the correlation matrix, the sums of squares and cross-products matrix or a standardized sums of squares and cross-products matrix may be used. In the last case is replaced by for a diagonal matrix with positive elements. If the correlation matrix is used, the approximation for the statistic given above is not valid.
The principal component scores, , are the values of the principal component variables for the observations. These can be standardized so that the variance of these scores for each principal component is or equal to the corresponding eigenvalue.
Weights can be used with the analysis, in which case the matrix is first centred about the weighted means then each row is scaled by an amount , where is the weight for the th observation.
4 References
Chatfield C and Collins A J (1980) Introduction to Multivariate Analysis Chapman and Hall
Cooley W C and Lohnes P R (1971) Multivariate Data Analysis 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
Morrison D F (1967) Multivariate Statistical Methods McGraw–Hill
5 Parameters
- 1: MATRIX – CHARACTER(1)Input
On entry: indicates for which type of matrix the principal component analysis is to be carried out.
- It is for the correlation matrix.
- It is for a standardized matrix, with standardizations given by S.
- It is for the sums of squares and cross-products matrix.
- It is for the variance-covariance matrix.
Constraint:
, , or .
- 2: STD – CHARACTER(1)Input
On entry: indicates if the principal component scores are to be standardized.
- The principal component scores are standardized so that , i.e., .
- The principal component scores are unstandardized, i.e., .
- The principal component scores are standardized so that they have unit variance.
- The principal component scores are standardized so that they have variance equal to the corresponding eigenvalue.
Constraint:
, , or .
- 3: WEIGHT – CHARACTER(1)Input
On entry: indicates if weights are to be used.
- No weights are used.
- Weights are used and must be supplied in WT.
Constraint:
or .
- 4: N – INTEGERInput
On entry: , the number of observations.
Constraint:
.
- 5: M – INTEGERInput
On entry: , the number of variables in the data matrix.
Constraint:
.
- 6: X(LDX,M) – REAL (KIND=nag_wp) arrayInput
On entry: must contain the th observation for the th variable, for and .
- 7: LDX – INTEGERInput
On entry: the first dimension of the array
X as declared in the (sub)program from which G03AAF is called.
Constraint:
.
- 8: ISX(M) – INTEGER arrayInput
On entry:
indicates whether or not the
th variable is to be included in the analysis.
If
, the variable contained in the
th column of
X is included in the principal component analysis, for
.
Constraint:
for
NVAR values of
.
- 9: S(M) – REAL (KIND=nag_wp) arrayInput/Output
On entry: the standardizations to be used, if any.
If
, the first
elements of
S must contain the standardization coefficients, the diagonal elements of
.
Constraint:
if , , for .
On exit: if
,
S is unchanged on exit.
If
,
S contains the variances of the selected variables.
contains the variance of the variable in the
th column of
X if
.
If
or
,
S is not referenced.
- 10: WT() – REAL (KIND=nag_wp) arrayInput
-
Note: the dimension of the array
WT
must be at least
if
, and at least
otherwise.
On entry: if
, the first
elements of
WT must contain the weights to be used in the principal component analysis.
If , the th observation is not included in the analysis. The effective number of observations is the sum of the weights.
If
,
WT is not referenced and the effective number of observations is
.
Constraints:
- , for ;
- the sum of weights .
- 11: NVAR – INTEGERInput
On entry: , the number of variables in the principal component analysis.
Constraint:
.
- 12: E(LDE,) – REAL (KIND=nag_wp) arrayOutput
On exit: the statistics of the principal component analysis.
- The eigenvalues associated with the
th principal component, , for .
- The proportion of variation explained by the
th principal component, for .
- The cumulative proportion of variation explained by the first
th principal components, for .
- The statistics, for .
- The degrees of freedom for the statistics, for .
If ,
contains significance level for the statistic, for .
If , is returned as zero.
- 13: LDE – INTEGERInput
On entry: the first dimension of the array
E as declared in the (sub)program from which G03AAF is called.
Constraint:
.
- 14: P(LDP,NVAR) – REAL (KIND=nag_wp) arrayOutput
On exit: the first
NVAR columns of
P contain the principal component loadings,
. The
th column of
P contains the
NVAR coefficients for the
th principal component.
- 15: LDP – INTEGERInput
On entry: the first dimension of the array
P as declared in the (sub)program from which G03AAF is called.
Constraint:
.
- 16: V(LDV,NVAR) – REAL (KIND=nag_wp) arrayOutput
On exit: the first
NVAR columns of
V contain the principal component scores. The
th column of
V contains the
N scores for the
th principal component.
If , any rows for which is zero will be set to zero.
- 17: LDV – INTEGERInput
On entry: the first dimension of the array
V as declared in the (sub)program from which G03AAF is called.
Constraint:
.
- 18: WK() – REAL (KIND=nag_wp) arrayInput
This parameter is no longer accessed by G03AAF. Workspace is provided internally by dynamic allocation instead.
- 19: IFAIL – INTEGERInput/Output
-
On entry:
IFAIL must be set to
,
. 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
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is
.
When the value is used it is essential to test the value of IFAIL on exit.
On exit:
unless the routine detects an error or a warning has been flagged (see
Section 6).
6 Error Indicators and Warnings
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
X04AAF).
Errors or warnings detected by the routine:
On entry, | , |
or | , |
or | , |
or | , |
or | , |
or | , |
or | , |
or | , |
or | , |
or | , , or , |
or | , , or , |
or | or . |
On entry, | and a value of . |
On entry, | there are not NVAR values of , |
or | and the effective number of observations is less than . |
On entry, | for some , when and . |
The singular value decomposition has failed to converge. This is an unlikely error exit.
All eigenvalues/singular values are zero. This will be caused by all the variables being constant.
7 Accuracy
As G03AAF uses a singular value decomposition of the data matrix, it will be less affected by ill-conditioned problems than traditional methods using the eigenvalue decomposition of the variance-covariance matrix.
None.
9 Example
A dataset is taken from
Cooley and Lohnes (1971), it consists of ten observations on three variables. The unweighted principal components based on the variance-covariance matrix are computed and the principal component scores requested. The principal component scores are standardized so that they have variance equal to the corresponding eigenvalue.
9.1 Program Text
Program Text (g03aafe.f90)
9.2 Program Data
Program Data (g03aafe.d)
9.3 Program Results
Program Results (g03aafe.r)