Table Of Contents

Search

Enter search terms or a module, class or function name.

pandas.Series.clip_lower

Series.clip_lower(threshold, axis=None)[source]

Return copy of the input with values below given value(s) truncated.

Parameters:

threshold : float or array_like

axis : int or string axis name, optional

Align object with threshold along the given axis.

Returns:

clipped : same type as input

See also

clip

Scroll To Top