Uses of Enum
org.hipparchus.stat.ranking.NaNStrategy
Package
Description
Summary statistics based on ranks.
Classes providing hypothesis testing.
Classes providing rank transformations.
-
Uses of NaNStrategy in org.hipparchus.stat.descriptive.rank
Modifier and TypeMethodDescriptionMedian.getNaNStrategy()
Get theNaN Handling
strategy used for computation.Percentile.getNaNStrategy()
Get theNaN Handling
strategy used for computation.Modifier and TypeMethodDescriptionMedian.withNaNStrategy
(NaNStrategy newNaNStrategy) Build a new instance similar to the current one except for theNaN handling
strategy.Percentile.withNaNStrategy
(NaNStrategy newNaNStrategy) Build a new instance similar to the current one except for theNaN handling
strategy.ModifierConstructorDescriptionprotected
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
ModifierConstructorDescriptionMannWhitneyUTest
(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
Modifier and TypeFieldDescriptionstatic final NaNStrategy
NaturalRanking.DEFAULT_NAN_STRATEGY
default NaN strategyModifier and TypeMethodDescriptionNaturalRanking.getNanStrategy()
Return the NaNStrategystatic NaNStrategy
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.ModifierConstructorDescriptionNaturalRanking
(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.