MCPcopy Index your code
hub / github.com/dask/dask / cummin_aggregate

Function cummin_aggregate

dask/dataframe/methods.py:322–326  ·  view source on GitHub ↗
(x, y)

Source from the content-addressed store, hash-verified

320
321
322def cummin_aggregate(x, y):
323 if is_series_like(x) or is_dataframe_like(x):
324 return x.where((x < y) | x.isnull(), y, axis=x.ndim - 1)
325 else: # scalar
326 return min(x, y)
327
328
329def cummax_aggregate(x, y):

Callers

nothing calls this directly

Calls 5

is_series_likeFunction · 0.90
is_dataframe_likeFunction · 0.90
minFunction · 0.85
whereMethod · 0.45
isnullMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…