📜  sciPy stats.tstd()函数| Python

📅  最后修改于: 2022-05-13 01:54:44.951000             🧑  作者: Mango

sciPy stats.tstd()函数| Python

scipy.stats.tstd(array, limits=None, inclusive=(True, True))计算数组元素沿数组指定轴的修剪标准偏差。

这是公式——

代码#1:

# Trimmed Standard Deviation 
   
from scipy import stats
import numpy as np 
   
# array elements ranging from 0 to 19
x = np.arange(20)
    
print("Trimmed Standard Deviation :", stats.tstd(x)) 
   
   
print("\nTrimmed Standard Deviation by setting limit : ", 
      stats.tstd(x, (2, 10)))
输出:
Trimmed Standard Deviation : 5.9160797831

Trimmed Standard Deviation by setting limit :  2.73861278753


代码 #2:使用多维数据,axis() 工作

# Trimmed Standard Deviation 
   
from scipy import stats
import numpy as np 
  
arr1 = [[1, 3, 27], 
        [5, 3, 18], 
        [17, 16, 333], 
        [3, 6, 82]] 
   
  
# using axis = 0
print("Trimmed Standard Deviation is with default axis = 0 : \n", 
      stats.tstd(arr1, axis = 1))
输出:
Trimmed Standard Deviation is with default axis = 0 : 
 94.0423824505