Uses of Class
org.hipparchus.stat.ranking.NaNStrategy
-
Packages that use NaNStrategy Package Description org.hipparchus.stat.descriptive.rank Summary statistics based on ranks.org.hipparchus.stat.inference Classes providing hypothesis testing.org.hipparchus.stat.ranking Classes providing rank transformations. -
-
Uses of NaNStrategy in org.hipparchus.stat.descriptive.rank
Methods in org.hipparchus.stat.descriptive.rank that return NaNStrategy Modifier and Type Method Description NaNStrategy
Median. getNaNStrategy()
Get theNaN Handling
strategy used for computation.NaNStrategy
Percentile. getNaNStrategy()
Get theNaN Handling
strategy used for computation.Methods in org.hipparchus.stat.descriptive.rank with parameters of type NaNStrategy Modifier and Type Method Description Median
Median. withNaNStrategy(NaNStrategy newNaNStrategy)
Build a new instance similar to the current one except for theNaN handling
strategy.Percentile
Percentile. withNaNStrategy(NaNStrategy newNaNStrategy)
Build a new instance similar to the current one except for theNaN handling
strategy.Constructors in org.hipparchus.stat.descriptive.rank with parameters of type NaNStrategy Constructor Description Percentile(double quantile, Percentile.EstimationType estimationType, NaNStrategy nanStrategy, KthSelector kthSelector)
Constructs a Percentile with the specific quantile value,Percentile.EstimationType
,NaNStrategy
andKthSelector
. -
Uses of NaNStrategy in org.hipparchus.stat.inference
Constructors in org.hipparchus.stat.inference with parameters of type NaNStrategy Constructor Description MannWhitneyUTest(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.hipparchus.stat.ranking
Fields in org.hipparchus.stat.ranking declared as NaNStrategy Modifier and Type Field Description static NaNStrategy
NaturalRanking. DEFAULT_NAN_STRATEGY
default NaN strategyMethods in org.hipparchus.stat.ranking that return NaNStrategy Modifier and Type Method Description NaNStrategy
NaturalRanking. getNanStrategy()
Return the NaNStrategystatic NaNStrategy
NaNStrategy. valueOf(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.hipparchus.stat.ranking with parameters of type NaNStrategy Constructor Description NaturalRanking(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.
-