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

Method lt

dask/dataframe/dask_expr/_collection.py:4233–4234  ·  view source on GitHub ↗
(self, other, level=None, fill_value=None, axis=0)

Source from the content-addressed store, hash-verified

4231 return new_collection(expr_cls(self, other, fill_value=fill_value))
4232
4233 def lt(self, other, level=None, fill_value=None, axis=0):
4234 return self._comparison_op(expr.LTSeries, other, level, fill_value, axis)
4235
4236 def le(self, other, level=None, fill_value=None, axis=0):
4237 return self._comparison_op(expr.LESeries, other, level, fill_value, axis)

Callers 2

check_series_arithmeticsFunction · 0.45
check_frame_arithmeticsFunction · 0.45

Calls 1

_comparison_opMethod · 0.95

Tested by 2

check_series_arithmeticsFunction · 0.36
check_frame_arithmeticsFunction · 0.36