MCPcopy
hub / github.com/dask/dask / max

Method max

dask/array/core.py:2546–2557  ·  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

2544 return min(self, axis=axis, keepdims=keepdims, split_every=split_every, out=out)
2545
2546 def max(self, axis=None, keepdims=False, split_every=None, out=None):
2547 """Return the maximum along a given axis.
2548
2549 Refer to :func:`dask.array.max` for full documentation.
2550
2551 See Also
2552 --------
2553 dask.array.max : equivalent function
2554 """
2555 from dask.array.reductions import max
2556
2557 return max(self, axis=axis, keepdims=keepdims, split_every=split_every, out=out)
2558
2559 def argmin(self, axis=None, *, keepdims=False, split_every=None, out=None):
2560 """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