Open In App

Python | Scipy stats.hypsecant.stats() method

Improve
Improve
Like Article
Like
Save
Share
Report

With the help of stats.hypsecant.stats() method, we can get the value of Mean(‘m’), variance(‘v’), skew(‘s’), and/or kurtosis(‘k’) by using stats.hypsecant.stats() method.

Syntax : stats.hypsecant.stats(beta, moments)
Return : Return the value of mean, variance, skew and kurtosis.

Example #1 :
In this example we can see that by using stats.hypsecant.stats() method, we are able to get the value of mean, variance, skew and kurtosis by using this method.




# import hypsecant
from scipy.stats import hypsecant
beta = 5
  
# Using stats.hypsecant.stats() method
M, V, S, K = hypsecant.stats(beta, moments ='mvsk')
  
print(M, V, S, K)


Output :

5.0 2.4674011002723395 0.0 2.0

Example #2 :




# import hypsecant
from scipy.stats import hypsecant
beta = 3
  
# Using stats.hypsecant.stats() method
M, V, S, K = hypsecant.stats(beta, moments ='mvsk')
  
print(M, V, S, K)


Output :

3.0 2.4674011002723395 0.0 2.0


Last Updated : 10 Feb, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads