MCPcopy Create free account
hub / github.com/dask/dask / clip

Method clip

dask/dataframe/dask_expr/_collection.py:4219–4221  ·  view source on GitHub ↗
(self, lower=None, upper=None, axis=None, **kwargs)

Source from the content-addressed store, hash-verified

4217
4218 @derived_from(pd.Series)
4219 def clip(self, lower=None, upper=None, axis=None, **kwargs):
4220 axis = self._validate_axis(axis)
4221 return new_collection(self.expr.clip(lower, upper, axis))
4222
4223 @derived_from(pd.Series)
4224 def to_frame(self, name=no_default):

Callers 3

test_clipFunction · 0.95
test_clip_axis_0Function · 0.95
clipMethod · 0.45

Calls 2

_validate_axisMethod · 0.95
new_collectionFunction · 0.90

Tested by 2

test_clipFunction · 0.76
test_clip_axis_0Function · 0.76