pandera.checks.Check.gt#

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

Ensure values of a series are strictly greater than a minimum value.

New in version 0.4.5 Alias: gt

Parameters
  • min_value – 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 – key-word arguments passed into the Check initializer.

Return type

Check

Returns

Check object