当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。