package reporting
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- reporting
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- case class DsvReporter[T](delimiter: Char)(implicit evidence$1: Numeric[T]) extends Reporter[T] with Product with Serializable
Produces a DSV file with results that can be used by other visualization tools.
- case class HtmlReporter[T](embedDsv: Boolean = true)(implicit evidence$1: Numeric[T]) extends Reporter[T] with Product with Serializable
- case class PGFPlotsReporter[T](scale: Double = 0.78, height: String = "5.0cm", xLabelShift: (String, String) = ("12", "-10"), yLabelShift: (String, String) = ("-8", "-12"), ybar: String = "0.1pt", barWidthPt: Int = 6, errorBars: Boolean = true, plotColors: Seq[String] = Seq(
"fill={rgb:red,1;green,4;blue,5},",
"""fill={rgb:red,1;green,3;blue,1},
postaction={
pattern color=white,
pattern=north east lines,
},""",
"""fill={rgb:red,5;green,1;blue,1},
postaction={
pattern color=white,
pattern=north west lines,
},""",
"""fill={rgb:red,5;green,1;blue,3},
postaction={
pattern color=white,
pattern=crosshatch,
},""",
"fill=lightgray,",
"""fill=white,
postaction={
pattern color={rgb:red,1;green,4;blue,5},
pattern=north west lines,
},"""
), referenceCurve: String = "default", legend: Boolean = true, cutoffs: Set[String] = Set())(implicit evidence$1: Fractional[T]) extends Reporter[T] with Product with SerializableProduces a pgfplots-based tex file that can be embedded into a Latex document.
- case class RegressionReporter[T](test: Tester, historian: Historian)(implicit evidence$1: Numeric[T]) extends Reporter[T] with Product with Serializable
- case class ValidationReporter[T]() extends Reporter[T] with Product with Serializable
Validates every measurement using the
reports.validation.predicatekey.Validates every measurement using the
reports.validation.predicatekey.This key stores the predicate function that does the validation.
Deprecated Type Members
- case class LoggingReporter[T]() extends Reporter[T] with Product with Serializable
Simply logs the measurement data to the standard output.
Simply logs the measurement data to the standard output.
- Annotations
- @deprecated
- Deprecated
(Since version 0.16) Please use RegressionReporter instead.
Value Members
- object DsvReporter extends Serializable
- object HtmlReporter extends Serializable
- object RegressionReporter extends Serializable