MVStatistic

class MVStatistic(val names: List<String>)

Collects statistics for each dimension of the presented array.

Constructors

Link copied to clipboard
constructor(numNames: Int)
constructor(names: List<String>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Returns the sample averages for each dimension

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Returns the sample variances for each dimension

Functions

Link copied to clipboard
fun collect(observation: DoubleArray)

Statistics are collected on the dimensions of the supplied array. For example, for each observation0 presented statistics are collected across all presented values of observation0. For each array dimension, there will be a Statistic that summarizes the statistical properties of that dimension.

Link copied to clipboard
fun reset()