Uses of Class
org.apache.commons.statistics.ranking.NaNStrategy
-
Packages that use NaNStrategy Package Description org.apache.commons.statistics.ranking Classes providing rank transformations. -
-
Uses of NaNStrategy in org.apache.commons.statistics.ranking
Fields in org.apache.commons.statistics.ranking declared as NaNStrategy Modifier and Type Field Description private static NaNStrategy
NaturalRanking. DEFAULT_NAN_STRATEGY
Default NaN strategy.private NaNStrategy
NaturalRanking. nanStrategy
NaN strategy.Methods in org.apache.commons.statistics.ranking that return NaNStrategy Modifier and Type Method Description NaNStrategy
NaturalRanking. getNanStrategy()
Return theNaNStrategy
.static NaNStrategy
NaNStrategy. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static NaNStrategy[]
NaNStrategy. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in org.apache.commons.statistics.ranking with parameters of type NaNStrategy Constructor Description NaturalRanking(NaNStrategy nanStrategy)
Creates an instance with the specified @nanStrategy
andTiesStrategy.AVERAGE
.NaturalRanking(NaNStrategy nanStrategy, java.util.function.IntUnaryOperator randomIntFunction)
Creates an instance with the specified @nanStrategy
,TiesStrategy.RANDOM
and the given the source of random index data.NaturalRanking(NaNStrategy nanStrategy, TiesStrategy tiesStrategy)
Creates an instance with the specified @nanStrategy
and the specified @tiesStrategy
.NaturalRanking(NaNStrategy nanStrategy, TiesStrategy tiesStrategy, java.util.function.IntUnaryOperator randomIntFunction)
-