📜  Python| Numpy np.unique() 方法

📅  最后修改于: 2022-05-13 01:55:10.088000             🧑  作者: Mango

Python| Numpy np.unique() 方法

np.unique()方法的帮助下,我们可以从np.unique()方法中作为参数给出的数组中获取唯一值。

示例 #1:
在这个例子中,我们可以看到通过使用np.unique()方法,我们可以使用这个方法从数组中获取唯一值。

# import numpy
import numpy as np
  
a = [1, 2, 2, 4, 3, 6, 4, 8]
  
# using np.unique() method
gfg = np.unique(a)
  
print(gfg)

输出 :

示例 #2:

# import numpy
import numpy as np
  
a = [[10.2, 21.4, 3.6, 14.8], [1.0, 5.0, 10.0, 15.0]]
  
# using np.unique() method
gfg = np.unique(a)
  
print(gfg)

输出 :