Python| Scipy stats.hypsecant.moment() 方法
借助stats.hypsecant.moment()
方法,我们可以通过stats.hypsecant.moment()
() 方法得到 n 阶非中心矩的值。
Syntax : stats.hypsecant.moment(n, beta)
Return : Return the value of non central moment.
示例 #1:
在这个例子中我们可以看到,通过使用stats.hypsecant.moment()
方法,我们可以通过这个方法得到非中心矩的值。
# import hypsecant
from scipy.stats import hypsecant
beta = 1
# Using stats.hypsecant.moment() method
gfg = hypsecant.moment(3, beta)
print(gfg)
输出 :
8.402203300817018
示例 #2:
# import hypsecant
from scipy.stats import hypsecant
beta = 4
# Using stats.hypsecant.moment() method
gfg = hypsecant.moment(4, beta)
print(gfg)
输出 :
523.3108465742703