Scaling Method Enumeration
Enumerates the ways to scale the columns in a Principal Component Analysis.
Definition
Namespace: Extreme.Statistics.Multivariate
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public enum ScalingMethod
Members
None | 0 | No scaling is performed. |
UnitVariance | 1 | The columns are scaled to have unit variance. |
VectorNorm | 2 | The columns are scaled to have unit norm. |
Pareto | 3 | The columns are scaled by the square root of the standard deviation. |
Range | 4 | The columns are scaled to have unit range (difference between largest and smallest value). |
Level | 5 | The columns are scaled by the column mean. |