package metrics
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
-
final
case class
DualMetricCheck[MV <: MetricValue](dsMetric: MetricDescriptor { type MetricType = MV }, dsToCompareMetric: MetricDescriptor { type MetricType = MV }, checkDescription: String, metricComparator: MetricComparator[MV]) extends MetricsBasedCheck with DualDsQCCheck with Product with Serializable
A check based on a metric for one dataset compared to a metric on another dataset
A check based on a metric for one dataset compared to a metric on another dataset
- dsMetric
- the metric to be used on dataset a
- dsToCompareMetric
- the metric to be used on dataset b
- checkDescription
- description of the check
- metricComparator
- comparison function for the metrics which determines if the check passes
-
case class
SingleMetricCheck[MV <: MetricValue](metric: MetricDescriptor { type MetricType = MV }, checkDescription: String)(check: (MV.T) ⇒ RawCheckResult) extends MetricsBasedCheck with SingleDsCheck with Product with Serializable
A check based on a single metric
A check based on a single metric
- MV
- the type of the MetricValue that will be calculated in order to complete this check
- metric
- describes the metric the check will be done on
- checkDescription
- the user friendly description for this check
- check
- the check to be done
Value Members
- object SingleMetricCheck extends Serializable