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

Method max

dask/array/_array_expr/_collection.py:519–530  ·  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

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.
521
522 Refer to :func:`dask.array.max` for full documentation.
523
524 See Also
525 --------
526 dask.array.max : equivalent function
527 """
528 from dask.array.reductions import max
529
530 return max(self, axis=axis, keepdims=keepdims, split_every=split_every, out=out)
531
532 def astype(self, dtype, **kwargs):
533 """Copy of the array, cast to a specified type.

Callers 10

funcFunction · 0.45
test_min_max_round_funcsFunction · 0.45
test_as_gufunc_with_metaFunction · 0.45
array_and_maxFunction · 0.45
test_masked.pyFile · 0.45
test_sparse.pyFile · 0.45
test_reduction_namesFunction · 0.45
test_cupy_core.pyFile · 0.45
_tree_reduceFunction · 0.45

Calls 1

maxFunction · 0.90

Tested by 6

funcFunction · 0.36
test_min_max_round_funcsFunction · 0.36
test_as_gufunc_with_metaFunction · 0.36
array_and_maxFunction · 0.36
test_reduction_namesFunction · 0.36