Python| Numpy np.unique() 方法
在np.unique()
方法的帮助下,我们可以从np.unique()
方法中作为参数给出的数组中获取唯一值。
Syntax : np.unique(Array)
Return : Return the unique of an array.
示例 #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)
输出 :
[1 2 3 4 6 8]
示例 #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)
输出 :
[1. 3.6 5. 10. 10.2 14.8 15. 21.4]