src/main/java/org/apache/datasketches/hive/quantiles/GetQuantilesFromDoublesSketchUDF.java [34:43]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  + " list of fractions or a number of evenly spaced fractions."
  + " The fractions represent normalized ranks, and must be from 0 to 1 inclusive."
  + " For example, a fraction of 0.5 corresponds to 50th percentile,"
  + " which is the median value of the distribution (the number separating the higher"
  + " half of the probability distribution from the lower half)."
  + " The number of evenly spaced fractions must be a positive integer greater than 0."
  + " A value of 1 will return the min value (normalized rank of 0.0)."
  + " A value of 2 will return the min and the max value (ranks 0.0 amd 1.0)."
  + " A value of 3 will return the min, the median and the max value (ranks 0.0, 0.5, and 1.0), etc.")
@SuppressWarnings("deprecation")
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/datasketches/hive/quantiles/GetQuantilesFromStringsSketchUDF.java [37:46]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    + " list of fractions or a number of evenly spaced fractions."
    + " The fractions represent normalized ranks, and must be from 0 to 1 inclusive."
    + " For example, a fraction of 0.5 corresponds to 50th percentile,"
    + " which is the median value of the distribution (the number separating the higher"
    + " half of the probability distribution from the lower half)."
    + " The number of evenly spaced fractions must be a positive integer greater than 0."
    + " A value of 1 will return the min value (normalized rank of 0.0)."
    + " A value of 2 will return the min and the max value (ranks 0.0 amd 1.0)."
    + " A value of 3 will return the min, the median and the max value (ranks 0.0, 0.5, and 1.0), etc.")
@SuppressWarnings("deprecation")
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



