Numeric Min¶
Check: numeric-min-check
Purpose: Validates that values in numeric columns are not below a defined minimum. A row fails if any selected column contains a value less than min_value.
Use the inclusive parameter to control boundary behavior:
inclusive: false(default) —value > min_valueinclusive: true—value >= min_value
Typical Use Cases¶
- Ensure monetary amounts, quantities, or measurements are non-negative.
- Enforce minimum threshold requirements for KPIs or scoring metrics.
- Detect corrupted or invalid numeric values below the physically meaningful range.