pandera.backends.narwhals.builtin_checks.greater_than¶
- pandera.backends.narwhals.builtin_checks.greater_than(col_expr, min_value)[source]¶
Ensure values of a column are strictly greater than a minimum value.
- Parameters:
col_expr (
Expr) – Narwhals column expression to check.min_value (
Any) – Lower bound to be exceeded. Must be a type comparable to the dtype of the series datatype.
- Return type:
Expr