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

Method ge

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

Source from the content-addressed store, hash-verified

4259 return self._comparison_op(expr.GTSeries, other, level, fill_value, axis)
4260
4261 def ge(self, other, level=None, fill_value=None, axis=0):
4262 return self._comparison_op(expr.GESeries, other, level, fill_value, axis)
4263
4264 def ne(self, other, level=None, fill_value=None, axis=0):
4265 return self._comparison_op(expr.NESeries, 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