Uses of Class
org.hipparchus.util.KthSelector
-
Packages that use KthSelector Package Description org.hipparchus.stat.descriptive.rank Summary statistics based on ranks. -
-
Uses of KthSelector in org.hipparchus.stat.descriptive.rank
Methods in org.hipparchus.stat.descriptive.rank that return KthSelector Modifier and Type Method Description KthSelector
Median. getKthSelector()
Get thekthSelector
used for computation.KthSelector
Percentile. getKthSelector()
Get thekthSelector
used for computation.Methods in org.hipparchus.stat.descriptive.rank with parameters of type KthSelector Modifier and Type Method Description protected double
Percentile.EstimationType. estimate(double[] work, int[] pivotsHeap, double pos, int length, KthSelector selector)
Estimation based on Kth selection.double
Percentile.EstimationType. evaluate(double[] work, double p, KthSelector selector)
Evaluate method to compute the percentile for a given bounded array.protected double
Percentile.EstimationType. evaluate(double[] work, int[] pivotsHeap, double p, KthSelector selector)
Median
Median. withKthSelector(KthSelector newKthSelector)
Build a new instance similar to the current one except for thekthSelector
instance specifically set.Percentile
Percentile. withKthSelector(KthSelector newKthSelector)
Build a new instance similar to the current one except for thekthSelector
instance specifically set.Constructors in org.hipparchus.stat.descriptive.rank with parameters of type KthSelector Constructor Description Percentile(double quantile, Percentile.EstimationType estimationType, NaNStrategy nanStrategy, KthSelector kthSelector)
Constructs a Percentile with the specific quantile value,Percentile.EstimationType
,NaNStrategy
andKthSelector
.
-