Python中的 statsmodels.medcouple()
在statsmodels.medcouple()
方法的帮助下,我们可以计算偏斜的 medcouple 稳健度量。
Syntax : statsmodels.medcouple(array, axis)
Return : Return the medcouple statistic value.
示例 #1:
在这个例子中我们可以看到,通过使用statsmodels.medcouple()
方法,我们可以通过这个方法得到 medcouple statistic 的值。
# import numpy and statsmodels
import numpy as np
from statsmodels.stats.stattools import medcouple
g = np.array([1, 2, 3, 4, 7, 8])
# Using statsmodels.medcouple() method
gfg = medcouple(g)
print(gfg)
输出 :
0.2857142857142857
示例 #2:
# import numpy and statsmodels
import numpy as np
from statsmodels.stats.stattools import medcouple
g = np.array([1, 2, 8, 9, 10])
# Using statsmodels.medcouple() method
gfg = medcouple(g)
print(gfg)
输出 :
-0.5555555555555556