Rank Tiebreaker Enumeration
Enumerates the possible ways to break a tie when ranking observations.
Definition
Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
public enum RankTiebreaker
Members
Average | 0 | Use the average of the scores of the tied observations. |
Lowest | 1 | Use the lowest score of the tied observations. |
Highest | 2 | Use the highest score of the tied observations. |
Random | 3 | Use a random score from the tied observations. |
Compress | 4 | Treat tied observations as a single observation and give them all the same score. |