Packages

case class CMSInstance[K](countsTable: CountsTable[K], totalCount: Long, params: CMSParams[K]) extends CMS[K] with Product with Serializable

The general Count-Min sketch structure, used for holding any number of elements.

Linear Supertypes
Product, Equals, CMS[K], CMSCounting[K, CMS], Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CMSInstance
  2. Product
  3. Equals
  4. CMS
  5. CMSCounting
  6. Serializable
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new CMSInstance(countsTable: CountsTable[K], totalCount: Long, params: CMSParams[K])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def +(item: K, count: Long): CMSInstance[K]

    Counts the item count times and returns the result as a new sketch.

    Counts the item count times and returns the result as a new sketch.

    Definition Classes
    CMSInstanceCMSCounting
  4. def +(item: K): CMS[K]

    Counts the item and returns the result as a new sketch.

    Counts the item and returns the result as a new sketch.

    Definition Classes
    CMSCounting
  5. def ++(other: CMS[K]): CMS[K]

    Returns a new sketch that is the combination of this sketch and the other sketch.

    Returns a new sketch that is the combination of this sketch and the other sketch.

    Definition Classes
    CMSInstanceCMSCounting
  6. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  9. val countsTable: CountsTable[K]
  10. val delta: Double

    Returns the bound on the probability that a query estimate does NOT lie within some small interval (an interval that depends on eps) around the truth.

    Returns the bound on the probability that a query estimate does NOT lie within some small interval (an interval that depends on eps) around the truth.

    Definition Classes
    CMSCMSCounting
  11. def depth: Int

    Number of hash functions (also: number of rows in the counting table).

    Number of hash functions (also: number of rows in the counting table). This number is derived from delta.

    Definition Classes
    CMSCounting
  12. val eps: Double

    Returns the one-sided error bound on the error of each point query, i.e.

    Returns the one-sided error bound on the error of each point query, i.e. frequency estimate.

    Definition Classes
    CMSCMSCounting
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def f1: Long

    The first frequency moment is the total number of elements in the stream.

    The first frequency moment is the total number of elements in the stream.

    Definition Classes
    CMSCounting
  15. def f2: Approximate[Long]

    The second frequency moment is \sum a_i^2, where a_i is the count of the i-th element.

    The second frequency moment is \sum a_i^2, where a_i is the count of the i-th element.

    Definition Classes
    CMSCMSCounting
  16. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  17. def frequency(item: K): Approximate[Long]

    Returns an estimate of the total number of times this item has been seen in the stream so far.

    Returns an estimate of the total number of times this item has been seen in the stream so far. This estimate is an upper bound.

    It is always true that estimatedFrequency >= trueFrequency. With probability p >= 1 - delta, it also holds that estimatedFrequency <= trueFrequency + eps * totalCount.

    Definition Classes
    CMSInstanceCMSCounting
  18. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. def innerProduct(other: CMS[K]): Approximate[Long]

    Let X be a CMS, and let count_X[j, k] denote the value in X's 2-dimensional count table at row j and column k.

    Let X be a CMS, and let count_X[j, k] denote the value in X's 2-dimensional count table at row j and column k. Then the Count-Min sketch estimate of the inner product between A and B is the minimum inner product between their rows: estimatedInnerProduct = min_j (\sum_k count_A[j, k] * count_B[j, k]|)

    Definition Classes
    CMSInstanceCMSCounting
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. def maxExactCount: Int

    Number of exact counts a sparse CMS wants to keep.

    Number of exact counts a sparse CMS wants to keep. This number is derived from maxExactCountOpt.

    Definition Classes
    CMSCounting
  22. val maxExactCountOpt: Option[Int]

    An Option parameter about how many exact counts a sparse CMS wants to keep

    An Option parameter about how many exact counts a sparse CMS wants to keep

    Definition Classes
    CMSCMSCounting
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  26. val params: CMSParams[K]
    Definition Classes
    CMSInstanceCMS
  27. def productElementNames: Iterator[String]
    Definition Classes
    Product
  28. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  29. val totalCount: Long

    Total number of elements counted (i.e.

    Total number of elements counted (i.e. seen in the data stream) so far.

    Definition Classes
    CMSInstanceCMSCounting
  30. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  31. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  33. def width: Int

    Number of counters per hash function (also: number of columns in the counting table).

    Number of counters per hash function (also: number of columns in the counting table). This number is derived from eps.

    Definition Classes
    CMSCounting

Inherited from Product

Inherited from Equals

Inherited from CMS[K]

Inherited from CMSCounting[K, CMS]

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped