case class BoxPlot[T](mean: Double, median: Double, lowerQuartile: T, upperQuartile: T, lowerWhisker: Double, upperWhisker: Double, outliers: Seq[T])(implicit evidence$1: Numeric[T]) extends Product with Serializable
Container for the results from the boxplot computation.
The whiskers are computed as in the pfgplots package (https://ctan.org/pkg/pgfplots?lang=en).
- T
type of data
- mean
mean of the data
- median
median of the data
- lowerQuartile
upper quartile
- upperQuartile
lower quartile
- lowerWhisker
lower whisker
- upperWhisker
upper whisker
- outliers
collection of outliers
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- BoxPlot
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new BoxPlot(mean: Double, median: Double, lowerQuartile: T, upperQuartile: T, lowerWhisker: Double, upperWhisker: Double, outliers: Seq[T])(implicit arg0: Numeric[T])
- mean
mean of the data
- median
median of the data
- lowerQuartile
upper quartile
- upperQuartile
lower quartile
- lowerWhisker
lower whisker
- upperWhisker
upper whisker
- outliers
collection of outliers
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
- val CSVColumnNames: String
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- 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[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val lowerQuartile: T
- val lowerWhisker: Double
- val mean: Double
- val median: Double
- 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 outliers: Seq[T]
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toCSV: String
- def toString(): String
- Definition Classes
- BoxPlot → AnyRef → Any
- def toTuple: (Double, Double, T, T, Double, Double, Int)
- val upperQuartile: T
- val upperWhisker: Double
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()