MetricColumn

data class MetricColumn(val label: String, val metric: Metric?, val format: String = "%.4f") : ResultColumn

A result column that displays a Metric value with a specified format.

Constructors

Link copied to clipboard
constructor(label: String, metric: Metric?, format: String = "%.4f")

Properties

Link copied to clipboard

the printf-style format string for the value

Link copied to clipboard
open override val label: String

the column header label

Link copied to clipboard

the metric to display (or null)