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


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


scipy.stats.moment(array, axis=0)函數計算nth關於樣本均值的矩,即沿著數組的指定軸的數組元素(python中的列表)。


其公式-

參數:
array :輸入數組或對象具有要計算矩的元素。
axis :計算力矩所沿的軸。默認情況下,軸= 0。
moment :返回的中心矩的順序。


返回:n-th基於設置的參數的數組元素的中心矩。

代碼1:

# Moment 
from scipy import stats 
import numpy as np  
  
arr1 = np.array([[1, 31, 27, 13, 21, 9], 
                [8, 12, 8, 4, 7, 10]])  
   
  
print("Oth moment:\n", stats.moment(arr1, moment = 0)) 

輸出:

Oth moment:
 [1. 1. 1. 1. 1. 1.]


代碼2:多維數據

# Moment  
from scipy import stats 
import numpy as np  
  
arr1 = [[1, 3, 27],  
        [3, 4, 6],  
        [7, 6, 3],  
        [3, 6, 8]]   
  
print("Oth moment:\n", stats.moment(arr1, moment = 0)) 
  
print("\n6th moment:\n", stats.moment(arr1, moment = 6)) 
  
print("\n9th moment:\n", stats.moment(arr1, moment = 9, axis = None)) 
  
print("\n12th moment:\n", stats.moment(arr1, moment = 12, axis = 1)) 
  
print("\n10th moment:\n", stats.moment(arr1, moment = 10, axis = 1))

輸出:

Oth moment:
 [1. 1. 1.]

6th moment:
 [5.20609375e+02 9.13256836e+00 4.26392850e+06]

9th moment:
 55265909588.26437

12th moment:
 [1.53284936e+14 1.63654317e+02 8.83474172e+03 5.17842143e+04]

10th moment:
 [5.53094361e+11 6.10464868e+01 1.64971407e+03 7.65588508e+03]


相關用法


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