📌  相关文章
📜  Python中的 statsmodels.medcouple()

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

Python中的 statsmodels.medcouple()

statsmodels.medcouple()方法的帮助下,我们可以计算偏斜的 medcouple 稳健度量。

示例 #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)

输出 :

示例 #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)

输出 :