scalax.cli

Stats

object Stats

Provides statistics related functions.

meansd

The used algorithm is described https://en.wikipedia.org/wiki/Algorithms_for_calculating_variance#Online_algorithm here.

import scalax.cli.Stats

// builds mean and standard deviation
val numbers = Iterator(1.0, 2.0, 3.0)
val (n, mean, sd) = Stats.meansd(numbers)
Source
stats.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Stats
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

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

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

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

    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  14. def meansd(numbers: Iterator[Double]): (Long, Double, Double)

    Returns amount of numbers read, their mean and standard deviation.

  15. def meansd(sources: List[Source])(handler: (Throwable) ⇒ Unit): (Long, Double, Double)

    Returns amount of numbers read, their mean and standard deviation.

    Returns amount of numbers read, their mean and standard deviation.

    Note

    sources are not closed

  16. def meansdBinned(numbers: Iterator[Double], binWidth: Long): Seq[(Long, Long, Long, Double, Double)]

    Returns amount of numbers read, their mean and standard deviation, grouped by bins like in a histogram.

  17. def meansdBinned(sources: List[Source], binWidth: Long)(handler: (Throwable) ⇒ Unit): Seq[(Long, Long, Long, Double, Double)]

    Returns amount of numbers read, their mean and standard deviation, grouped by bins like in a histogram.

    Returns amount of numbers read, their mean and standard deviation, grouped by bins like in a histogram.

    Note

    sources are not closed

  18. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  19. final def notify(): Unit

    Definition Classes
    AnyRef
  20. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  21. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  22. def toString(): String

    Definition Classes
    AnyRef → Any
  23. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped