Class/Object

quasar.fp.numeric

SampleStats

Related Docs: object SampleStats | package numeric

Permalink

final class SampleStats[A] extends AnyRef

Statistics based on a sample from a population.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SampleStats
  2. AnyRef
  3. 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. def +(b: SampleStats[A])(implicit E: Equal[A], F: Field[A]): SampleStats[A]

    Permalink

    Alias for merge.

  4. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  9. def excessKurtosis(implicit E: Equal[A], F: Field[A]): slamdata.Predef.Option[A]

    Permalink
  10. def finalize(): Unit

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

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

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

    Permalink
    Definition Classes
    Any
  14. def kurtosis(implicit E: Equal[A], F: Field[A]): slamdata.Predef.Option[A]

    Permalink
  15. val m1: A

    Permalink
  16. val m2: A

    Permalink
  17. val m3: A

    Permalink
  18. val m4: A

    Permalink
  19. def mean: A

    Permalink
  20. def merge(b: SampleStats[A])(implicit E: Equal[A], F: Field[A]): SampleStats[A]

    Permalink

    Combine with another SampleStats to produce stats about the union of their observations.

    Combine with another SampleStats to produce stats about the union of their observations.

    Implementation via Chan et al. https://en.wikipedia.org/wiki/Algorithms_for_calculating_variance#Parallel_algorithm

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

    Permalink
    Definition Classes
    AnyRef
  22. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  24. def observe(x: A)(implicit F: Field[A]): SampleStats[A]

    Permalink

    Returns new stats that include the given observation.

    Returns new stats that include the given observation.

    NB: This is equivalent to merge, simplified for the case when one of the stats has exactly one observation.

  25. def populationExcessKurtosis(implicit E: Equal[A], F: Field[A]): slamdata.Predef.Option[A]

    Permalink

    Estimated excess kurtosis of the population sampled.

  26. def populationKurtosis(implicit E: Equal[A], F: Field[A]): slamdata.Predef.Option[A]

    Permalink

    Estimated kurtosis of the population sampled.

  27. def populationSkewness(implicit E: Equal[A], F: Field[A], R: NRoot[A]): slamdata.Predef.Option[A]

    Permalink

    Estimated skewness of the population sampled.

  28. def populationStddev(implicit E: Equal[A], F: Field[A], R: NRoot[A]): slamdata.Predef.Option[A]

    Permalink

    Estimated standard deviation of the population sampled.

  29. def populationVariance(implicit E: Equal[A], F: Field[A]): slamdata.Predef.Option[A]

    Permalink

    Unbiased estimated variance of the population sampled.

  30. val size: A

    Permalink
  31. def skewness(implicit E: Equal[A], F: Field[A], R: NRoot[A]): slamdata.Predef.Option[A]

    Permalink
  32. def stddev(implicit E: Equal[A], F: Field[A], R: NRoot[A]): slamdata.Predef.Option[A]

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  35. def variance(implicit E: Equal[A], F: Field[A]): slamdata.Predef.Option[A]

    Permalink
  36. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped