Returns the unique elements of an input array x.
This function is an Array API compatible alternative to:
np.unique(x, equal_nan=False, sorted=False)
Changed in version 2.3: The algorithm was changed to a faster one that does not rely on sorting, and hence the results are no longer implicitly sorted.
Input array. It will be flattened if it is not already 1-D.
The unique elements of an input array.
See also
uniqueFind the unique elements of an array.
>>> import numpy as np >>> np.unique_values([1, 1, 2]) array([1, 2]) # may vary
© 2005–2024 NumPy Developers
Licensed under the 3-clause BSD License.
https://numpy.org/doc/2.4/reference/generated/numpy.unique_values.html