polars.Series.clip_min#

Series.clip_min(lower_bound: int | float) Series[source]#

Clip (limit) the values in an array to a min boundary.

Only works for numerical types.

If you want to clip other dtypes, consider writing a “when, then, otherwise” expression. See when() for more information.

Parameters:
lower_bound

Lower bound.