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
Ordering
- Alphabetic
- By Inheritance
Inherited
- NonEmpty
- Serializable
- Serializable
- Product
- Equals
- Stats
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
-
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
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val mad: Double
- val mean: Double
- val median: Double
- val n: V
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- val percentiles: Seq[(Rational, Double)]
- val samplesOpt: Option[Samples[K, V]]
- val sortedSamplesOpt: Option[Samples[K, V]]
- val stddev: Double
- val sum: Double
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )