Wednesday, October 8, 2025
HomeLanguagesPython | Scipy stats.hypsecant.stats() method

Python | Scipy stats.hypsecant.stats() method

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

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32342 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6712 POSTS0 COMMENTS
Nicole Veronica
11875 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11937 POSTS0 COMMENTS
Shaida Kate Naidoo
6833 POSTS0 COMMENTS
Ted Musemwa
7092 POSTS0 COMMENTS
Thapelo Manthata
6786 POSTS0 COMMENTS
Umr Jansen
6789 POSTS0 COMMENTS