MCPcopy Create free account
hub / github.com/numpy/numpy / argpartition

Method argpartition

numpy/ma/core.py:6060–6064  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

6058 return super().partition(*args, **kwargs)
6059
6060 def argpartition(self, *args, **kwargs):
6061 warnings.warn("Warning: 'argpartition' will ignore the 'mask' "
6062 f"of the {self.__class__.__name__}.",
6063 stacklevel=2)
6064 return super().argpartition(*args, **kwargs)
6065
6066 def take(self, indices, axis=None, out=None, mode='raise'):
6067 """

Callers 8

test_partitionMethod · 0.80
test_partition_cdtypeMethod · 0.80
ndarray_misc.pyFile · 0.80
fromnumeric.pyFile · 0.80

Calls 1

warnMethod · 0.80

Tested by 5

test_partitionMethod · 0.64
test_partition_cdtypeMethod · 0.64