Module gwy :: Class PercentileInterpolationType
[hide private]
[frames] | no frames]

Class PercentileInterpolationType

source code

Type of interpolation for percentile calculation.

The interpolations are used when the percentile does not correspond exactly to a rank.


Since: 2.50

Note: All the enumerated values are defined at the module level, not the class level. The are just groupped by class here for easier orientation.

Class Variables [hide private]
  PERCENTILE_INTERPOLATION_HIGHER
Round the rank up to an integer.
  PERCENTILE_INTERPOLATION_LINEAR
Linear interpolation of the two nearest values.
  PERCENTILE_INTERPOLATION_LOWER
Round the rank down to an integer.
  PERCENTILE_INTERPOLATION_MIDPOINT
Average of the two nearest values.
  PERCENTILE_INTERPOLATION_NEAREST
Round the rank to nearest integer.