QuantileInterpolation
Deprecated
Use QuantileMethod instead.
Replace with
import org.oremif.kstats.descriptive.QuantileMethod
QuantileMethodControls how values between two data points are interpolated when computing quantiles and percentiles.
Entries
Linear interpolation between bracketing data points (maps to QuantileMethod.LINEAR).
Lower of the two bracketing data points (maps to QuantileMethod.LOWER).
Higher of the two bracketing data points (maps to QuantileMethod.HIGHER).
Nearest data point, ties toward higher (maps to QuantileMethod.NEAREST).
Average of the two bracketing data points (maps to QuantileMethod.MIDPOINT).
Properties
Functions
Converts this interpolation mode to the equivalent QuantileMethod.
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
Returns an array containing the constants of this enum type, in the order they're declared.