org.scalameter.reporting

Type members

Classlikes

case class DsvReporter[T](delimiter: Char)(`evidence$1`: Numeric[T]) extends Reporter[T]

Produces a DSV file with results that can be used by other visualization tools.

Produces a DSV file with results that can be used by other visualization tools.

Companion
object
object DsvReporter
Companion
class
case class HtmlReporter[T](embedDsv: Boolean)(`evidence$1`: Numeric[T]) extends Reporter[T]
Companion
object
object HtmlReporter
Companion
class
case class PGFPlotsReporter[T](scale: Double, height: String, xLabelShift: (String, String), yLabelShift: (String, String), ybar: String, barWidthPt: Int, errorBars: Boolean, plotColors: Seq[String], referenceCurve: String, legend: Boolean, cutoffs: Set[String])(`evidence$1`: Fractional[T]) extends Reporter[T]

Produces a pgfplots-based tex file that can be embedded into a Latex document.

Produces a pgfplots-based tex file that can be embedded into a Latex document.

case class RegressionReporter[T](test: Tester, historian: Historian)(`evidence$1`: Numeric[T]) extends Reporter[T]
Companion
object
Companion
class
case class ValidationReporter[T]() extends Reporter[T]

Validates every measurement using the reports.validation.predicate key.

Validates every measurement using the reports.validation.predicate key.

This key stores the predicate function that does the validation.

Deprecated classlikes

@deprecated("Please use RegressionReporter instead.", "0.16")
case class LoggingReporter[T]() extends Reporter[T]

Simply logs the measurement data to the standard output.

Simply logs the measurement data to the standard output.

Deprecated