Click or drag to resize

PrincipalComponentAnalysis Class

Represents a principal component analysis.
Inheritance Hierarchy
SystemObject
  Meta.Numerics.StatisticsPrincipalComponentAnalysis

Namespace:  Meta.Numerics.Statistics
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public sealed class PrincipalComponentAnalysis

The PrincipalComponentAnalysis type exposes the following members.

Properties
  NameDescription
Public propertyComponents
Gets a collection of the principal components.
Public propertyCount
Gets the number of data entries.
Public propertyDimension
Gets the number of components.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodMinimumDimension
Gets the minimum number of principal components that must be included to explain the given fraction of the total variance.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodTransformedSample
Represents the original data in terms of principal components.
Top
Remarks

Principal component analysis (PCA) is a form of factor analysis or dimension reduction. It attempts to identify a small number of factors which allow most of the variation in the data to be explained by giving the vales for the factor dimensions.

Mathematically, PCA constructs an alternative set of orthonormal basis vectors for a multivariate data set. These basis vectors, called the principal components, are ordered by the total variance explained by each.

Suppose, for example, you measure the value of different possessions possessions for a sample of people: home value, car value, furniture value, etc. You might expect that much of the variation in these numbers can be explained by one underlying factor, which you might call "richness". If this is true, then a PCA analysis will show that the most principal component explains a very large faction of the total variance, and the other less principal components will explain only small fractions of the total variance.

Note that PCA is not invariant with respect to the re-scaling of individual variables.

Note that PCA is an exploratory technique, not a hypothesis test.

To carry out a principal component analysis, call the PrincipalComponentAnalysis method.

See Also