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.StatisticsAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic 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
SingleAn array of ranks corresponding to each entry in the input data.
See Also