當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Numpy np.digitize()用法及代碼示例


借助np.digitize()方法,我們可以通過使用以下方法獲取每個值所屬數組的bin的索引:np.digitize()方法。

用法: np.digitize(Array, Bin, Right)
返回:Return an array of indices of the bins.

範例1:
在這個例子中,我們可以通過使用np.digitize()方法,我們可以使用此方法獲得屬於數組的每個值的bin的索引數組。


# import numpy 
import numpy as np 
  
a = np.array([1.2, 2.4, 3.6, 4.8]) 
bins = np.array([1.0, 1.3, 2.5, 4.0, 10.0]) 
  
# using np.digitize() method 
gfg = np.digitize(a, bins) 
  
print(gfg)

輸出:

[1 2 3 4]

範例2:

# import numpy 
import numpy as np 
  
a = np.array([[10.2, 21.4, 3.6, 14.8], [1.0, 5.0, 10.0, 15.0]]) 
bins = np.array([1.0, 1.3, 2.5, 4.0, 10.0]) 
  
# using np.digitize() method 
gfg = np.digitize(a, bins) 
  
print(gfg)

輸出:

[[5 5 3 5]
[1 4 5 5]]



相關用法


注:本文由純淨天空篩選整理自Jitender_1998大神的英文原創作品 Python | Numpy np.digitize() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。