Click or drag to resize
Accord.NET (logo)

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
Members
  Member nameValueDescription
Center0 By choosing Center, the method will be run on the mean-centered data.
Standardize1 By choosing Standardize, the method will be run on the mean-centered and standardized data.
CorrelationMatrix2 By choosing CorrelationMatrix, the method will interpret the given data as a correlation matrix.
CovarianceMatrix3 By choosing CovarianceMatrix, the method will interpret the given data as a correlation matrix.
KernelMatrix4 By choosing KernelMatrix, the method will interpret the given data as a Kernel (Gram) matrix.
See Also