Python| Scipy stats.halfgennorm.moment() 方法
借助stats.halfgennorm.moment()
方法,我们可以使用stats.halfgennorm.moment()
方法得到 n 阶非中心矩的值。
Syntax : stats.halfgennorm.moment(n, beta)
Return : Return the value of non central moment.
示例 #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)
输出 :
5.999999999999632
示例 #2:
# import halfgennorm
from scipy.stats import halfgennorm
beta = 4
# Using stats.halfgennorm.moment() method
gfg = halfgennorm.moment(4, beta)
print(gfg)
输出 :
0.25000000001141554