Package

com.github.timgent.dataflare.checks

metrics

Permalink

package metrics

Visibility
  1. Public
  2. All

Type Members

  1. 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

    Permalink

    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

  2. case class SingleMetricCheck[MV <: MetricValue](metric: MetricDescriptor { type MetricType = MV }, checkDescription: String)(check: (MV.T) ⇒ RawCheckResult) extends MetricsBasedCheck with SingleDsCheck with Product with Serializable

    Permalink

    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

  1. object SingleMetricCheck extends Serializable

    Permalink

Ungrouped