pandera.core.checks.Check.greater_than_or_equal_to#

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

Ensure all values are greater or equal a certain value.

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

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

Return type

Check