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


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


scipy.stats.trimboth(a,ratiototalto,axis = 0)函數從兩端將數組中的元素部分切掉。

參數:
arr :[數組]輸入要修剪的數組或對象。
axis :要計算平均值的軸。默認情況下,軸= 0。
proportiontocut :要修剪每一端的數據比例(範圍為0-1)。

結果:按給定比例從兩端修剪數組元素。


代碼1:工作

# stats.trimboth() 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.trimboth(arr1, proportiontocut = .3)) 
print ("\nclipped arr1 : \n", stats.trimboth(arr1, proportiontocut = .1))

輸出:

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

clipped arr1 : 
 [3 4 5 6]

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


代碼2:

# stats.trimboth() method    
import numpy as np 
from scipy import stats 
   
   
arr1 = [[0, 12, 21, 3, 14], 
        [53, 16, 37, 85, 39]] 
  
print ("\narr1 : ", arr1) 
  
print ("\nclipped arr1 : \n",  
       stats.trimboth(arr1, proportiontocut = .3)) 
  
print ("\nclipped arr1 : \n",  
       stats.trimboth(arr1, proportiontocut = .1)) 
  
print ("\nclipped arr1 : \n",  
       stats.trimboth(arr1, proportiontocut = .1, axis = 1)) 
  
print ("\nclipped arr1 : \n",  
       stats.trimboth(arr1, proportiontocut = .1, axis = 0))

輸出:

arr1 :  [[0, 12, 21, 3, 14], [53, 16, 37, 85, 39]]

clipped arr1 : 
 [[ 0 12 21  3 14]
 [53 16 37 85 39]]

clipped arr1 : 
 [[ 0 12 21  3 14]
 [53 16 37 85 39]]

clipped arr1 : 
 [[ 0  3 12 14 21]
 [16 37 39 53 85]]

clipped arr1 : 
 [[ 0 12 21  3 14]
 [53 16 37 85 39]]


相關用法


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