Packages

class StatCounter extends Serializable

A class for tracking the statistics of a set of numbers (count, mean and variance) in a numerically robust way. Includes support for merging two StatCounters. Based on Welford and Chan's algorithms for running variance.

Source
StatCounter.scala
Linear Supertypes
Serializable, AnyRef, Any

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StatCounter
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1.  new StatCounter()

    Initialize the StatCounter with no values.

  2.  new StatCounter(values: IterableOnce[Double])

    Initialize the StatCounter with the given values.

Value Members

  1.  final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2.  final def ##: Int
    Definition Classes
    AnyRef → Any
  3.  final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4.  final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5.  def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  6.  def copy(): StatCounter

    Clone this StatCounter

  7.  def count: Long
  8.  final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9.  def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10.  final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  11.  def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  12.  final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13.  def max: Double
  14.  def mean: Double
  15.  def merge(other: StatCounter): StatCounter

    Merge another StatCounter into this one, adding up the internal statistics.

  16.  def merge(values: IterableOnce[Double]): StatCounter

    Add multiple values into this StatCounter, updating the internal statistics.

  17.  def merge(value: Double): StatCounter

    Add a value into this StatCounter, updating the internal statistics.

  18.  def min: Double
  19.  final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20.  final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  21.  final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  22.  def popStdev: Double

    Return the population standard deviation of the values.

    Return the population standard deviation of the values.

    Annotations
    @Since("2.1.0")
  23.  def popVariance: Double

    Return the population variance of the values.

    Return the population variance of the values.

    Annotations
    @Since("2.1.0")
  24.  def sampleStdev: Double

    Return the sample standard deviation of the values, which corrects for bias in estimating the variance by dividing by N-1 instead of N.

  25.  def sampleVariance: Double

    Return the sample variance, which corrects for bias in estimating the variance by dividing by N-1 instead of N.

  26.  def stdev: Double

    Return the population standard deviation of the values.

  27.  def sum: Double
  28.  final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  29.  def toString(): String
    Definition Classes
    StatCounter → AnyRef → Any
  30.  def variance: Double

    Return the population variance of the values.

  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.  final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1.  def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped