Uses of Enum
org.apache.commons.math3.stat.descriptive.rank.Percentile.EstimationType
Packages that use Percentile.EstimationType
Package
Description
Summary statistics based on ranks.
-
Uses of Percentile.EstimationType in org.apache.commons.math3.stat.descriptive.rank
Methods in org.apache.commons.math3.stat.descriptive.rank that return Percentile.EstimationTypeModifier and TypeMethodDescriptionPercentile.getEstimationType()Get the estimationtypeused for computation.static Percentile.EstimationTypeReturns the enum constant of this type with the specified name.static Percentile.EstimationType[]Percentile.EstimationType.values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.commons.math3.stat.descriptive.rank with parameters of type Percentile.EstimationTypeModifier and TypeMethodDescriptionMedian.withEstimationType(Percentile.EstimationType newEstimationType) Build a new instance similar to the current one except for theestimation type.Percentile.withEstimationType(Percentile.EstimationType newEstimationType) Build a new instance similar to the current one except for theestimation type.Constructors in org.apache.commons.math3.stat.descriptive.rank with parameters of type Percentile.EstimationTypeModifierConstructorDescriptionprotectedPercentile(double quantile, Percentile.EstimationType estimationType, NaNStrategy nanStrategy, KthSelector kthSelector) Constructs a Percentile with the specific quantile value,Percentile.EstimationType,NaNStrategyandKthSelector.