pandera.checks.Check.ge#

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

Ensure all values are greater or equal a certain value.

New in version 0.4.5 Alias: ge

Parameters
  • min_value – Allowed minimum value for values of a series. Must be a type comparable to the dtype of the pandas.Series to be validated.

  • kwargs – key-word arguments passed into the Check initializer.

Return type

Check

Returns

Check object