gapt.utils.Statistic
See theStatistic companion object
case class Statistic[T](n: Int, min: T, max: T, avg: BigDecimal, median: BigDecimal, sigma_square: Option[BigDecimal]) extends Serializable
Holds the statistic parameters of a collection of elements of type a numerical type T
Type parameters
- T
-
the type of elements the collection contains
Value parameters
- avg
-
the average element
- max
-
the maximal element
- median
-
the median element
- min
-
the minimal element
- n
-
the size of the data
- sigma_square
-
the square of the standard deviation (only exists for n >= 2)
Attributes
- Companion
- object
- Source
- Statistics.scala
- Graph
-
- Supertypes
Members list
In this article