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]
相關用法
- Python Scipy stats.sem()用法及代碼示例
- Python Scipy stats.mean()用法及代碼示例
- Python Scipy stats.relfreq()用法及代碼示例
- Python Scipy stats.tvar()用法及代碼示例
- Python Scipy stats.nanstd()用法及代碼示例
- Python Scipy stats.gmean()用法及代碼示例
- Python Scipy stats.trimboth()用法及代碼示例
- Python Scipy stats.bayes_mvs()用法及代碼示例
- Python Scipy stats.scoreatpercentile()用法及代碼示例
- Python Scipy stats.nanmean()用法及代碼示例
- Python Scipy stats.moment()用法及代碼示例
- Python Scipy stats.trim1()用法及代碼示例
- Python Scipy stats.kurtosistest()用法及代碼示例
注:本文由純淨天空篩選整理自vishal3096大神的英文原創作品 sciPy stats.threshold() function | Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。