📜  Python| Scipy stats.halfgennorm.moment() 方法

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

Python| Scipy stats.halfgennorm.moment() 方法

借助stats.halfgennorm.moment()方法,我们可以使用stats.halfgennorm.moment()方法得到 n 阶非中心矩的值。

示例 #1:
在这个例子中我们可以看到,通过使用stats.halfgennorm.moment()方法,我们可以通过这个方法得到非中心矩的值。

# import halfgennorm
from scipy.stats import halfgennorm
beta = 1
  
# Using stats.halfgennorm.moment() method
gfg = halfgennorm.moment(3, beta)
  
print(gfg)

输出 :

示例 #2:

# import halfgennorm
from scipy.stats import halfgennorm
beta = 4
  
# Using stats.halfgennorm.moment() method
gfg = halfgennorm.moment(4, beta)
  
print(gfg)

输出 :