sciPy stats.trim1()函数| Python
原文:https://www . geesforgeks . org/scipy-stats-trim 1-function-python/
scipy.stats.trim1(a,proportiontocut,tail='right') 函数从传递的数组分布的一端切下数组中的部分元素。
参数: arr:【array _ like】输入要修剪的数组或对象。 尾部:【可选】{ '左','右' }默认为右。 比例分配:每端要修剪的数据比例(在 0-1 范围内)。
结果:按照给定的比例从两端修剪数组元素。
代码#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]
版权属于:月萌API www.moonapi.com,转载请注明出处