Packages

case class NonEmpty[K, V](n: V, sum: Double, mean: Double, stddev: Double, median: Double, mad: Double, samplesOpt: Option[Samples[K, V]], sortedSamplesOpt: Option[Samples[K, V]], percentiles: Seq[(Rational, Double)])(implicit evidence$27: Numeric[K], evidence$28: Integral[V]) extends Stats[K, V] with Product with Serializable

Stores some computed statistics about a dataset of Numeric elements.

n

number of elements in the dataset.

mad

median absolute deviation (from the median).

samplesOpt

"sample" elements; the start and end of the data.

sortedSamplesOpt

"sample" elements; the least and greatest elements. If the dataset is already sorted, meaning this would be equivalent to samplesOpt, it is omitted.

percentiles

selected percentiles of the dataset.

Linear Supertypes
Serializable, Serializable, Product, Equals, Stats[K, V], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NonEmpty
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Stats
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new NonEmpty(n: V, sum: Double, mean: Double, stddev: Double, median: Double, mad: Double, samplesOpt: Option[Samples[K, V]], sortedSamplesOpt: Option[Samples[K, V]], percentiles: Seq[(Rational, Double)])(implicit arg0: Numeric[K], arg1: Integral[V])

    n

    number of elements in the dataset.

    mad

    median absolute deviation (from the median).

    samplesOpt

    "sample" elements; the start and end of the data.

    sortedSamplesOpt

    "sample" elements; the least and greatest elements. If the dataset is already sorted, meaning this would be equivalent to samplesOpt, it is omitted.

    percentiles

    selected percentiles of the dataset.

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[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  8. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  9. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  10. val mad: Double
  11. val mean: Double
  12. val median: Double
  13. val n: V
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. val percentiles: Seq[(Rational, Double)]
  18. val samplesOpt: Option[Samples[K, V]]
  19. val sortedSamplesOpt: Option[Samples[K, V]]
  20. val stddev: Double
  21. val sum: Double
  22. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  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
    @native() @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Stats[K, V]

Inherited from AnyRef

Inherited from Any

Ungrouped