Answers for "get unique values from numpy list python"

3

python unique array of array numpy

>>> import numpy as np
>>> x = np.array([[1, 1], [2,3], [3,4]])
>>> np.unique(x)
array([1, 2, 3, 4])
Posted by: Guest on April-29-2021
0

how to find unique values in numpy array

>>> a = np.array([[1, 0, 0], [1, 0, 0], [2, 3, 4]])
>>> np.unique(a, axis=0)
array([[1, 0, 0], [2, 3, 4]])
Posted by: Guest on August-03-2021

Code answers related to "get unique values from numpy list python"

Python Answers by Framework

Browse Popular Code Answers by Language