(x, y)
| 320 | |
| 321 | |
| 322 | def 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 | |
| 329 | def cummax_aggregate(x, y): |
nothing calls this directly
no test coverage detected
searching dependent graphs…