MCPcopy Index your code
hub / github.com/numpy/numpy / argpartition

Method argpartition

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

Source from the content-addressed store, hash-verified

6172 return super().partition(*args, **kwargs)
6173
6174 def argpartition(self, *args, **kwargs):
6175 warnings.warn("Warning: 'argpartition' will ignore the 'mask' "
6176 f"of the {self.__class__.__name__}.",
6177 stacklevel=2)
6178 return super().argpartition(*args, **kwargs)
6179
6180 def take(self, indices, axis=None, out=None, mode='raise'):
6181 """

Callers 10

test_partitionMethod · 0.80
test_partition_cdtypeMethod · 0.80
test_partition_intFunction · 0.80
test_partition_fpFunction · 0.80
ndarray_misc.pyFile · 0.80
fromnumeric.pyFile · 0.80
time_argpartitionMethod · 0.80

Calls

no outgoing calls

Tested by 7

test_partitionMethod · 0.64
test_partition_cdtypeMethod · 0.64
test_partition_intFunction · 0.64
test_partition_fpFunction · 0.64