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


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


scipy.stats.trim1(a,ratiototaltocut,tail ='right')函數從傳遞的數組分布的一端切出數組中的元素部分。

參數:
arr :[數組]輸入要修剪的數組或對象。
tail:[可選] {'左','右'}默認為右。
proportiontocut:要修剪每一端的數據比例(範圍為0-1)。

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


代碼1:工作

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

輸出:

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

clipped arr1:
 [0 2 1 3 4 5 6]

clipped arr1:
 [3 4 6 5 7 8 9]

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

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


相關用法


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