Uses of Class
org.apache.datasketches.quantilescommon.GenericPartitionBoundaries
-
Packages that use GenericPartitionBoundaries Package Description org.apache.datasketches.kll This package is for the implementations of the sketch algorithm developed by Zohar Karnin, Kevin Lang, and Edo Liberty that is commonly referred to as the "KLL" sketch after the authors' last names.org.apache.datasketches.partitions org.apache.datasketches.quantiles The quantiles package contains stochastic streaming algorithms that enable single-pass analysis of the distribution of a stream of quantiles.org.apache.datasketches.quantilescommon This package contains common tools and methods for the quantiles, kll and req packages. -
-
Uses of GenericPartitionBoundaries in org.apache.datasketches.kll
Methods in org.apache.datasketches.kll that return GenericPartitionBoundaries Modifier and Type Method Description GenericPartitionBoundaries<T>
KllItemsSketch. getPartitionBoundariesFromNumParts(int numEquallySizedParts, QuantileSearchCriteria searchCrit)
GenericPartitionBoundaries<T>
KllItemsSketch. getPartitionBoundariesFromPartSize(long nominalPartSizeItems, QuantileSearchCriteria searchCrit)
-
Uses of GenericPartitionBoundaries in org.apache.datasketches.partitions
Fields in org.apache.datasketches.partitions declared as GenericPartitionBoundaries Modifier and Type Field Description GenericPartitionBoundaries<T>
Partitioner.StackElement. gpb
A reference to the relevant GenericPartitionBoundaries classConstructors in org.apache.datasketches.partitions with parameters of type GenericPartitionBoundaries Constructor Description StackElement(GenericPartitionBoundaries<T> gpb, int part, String levelPartId)
Constructs this StackElement -
Uses of GenericPartitionBoundaries in org.apache.datasketches.quantiles
Methods in org.apache.datasketches.quantiles that return GenericPartitionBoundaries Modifier and Type Method Description GenericPartitionBoundaries<T>
ItemsSketch. getPartitionBoundariesFromNumParts(int numEquallySizedParts, QuantileSearchCriteria searchCrit)
GenericPartitionBoundaries<T>
ItemsSketch. getPartitionBoundariesFromPartSize(long nominalPartSizeItems, QuantileSearchCriteria searchCrit)
-
Uses of GenericPartitionBoundaries in org.apache.datasketches.quantilescommon
Methods in org.apache.datasketches.quantilescommon that return GenericPartitionBoundaries Modifier and Type Method Description GenericPartitionBoundaries<T>
ItemsSketchSortedView. getPartitionBoundariesFromNumParts(int numEquallySizedParts, QuantileSearchCriteria searchCrit)
default GenericPartitionBoundaries<T>
PartitioningFeature. getPartitionBoundariesFromNumParts(int numEquallySizedParts)
This method returns an instance ofGenericPartitionBoundaries
which provides sufficient information for the user to create the given number of equally sized partitions, where "equally sized" refers to an approximately equal number of items per partition.GenericPartitionBoundaries<T>
PartitioningFeature. getPartitionBoundariesFromNumParts(int numEquallySizedParts, QuantileSearchCriteria searchCrit)
This method returns an instance ofGenericPartitionBoundaries
which provides sufficient information for the user to create the given number of equally sized partitions, where "equally sized" refers to an approximately equal number of items per partition.GenericPartitionBoundaries<T>
ItemsSketchSortedView. getPartitionBoundariesFromPartSize(long nominalPartitionSize, QuantileSearchCriteria searchCrit)
default GenericPartitionBoundaries<T>
PartitioningFeature. getPartitionBoundariesFromPartSize(long nominalPartSizeItems)
This method returns an instance ofGenericPartitionBoundaries
which provides sufficient information for the user to create the given number of equally sized partitions, where "equally sized" refers to an approximately equal number of items per partition.GenericPartitionBoundaries<T>
PartitioningFeature. getPartitionBoundariesFromPartSize(long nominalPartSizeItems, QuantileSearchCriteria searchCrit)
This method returns an instance ofGenericPartitionBoundaries
which provides sufficient information for the user to create the given number of equally sized partitions, where "equally sized" refers to an approximately equal number of items per partition.
-