Numeric Between¶
Check: numeric-between-check
Purpose: Validates that values in numeric columns fall within a defined range. A row fails if any selected column contains a value outside the configured bounds.
Use the inclusive parameter to control boundary behavior:
| Value | Behavior |
|---|---|
[false, false] (default) |
strictly between: min < value < max |
[true, false] |
include lower bound: min <= value < max |
[false, true] |
include upper bound: min < value <= max |
[true, true] |
include both bounds: min <= value <= max |
Typical Use Cases¶
- Validate that percentages, ratios, or scores fall within their expected range (e.g., 0–100).
- Enforce physical or business-defined constraints on numeric measurements.
- Detect outliers or erroneous values that fall outside acceptable thresholds.