uniqTheta関数
uniqTheta関数は、2つのuniqThetaSketchオブジェクトに対して集合演算を行うために使用され、∪ / ∩ / × (和集合/共通部分/差集合)を計算します。結果を含む新しいuniqThetaSketchオブジェクトを返します。
uniqThetaSketchオブジェクトは、-Stateを使用して集約関数uniqThetaによって構築されます。
UniqThetaSketchは近似値の集合を格納するためのデータ構造です。 RoaringBitmapについての詳細は、Theta Sketch Frameworkを参照してください。
uniqThetaUnion
2つのuniqThetaSketchオブジェクトで和集合計算(集合演算 ∪)を行い、その結果を新しいuniqThetaSketchとして返します。
引数
uniqThetaSketch
– uniqThetaSketchオブジェクト。
例
uniqThetaIntersect
2つのuniqThetaSketchオブジェクトで共通部分計算(集合演算 ∩)を行い、その結果を新しいuniqThetaSketchとして返します。
引数
uniqThetaSketch
– uniqThetaSketchオブジェクト。
例
uniqThetaNot
2つのuniqThetaSketchオブジェクトでa_not_b計算(集合演算 ×)を行い、その結果を新しいuniqThetaSketchとして返します。
引数
uniqThetaSketch
– uniqThetaSketchオブジェクト。
例
関連項目