Uses of Interface
org.apache.datasketches.tuple.SummarySetOperations
Packages that use SummarySetOperations
Package
Description
The tuple package contains a number of sketches based on the same
fundamental algorithms of the Theta Sketch Framework and extend these
concepts for whole new families of sketches.
This package is for a generic implementation of the Tuple sketch for single Double value.
This package is for a generic implementation of the Tuple sketch for single Integer value.
This package is for a generic implementation of the Tuple sketch for single String value.
-
Uses of SummarySetOperations in org.apache.datasketches.tuple
Methods in org.apache.datasketches.tuple with parameters of type SummarySetOperationsModifier and TypeMethodDescriptionstatic <S extends Summary>
booleanJaccardSimilarity.dissimilarityTest(TupleSketch<S> measured, ThetaSketch expected, S summary, SummarySetOperations<S> summarySetOps, double threshold) Tests dissimilarity of a measured TupleSketch against an expected ThetaSketch.static <S extends Summary>
booleanJaccardSimilarity.dissimilarityTest(TupleSketch<S> measured, TupleSketch<S> expected, SummarySetOperations<S> summarySetOps, double threshold) Tests dissimilarity of a measured TupleSketch against an expected TupleSketch.static <S extends Summary>
booleanJaccardSimilarity.exactlyEqual(TupleSketch<S> sketchA, ThetaSketch sketchB, S summary, SummarySetOperations<S> summarySetOps) Returns true if the two given sketches have exactly the same hash values and the same theta values.static <S extends Summary>
booleanJaccardSimilarity.exactlyEqual(TupleSketch<S> sketchA, TupleSketch<S> sketchB, SummarySetOperations<S> summarySetOps) Returns true if the two given sketches have exactly the same hash values and the same theta values.static <S extends Summary>
double[]JaccardSimilarity.jaccard(TupleSketch<S> sketchA, ThetaSketch sketchB, S summary, SummarySetOperations<S> summarySetOps) Computes the Jaccard similarity index with upper and lower bounds.static <S extends Summary>
double[]JaccardSimilarity.jaccard(TupleSketch<S> sketchA, TupleSketch<S> sketchB, SummarySetOperations<S> summarySetOps) Computes the Jaccard similarity index with upper and lower bounds.static <S extends Summary>
booleanJaccardSimilarity.similarityTest(TupleSketch<S> measured, ThetaSketch expected, S summary, SummarySetOperations<S> summarySetOps, double threshold) Tests similarity of a measured TupleSketch against an expected ThetaSketch.static <S extends Summary>
booleanJaccardSimilarity.similarityTest(TupleSketch<S> measured, TupleSketch<S> expected, SummarySetOperations<S> summarySetOps, double threshold) Tests similarity of a measured TupleSketch against an expected TupleSketch.Constructors in org.apache.datasketches.tuple with parameters of type SummarySetOperationsModifierConstructorDescriptionTupleIntersection(SummarySetOperations<S> summarySetOps) Creates new TupleIntersection instance with instructions on how to process two summaries that intersect.TupleUnion(int nomEntries, SummarySetOperations<S> summarySetOps) Creates new TupleUnion instance.TupleUnion(SummarySetOperations<S> summarySetOps) Creates new TupleUnion instance with instructions on how to process two summaries that overlap. -
Uses of SummarySetOperations in org.apache.datasketches.tuple.adouble
Classes in org.apache.datasketches.tuple.adouble that implement SummarySetOperationsModifier and TypeClassDescriptionfinal classMethods for defining how unions and intersections of two objects of type DoubleSummary are performed. -
Uses of SummarySetOperations in org.apache.datasketches.tuple.aninteger
Classes in org.apache.datasketches.tuple.aninteger that implement SummarySetOperationsModifier and TypeClassDescriptionclassMethods for defining how unions and intersections of two objects of type IntegerSummary are performed. -
Uses of SummarySetOperations in org.apache.datasketches.tuple.strings
Classes in org.apache.datasketches.tuple.strings that implement SummarySetOperationsModifier and TypeClassDescriptionclassImplements SummarySetOperations<ArrayOfStringsSummary>