HistogramData

Companion:
class
trait Product
trait Mirror
class Object
trait Matchable
class Any

Type members

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Inherited from:
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Inherited from:
Mirror

Value members

Concrete methods

def apply(data: Seq[Double], binBoundaries: Seq[(Double, Double)]): HistogramData
def apply(data: Seq[Double], step: Double, min: Double, max: Option[Double]): HistogramData
def apply(data: Seq[Double], step: Double): HistogramData
def apply(data: Seq[Double], breaks: Int): HistogramData
def bin(data: Seq[Double], binning: Seq[Double], boundaries: Seq[(Double, Double)]): Seq[(Double, Double, Seq[Double])]
def fromStratifiedData(data: Seq[Seq[Double]], step: Double, relativePerBin: Boolean): Seq[HistogramData]
def getStep(data: Seq[Double], breaks: Int): Double
def makeBoundaries(step: Double, min: Double, max: Double): Seq[(Double, Double)]
def makeBoundariesFromPercentiles(data: Seq[Double], qs: Seq[Double]): Seq[(Double, Double)]