src/main/java/org/apache/datasketches/hive/quantiles/GetCdfFromDoublesSketchUDF.java [31:39]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@Description(
  name = "GetCDF",
  value = "_FUNC_(sketch, [inclusive,] split points...)",
  extended = "Returns an approximation to the Cumulative Distribution Function (CDF)"
  + " from a sketch given a set of split points (values)."
  + " The optional boolean parameter 'inclusive' (default: true) determines whether the rank of an"
  + " item includes its own weight. If true, such items are included in the interval to the left of"
  + " the split point; otherwise they are included in the interval to the right of the split point."
  + " Split points are an array of M unique, monotonically increasing values"
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/datasketches/hive/quantiles/GetCdfFromStringsSketchUDF.java [33:41]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@Description(
    name = "GetCDF",
    value = "_FUNC_(sketch, [inclusive,] split points...)",
    extended = "Returns an approximation to the Cumulative Distribution Function (CDF)"
    + " from a sketch given a set of split points (values)."
    + " The optional boolean parameter 'inclusive' (default: true) determines whether the rank of an"
    + " item includes its own weight. If true, such items are included in the interval to the left of"
    + " the split point; otherwise they are included in the interval to the right of the split point."
      + " Split points are an array of M unique, monotonically increasing values"
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



