QuantityStatistics

data class QuantityStatistics(val dataSource: DataSource?, val variable: StatisticsVariable, val quantity: String, val unit: String, val min: Double, val max: Double, val avg: Double, val stdDeviation: Double)

A structure for holding

  • data source ref

  • statistics variable metadata

  • min/max/avg/stddev values

Constructors

Link copied to clipboard
constructor(dataSource: DataSource? = null, variable: StatisticsVariable, runs: List<Double>, factor: Double? = null, summary: StatisticsHelper = StatisticsHelper(runs).scale(factor))
constructor(dataSource: DataSource?, variable: StatisticsVariable, quantity: String, unit: String, min: Double, max: Double, avg: Double, stdDeviation: Double)

Properties

Link copied to clipboard
val avg: Double
Link copied to clipboard
Link copied to clipboard
val max: Double
Link copied to clipboard
val min: Double
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
open override fun toString(): String