Uses of Enum
org.apache.commons.math3.stat.ranking.NaNStrategy
Packages that use NaNStrategy
Package
Description
Summary statistics based on ranks.
Classes providing hypothesis testing.
Classes providing rank transformations.
-
Uses of NaNStrategy in org.apache.commons.math3.stat.descriptive.rank
Methods in org.apache.commons.math3.stat.descriptive.rank that return NaNStrategyModifier and TypeMethodDescriptionPercentile.getNaNStrategy()Get theNaN Handlingstrategy used for computation.Methods in org.apache.commons.math3.stat.descriptive.rank with parameters of type NaNStrategyModifier and TypeMethodDescriptionMedian.withNaNStrategy(NaNStrategy newNaNStrategy) Build a new instance similar to the current one except for theNaN handlingstrategy.Percentile.withNaNStrategy(NaNStrategy newNaNStrategy) Build a new instance similar to the current one except for theNaN handlingstrategy.Constructors in org.apache.commons.math3.stat.descriptive.rank with parameters of type NaNStrategyModifierConstructorDescriptionprotectedPercentile(double quantile, Percentile.EstimationType estimationType, NaNStrategy nanStrategy, KthSelector kthSelector) Constructs a Percentile with the specific quantile value,Percentile.EstimationType,NaNStrategyandKthSelector. -
Uses of NaNStrategy in org.apache.commons.math3.stat.inference
Constructors in org.apache.commons.math3.stat.inference with parameters of type NaNStrategyModifierConstructorDescriptionMannWhitneyUTest(NaNStrategy nanStrategy, TiesStrategy tiesStrategy) Create a test instance using the given strategies for NaN's and ties.WilcoxonSignedRankTest(NaNStrategy nanStrategy, TiesStrategy tiesStrategy) Create a test instance using the given strategies for NaN's and ties. -
Uses of NaNStrategy in org.apache.commons.math3.stat.ranking
Fields in org.apache.commons.math3.stat.ranking declared as NaNStrategyModifier and TypeFieldDescriptionstatic final NaNStrategyNaturalRanking.DEFAULT_NAN_STRATEGYdefault NaN strategyMethods in org.apache.commons.math3.stat.ranking that return NaNStrategyModifier and TypeMethodDescriptionNaturalRanking.getNanStrategy()Return the NaNStrategystatic NaNStrategyReturns 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.math3.stat.ranking with parameters of type NaNStrategyModifierConstructorDescriptionNaturalRanking(NaNStrategy nanStrategy) Create a NaturalRanking with the given NaNStrategy.NaturalRanking(NaNStrategy nanStrategy, RandomGenerator randomGenerator) Create a NaturalRanking with the given NaNStrategy, TiesStrategy.RANDOM and the given source of random data.NaturalRanking(NaNStrategy nanStrategy, TiesStrategy tiesStrategy) Create a NaturalRanking with the given NaNStrategy and TiesStrategy.