Click or drag to resize

ArrayStatisticsRanksInplace(Double, RankDefinition) Method

Evaluates the rank of each entry of the unsorted data array. The rank definition can be specified to be compatible with an existing system. WARNING: Works in-place and can thus cause the data array to be reordered.

Namespace: Altaxo.Calc.Statistics
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static double[] RanksInplace(
	double[] data,
	RankDefinition definition = RankDefinition.Average
)

Parameters

data  Double
The input data array. Will be modified if performed in-place.
definition  RankDefinition  (Optional)
Definition of ranking to apply.

Return Value

Double
An array containing the rank of each entry.
See Also