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
Fields in org.apache.commons.math3.stat.descriptive.rank declared as NaNStrategyModifier and TypeFieldDescriptionprivate final NaNStrategyPercentile.nanStrategyNaN Handling of the input as defined byNaNStrategyMethods 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 NaNStrategyModifierConstructorDescriptionprivateMedian(Percentile.EstimationType estimationType, NaNStrategy nanStrategy, KthSelector kthSelector) Constructs a Median with the specificPercentile.EstimationType,NaNStrategyand.invalid reference
PivotingStrategyprotectedPercentile(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
Subclasses with type arguments of type NaNStrategy in org.apache.commons.math3.stat.rankingModifier and TypeClassDescriptionenumStrategies for handling NaN values in rank transformations.Fields in org.apache.commons.math3.stat.ranking declared as NaNStrategyModifier and TypeFieldDescriptionstatic final NaNStrategyNaturalRanking.DEFAULT_NAN_STRATEGYdefault NaN strategyprivate final NaNStrategyNaturalRanking.nanStrategyNaN strategy - defaults to NaNs maximalMethods 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.