g03aaf performs a principal component analysis on a data matrix; both the principal component loadings and the principal component scores are returned.
The routine may be called by the names g03aaf or nagf_mv_prin_comp.
3Description
Let be an data matrix of observations on variables and let the 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 matrix with columns and is an 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.
4References
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
5Arguments
1: – 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: – 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.
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: – IntegerInput
On entry: , the number of variables in the principal component analysis.
Constraint:
.
12: – 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: – IntegerInput
On entry: the first dimension of the array e as declared in the (sub)program from which g03aaf is called.
Constraint:
.
14: – 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: – IntegerInput
On entry: the first dimension of the array p as declared in the (sub)program from which g03aaf is called.
Constraint:
.
16: – 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: – IntegerInput
On entry: the first dimension of the array v as declared in the (sub)program from which g03aaf is called.
Constraint:
.
18: – Real (Kind=nag_wp) arrayInput
This argument is no longer accessed by g03aaf. Workspace is provided internally by dynamic allocation instead.
19: – IntegerInput/Output
On entry: ifail must be set to , or to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of means that an error message is printed while a value of means that it is not.
If halting is not appropriate, the value or is recommended. If message printing is undesirable, then the value is recommended. Otherwise, the value is recommended. When the value or 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).
6Error 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, and .
Constraint: .
On entry, and .
Constraint: .
On entry, and .
Constraint: .
On entry, and .
Constraint: .
On entry, .
Constraint: .
On entry, .
Constraint: , , or .
On entry, .
Constraint: .
On entry, and .
Constraint: .
On entry, .
Constraint: .
On entry, and .
Constraint: .
On entry, .
Constraint: , , or .
On entry, .
Constraint: or .
On entry, and .
Constraint: .
Number of selected variables effective number of observations.
On entry, and values of .
Constraint: exactly nvar elements of .
On entry, and .
Constraint: .
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.
An unexpected error has been triggered by this routine. Please
contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.
7Accuracy
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.
8Parallelism and Performance
Background information to multithreading can be found in the Multithreading documentation.
g03aaf 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.
9Further Comments
None.
10Example
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.