pandera.core.checks.Check.gt#

classmethod Check.gt(cls, 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).

  • kwargs (Dict[str, Any]) – arguments forwarded to the Check constructor.

Return type

Check