Numpy 的 setdiff1d(~)
方法返回 a
中 b
中不存在的唯一值。
參數
1. a
| array-like
第一個數組。
2. b
| array-like
第二個數組。
3. assume_unique
| boolean
如果 a
和 b
均僅包含唯一值,請將其設置為 True
,因為它將提高性能。默認情況下,assume_unique=False
。
返回值
一個 Numpy 數組,其中包含第二個數組中不存在的第一個數組的唯一值。
例子
a = np.array([5,4,2,2])
b = np.array([5,2,5,3])
np.setdiffd(a,b)
array([4])
這裏,由於兩個步驟而返回[4]
:
-
我們首先隻考慮
a
中的唯一值,即[5,4,2]
。 -
接下來,值 5 和 2 存在於
b
中,因此它們也被刪除。
相關用法
- Python dict setdefault()用法及代碼示例
- Python calendar setfirstweekday()用法及代碼示例
- Python NumPy set_printoptions方法用法及代碼示例
- Python set clear()用法及代碼示例
- Python NumPy set_string_function方法用法及代碼示例
- Python Django set用法及代碼示例
- Python set構造函數用法及代碼示例
- Python OpenCV setWindowTitle()用法及代碼示例
- Python set()用法及代碼示例
- Python setattr()用法及代碼示例
- Python set copy()用法及代碼示例
- Python set add()用法及代碼示例
- Python set symmetric_difference_update()用法及代碼示例
- Python Django set_language用法及代碼示例
- Python OpenCV setTrackbarPos()用法及代碼示例
- Python seaborn.swarmplot()用法及代碼示例
- Python NumPy searchsorted方法用法及代碼示例
- Python seaborn.residplot()用法及代碼示例
- Python Django serve用法及代碼示例
- Python seaborn.regplot()用法及代碼示例
- Python Django sensitive_variables用法及代碼示例
- Python BeautifulSoup select_one方法用法及代碼示例
- Python seaborn.PairGrid()用法及代碼示例
- Python Tableau server_info.get用法及代碼示例
- Python BeautifulSoup select方法用法及代碼示例
注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 NumPy | setdiff1d method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。