MCPcopy
hub / github.com/dask/dask / min

Method min

dask/array/_array_expr/_collection.py:506–517  ·  view source on GitHub ↗

Return the minimum along a given axis. Refer to :func:`dask.array.min` for full documentation. See Also -------- dask.array.min : equivalent function

(self, axis=None, keepdims=False, split_every=None, out=None)

Source from the content-addressed store, hash-verified

504 return all(self, axis=axis, keepdims=keepdims, split_every=split_every, out=out)
505
506 def min(self, axis=None, keepdims=False, split_every=None, out=None):
507 """Return the minimum along a given axis.
508
509 Refer to :func:`dask.array.min` for full documentation.
510
511 See Also
512 --------
513 dask.array.min : equivalent function
514 """
515 from dask.array.reductions import min
516
517 return min(self, axis=axis, keepdims=keepdims, split_every=split_every, out=out)
518
519 def max(self, axis=None, keepdims=False, split_every=None, out=None):
520 """Return the maximum along a given axis.

Callers 5

test_dtype_complexFunction · 0.45
test_min_max_round_funcsFunction · 0.45
statsFunction · 0.45
test_cupy_core.pyFile · 0.45

Calls 1

minFunction · 0.90

Tested by 4

test_dtype_complexFunction · 0.36
test_min_max_round_funcsFunction · 0.36
statsFunction · 0.36