src/main/java/org/apache/datasketches/hive/quantiles/GetPmfFromDoublesSketchUDF.java [31:39]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@Description(
  name = "GetPMF",
  value = "_FUNC_(sketch, [inclusive,] split points...)",
  extended = "Returns an approximation to the Probability Mass Function (PMF)"
  + " 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/GetPmfFromStringsSketchUDF.java [33:41]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@Description(
    name = "GetPMF",
    value = "_FUNC_(sketch, [inclusive,] split points...)",
    extended = "Returns an approximation to the Probability Mass Function (PMF)"
    + " 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"
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



