Object

com.twitter.algebird

MomentsGroup

Related Doc: package algebird

Permalink

object MomentsGroup extends Group[Moments] with CommutativeGroup[Moments]

A monoid to perform moment calculations.

Linear Supertypes
CommutativeGroup[Moments], CommutativeMonoid[Moments], CommutativeSemigroup[Moments], Group[Moments], AdditiveGroup[Moments], Monoid[Moments], AdditiveMonoid[Moments], Semigroup[Moments], AdditiveSemigroup[Moments], cats.kernel.Group[Moments], cats.kernel.Monoid[Moments], cats.kernel.Semigroup[Moments], Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MomentsGroup
  2. CommutativeGroup
  3. CommutativeMonoid
  4. CommutativeSemigroup
  5. Group
  6. AdditiveGroup
  7. Monoid
  8. AdditiveMonoid
  9. Semigroup
  10. AdditiveSemigroup
  11. Group
  12. Monoid
  13. Semigroup
  14. Serializable
  15. Serializable
  16. AnyRef
  17. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def additive: algebra.Group[Moments]

    Permalink

    These are from algebra.Monoid

    These are from algebra.Monoid

    Definition Classes
    Group → AdditiveGroup → Monoid → AdditiveMonoid → Semigroup → AdditiveSemigroup
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def assertNotZero(v: Moments): Unit

    Permalink
    Definition Classes
    Monoid
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def combine(l: Moments, r: Moments): Moments

    Permalink
    Definition Classes
    Semigroup → Semigroup
  9. def combineAll(t: TraversableOnce[Moments]): Moments

    Permalink
    Definition Classes
    Monoid → Monoid
  10. def combineAllOption(iter: TraversableOnce[Moments]): Option[Moments]

    Permalink
    Definition Classes
    Semigroup → Semigroup
  11. def combineN(a: Moments, n: Int): Moments

    Permalink
    Definition Classes
    Group → Monoid → Semigroup
  12. def empty: Moments

    Permalink
    Definition Classes
    Monoid → Monoid
  13. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  15. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  17. def getCombinedMean(n: Long, an: Double, k: Long, ak: Double): Double

    Permalink

    Given two streams of doubles (n, an) and (k, ak) of form (count, mean), calculates the mean of the combined stream.

    Given two streams of doubles (n, an) and (k, ak) of form (count, mean), calculates the mean of the combined stream.

    Uses a more stable online algorithm which should be suitable for large numbers of records similar to: http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance#Parallel_algorithm

  18. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  19. def inverse(v: Moments): Moments

    Permalink
    Definition Classes
    Group → Group
  20. def isEmpty(a: Moments)(implicit ev: Eq[Moments]): Boolean

    Permalink
    Definition Classes
    Monoid
  21. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  22. def isNonZero(v: Moments): Boolean

    Permalink
    Definition Classes
    Monoid
  23. def isZero(a: Moments)(implicit ev: Eq[Moments]): Boolean

    Permalink
    Definition Classes
    AdditiveMonoid
  24. def minus(x: Moments, y: Moments): Moments

    Permalink
    Definition Classes
    AdditiveGroup
  25. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  26. def negate(a: Moments): Moments

    Permalink
    Definition Classes
    MomentsGroup → AdditiveGroup
  27. def nonZeroOption(v: Moments): Option[Moments]

    Permalink
    Definition Classes
    Monoid
  28. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  29. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  30. def plus(a: Moments, b: Moments): Moments

    Permalink
    Definition Classes
    MomentsGroup → AdditiveSemigroup
  31. def positiveSumN(a: Moments, n: Int): Moments

    Permalink
    Attributes
    protected[this]
    Definition Classes
    AdditiveSemigroup
  32. def remove(l: Moments, r: Moments): Moments

    Permalink
    Definition Classes
    Group → Group
  33. def repeatedCombineN(a: Moments, n: Int): Moments

    Permalink
    Attributes
    protected[this]
    Definition Classes
    Semigroup
  34. def sum(vs: TraversableOnce[Moments]): Moments

    Permalink
    Definition Classes
    Monoid → AdditiveMonoid
  35. def sumN(a: Moments, n: Int): Moments

    Permalink
    Definition Classes
    AdditiveGroup → AdditiveMonoid → AdditiveSemigroup
  36. def sumOption(iter: TraversableOnce[Moments]): Option[Moments]

    Permalink

    Returns an instance of T calculated by summing all instances in iter in one pass.

    Returns an instance of T calculated by summing all instances in iter in one pass. Returns None if iter is empty, else Some[T].

    iter

    instances of T to be combined

    returns

    None if iter is empty, else an option value containing the summed T

    Definition Classes
    Semigroup
    Note

    Override if there is a faster way to compute this sum than iter.reduceLeftOption using plus.

  37. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  38. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  39. def trySum(as: TraversableOnce[Moments]): Option[Moments]

    Permalink
    Definition Classes
    AdditiveMonoid → AdditiveSemigroup
  40. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  41. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. val zero: Moments

    Permalink
    Definition Classes
    MomentsGroup → AdditiveMonoid

Inherited from CommutativeGroup[Moments]

Inherited from CommutativeMonoid[Moments]

Inherited from CommutativeSemigroup[Moments]

Inherited from Group[Moments]

Inherited from AdditiveGroup[Moments]

Inherited from Monoid[Moments]

Inherited from AdditiveMonoid[Moments]

Inherited from Semigroup[Moments]

Inherited from AdditiveSemigroup[Moments]

Inherited from cats.kernel.Group[Moments]

Inherited from cats.kernel.Monoid[Moments]

Inherited from cats.kernel.Semigroup[Moments]

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped