AllOk | A boolean criteria that selects rows where every boolean classifier passes (True). |
AnyFailed | A boolean criteria that selects rows where at least one boolean classifier fails (False). |
BoolCriteria | Abstract base for criteria over boolean classifier verdicts. |
CategoryCriteria | Abstract base for criteria over a categorizer's bin assignments. |
Criteria | Selects rows for a Filter, Select or Fail operator. |
CriteriaOperator | An operator that uses a criteria to select records. |
Enrich | An operator that appends each classifier's verdict column to the target table. |
Fail | An operator that fails (aborts) the current transaction when the rows selected by criteria reach threshold. |
Filter | An operator that removes the rows selected by criteria from the target table. |
InBins | A category criteria that selects rows whose bin is one of the given bins. |
NotInBins | A category criteria that selects rows whose bin is not among the given bins. |
Operator | Abstract base class for all data quality operators. |
PercentThreshold | A Fail threshold expressed as a percentage of the table's rows. |
RowCountThreshold | A Fail threshold expressed as an absolute number of rows. |
Select | An operator that copies the rows selected by criteria to another table, leaving the target table unchanged. |
Summary | An operator that writes a data quality summary (one row per classifier: verdict tallies, or bin counts for a categorizer) to a table. |
TagOperator | An operator that is scoped to classifiers by tag. |
Threshold | Abstract base class for the thresholds used by the Fail operator. |