pandera.api.checks.Check.greater_than#

classmethod Check.greater_than(min_value, **kwargs)[source]#

Ensure values of a data container are strictly greater than a minimum value.

Parameters

min_value (Any) – Lower bound to be exceeded. Must be a type comparable to the dtype of the pandas.Series to be validated (e.g. a numerical type for float or int and a datetime for datetime).

Return type

Check