org.saddle

stats

package stats

Visibility
  1. Public
  2. All

Type Members

  1. class DoubleExpandingStats extends VecExpandingStats[Double]

  2. class DoubleStats extends VecStats[Double]

  3. class FrameStats[RX, CX, T] extends AnyRef

    Statistical methods made available to operate on columns of a Frame via enrichment.

    Statistical methods made available to operate on columns of a Frame via enrichment.

    RX

    Type of the row index elements

    CX

    Type of the column index elements

    T

    Type of the elements of the frame

  4. class IntExpandingStats extends VecExpandingStats[Int]

  5. class IntStats extends VecStats[Int]

  6. class LongExpandingStats extends VecExpandingStats[Long]

  7. class LongStats extends VecStats[Long]

  8. class Mediator extends AnyRef

    Mediator is an auxiliary class for O(N log k) rolling median.

    Mediator is an auxiliary class for O(N log k) rolling median. It is inspired by AShelly's C99 implementation, which is (c) 2011 ashelly.myopenid.com and licensed under the MIT license: http://www.opensource.org/licenses/mit-license

    Reference: http://stackoverflow.com/questions/5527437/rolling-median-in-c-turlach-implementation

  9. sealed trait PctMethod extends AnyRef

    Trait which specifies what percentile method to use

  10. sealed trait RankTie extends AnyRef

    Trait which specifies how to break a rank tie

  11. class RollingCount[A] extends (Vec[A]) ⇒ Int

  12. class RollingMean[A] extends (Vec[A]) ⇒ Double

  13. class RollingMedian[A] extends AnyRef

  14. class RollingSum[A] extends (Vec[A]) ⇒ A

  15. class SeriesExpandingStats[X, T] extends AnyRef

    Expanding statistical methods made available on numeric Series objects via enrichment.

    Expanding statistical methods made available on numeric Series objects via enrichment. These methods scan over the Series and compute values over a specified historical window.

  16. class SeriesRollingStats[X, T] extends AnyRef

    Rolling statistical methods made available on numeric Series objects via enrichment.

    Rolling statistical methods made available on numeric Series objects via enrichment. These methods scan over the Series and compute cumulative values.

  17. trait VecExpandingStats[A] extends AnyRef

    Expanding statistical methods made available on numeric Vec objects via enrichment.

    Expanding statistical methods made available on numeric Vec objects via enrichment. These methods scan over the Vec and compute cumulative values.

  18. class VecRollingStats[A] extends AnyRef

    Rolling statistical methods made available on numeric Vec objects via enrichment.

    Rolling statistical methods made available on numeric Vec objects via enrichment. These methods scan over the Vec and compute values over a specified historical window.

  19. trait VecStats[A] extends AnyRef

    Statistical methods made available on numeric Vec objects via enrichment.

Value Members

  1. object PctMethod

  2. object RankTie

  3. object SeriesExpandingStats

  4. object SeriesRollingStats

Ungrouped