Click or drag to resize

ArrayStatisticsRanksInplace(Single, 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 float[] RanksInplace(
	float[] data,
	RankDefinition definition = RankDefinition.Average
)

Parameters

data  Single
The input data array. Will be modified if the method performs in-place sorting.
definition  RankDefinition  (Optional)
Definition of ranking to apply.

Return Value

Single
An array of ranks corresponding to each entry in the input data.
See Also