Click or drag to resize
DissimilaritiesScalingOption Property
The scaling option used if the L2Norm, L1Norm, or InfinityNorm distance methods are specified. See DistanceMethod.

Namespace: Imsl.Stat
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public virtual DissimilaritiesScaling ScalingOption { get; set; }

Property Value

Type: DissimilaritiesScaling
A Dissimilarities.Scaling containing the scaling option.
Remarks
By default, ScalingOption = Scaling.None.

ScalingOptionMethod
NoneNo scaling is performed.
StdDevIf Row = false, scale each column by the standard deviation of the column.
If Row = true, scale each row by the standard deviation of the row.
RangeIf Row = false, scale each column by the range of the column.
If Row = true, scale each row by the range of the row.

See Also