math::PCA - Package for Principal Component Analysis
The PCA package provides a means to perform principal components analysis in Tcl, using an object-oriented technique as facilitated by TclOO. It actually defines a single public method, ::math::PCA::createPCA, which constructs an object based on the data that are passed to perform the actual analysis.
The methods of the PCA objects that are created with this command allow one to examine the principal components, to approximate (new) observations using all or a selected number of components only and to examine the properties of the components and the statistics of the approximations.
The package has been modelled after the PCA example provided by the original linear algebra package by Ed Hume.
The math::PCA package provides one public command:
Create a new object, based on the data that are passed via the data argument. The principal components may be based on either correlations or covariances. All observations will be normalised according to the mean and standard deviation of the original data.
- A list of observations (see the example below).
- A list of key-value pairs defining the options. Currently there is only one key: -covariances. This indicates if covariances are to be used (if the value is 1) or instead correlations (value is 0). The default is to use correlations.
The PCA object that is created has the following methods:
Set the number of components to be used in the analysis (the number of retained components). Returns the number of components, also if no argument is given.
- The number of components to be retained
- Select the number of components based on the minimum proportion of variation that is retained by them. Should be a value between 0 and 1.
Return the eigenvectors as a list of lists.
- By default only the retained components are returned. If all eigenvectors are required, use the option -all.
Return the eigenvalues as a list of lists.
- By default only the eigenvalues of the retained components are returned. If all eigenvalues are required, use the option -all.
Return the proportions for all components, that is, the amount of variations that each components can explain.
Return an approximation of the observation based on the retained components
- The values for the observation.
Return an approximation of the original data, using the retained components. It is a convenience method that works on the complete set of original data.
Return the scores per retained component for the given observation.
- The values for the observation.
Return the distance between the given observation and its approximation. (Note: this distance is based on the normalised vectors.)
- The values for the observation.
Return the Q statistic, basically the square of the distance, for the given observation.
- The values for the observation.
- If the observation is part of the original data, you may want to use the corrected Q statistic. This is achieved with the option "-original".
TODO: NIST example
This document, and the package it describes, will undoubtedly contain bugs and other problems. Please report such in the category PCA of the Tcllib Trackers. Please also report any ideas for enhancements you may have for either package and/or documentation.
When proposing code changes, please provide unified diffs, i.e the output of diff -u.
Note further that attachments are strongly preferred over inlined patches. Attachments can be made by going to the Edit form of the ticket immediately after its creation, and then using the left-most button in the secondary navigation bar.
PCA, math, statistics, tcl
Mathematics