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