|
PrincipalComponentMethod Enumeration
|
Determines the method to be used in a statistical analysis.
Namespace:
Accord.Statistics.Analysis
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public enum PrincipalComponentMethod
Public Enumeration PrincipalComponentMethod
Members
| Member name | Value | Description |
---|
| Center | 0 |
By choosing Center, the method will be run on the mean-centered data.
|
| Standardize | 1 |
By choosing Standardize, the method will be run on the mean-centered and
standardized data.
|
| CorrelationMatrix | 2 |
By choosing CorrelationMatrix, the method will interpret the given data
as a correlation matrix.
|
| CovarianceMatrix | 3 |
By choosing CovarianceMatrix, the method will interpret the given data
as a correlation matrix.
|
| KernelMatrix | 4 |
By choosing KernelMatrix, the method will interpret the given data
as a Kernel (Gram) matrix.
|
See Also