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
Attention geek! Strengthen your foundations with the Python Programming Foundation Course and learn the basics.
To begin with, your interview preparations Enhance your Data Structures concepts with the Python DS Course.