📜  Python| Scipy stats.hypsecant.fit() 方法

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

Python| Scipy stats.hypsecant.fit() 方法

stats.hypsecant.fit()方法的帮助下,我们可以使用stats.hypsecant.fit()方法获得通用数据的参数估计值。

示例 #1:
在这个例子中,我们可以看到通过使用stats.hypsecant.fit()方法,我们能够通过使用该方法获得通用数据的参数估计值。

# import hypsecant
from scipy.stats import hypsecant
data = [1, 2, 3, 4]
  
# Using stats.hypsecant.fit() method
gfg = hypsecant.fit(data)
  
print(gfg)

输出 :

示例 #2:

# import hypsecant
from scipy.stats import hypsecant
data = [1, 2, 3, 4, 10, -5]
  
# Using stats.hypsecant.fit() method
gfg = hypsecant.fit(data)
  
print(gfg)

输出 :