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

Method max

dask/array/core.py:2552–2563  ·  view source on GitHub ↗

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

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

Source from the content-addressed store, hash-verified

2550 return min(self, axis=axis, keepdims=keepdims, split_every=split_every, out=out)
2551
2552 def max(self, axis=None, keepdims=False, split_every=None, out=None):
2553 """Return the maximum along a given axis.
2554
2555 Refer to :func:`dask.array.max` for full documentation.
2556
2557 See Also
2558 --------
2559 dask.array.max : equivalent function
2560 """
2561 from dask.array.reductions import max
2562
2563 return max(self, axis=axis, keepdims=keepdims, split_every=split_every, out=out)
2564
2565 def argmin(self, axis=None, *, keepdims=False, split_every=None, out=None):
2566 """Return indices of the minimum values along the given axis.

Callers 11

normFunction · 0.45
_tree_reduceFunction · 0.45
broadcast_shapesFunction · 0.45
_vindex_arrayFunction · 0.45
divideFunction · 0.45
chunk_maxFunction · 0.45
prefixscan_blellochFunction · 0.45
ptpFunction · 0.45
searchsortedFunction · 0.45
svg_gridFunction · 0.45
pad_statsFunction · 0.45

Calls 1

maxFunction · 0.90

Tested by

no test coverage detected