com.twitter.algebird

statistics

package statistics

Visibility
  1. Public
  2. All

Type Members

  1. case class GaussianDistribution(mean: Double, sigma2: Double) extends Product with Serializable

  2. class StatisticsGroup[T] extends StatisticsMonoid[T] with Group[T]

  3. class StatisticsMonoid[T] extends StatisticsSemigroup[T] with Monoid[T]

  4. class StatisticsRing[T] extends StatisticsGroup[T] with Ring[T]

  5. class StatisticsSemigroup[T] extends Semigroup[T]

    collect statistics about the calls to the wrapped Semigroup

Value Members

  1. object GaussianDistribution extends Serializable

  2. object GaussianDistributionMonoid extends Monoid[GaussianDistribution]

    This monoid stems from the fact that if X and Y are independent random variables that are normally distributed, then their sum is also normally distributed, with its new mean equal to the sum of two means and variance equal to the sum of two variances.

Ungrouped