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


Python Scipy stats.threshold()用法及代碼示例


scipy.stats.threshold(a,threshmin = None,threshmax = None,newval = 0)函數剪輯出Give數組。超出設定限製的值可以用“ newval”參數代替。

參數:
arr:[數組]輸入要剪切的數組或對象。
threshmin :(浮點數,整數)最小閾值。默認為無
threshmax :(浮點數,整數)最大閾值。默認為無
newval :(float,int)替換值(超出限製)的值。

結果:將值(超出限製)的裁剪數組替換為newval。


代碼1:工作

# stats.threshold() method   
import numpy as np 
from scipy import stats 
   
arr1 = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] 
  
  
print ("\narr1 : ", arr1) 
  
print ("\nclipped arr1 : \n", stats.threshold( 
        arr1, threshmin = 2, threshmax = 8, newval =-1))

輸出:

arr1 :  [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

clipped arr1 : 
[-1 -1 2 3 4 5 6 7 8 -1]


相關用法


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