With the help of Python3 1=1 Output :
Python3 1=1
stats.hypsecant.var() method, we can get the value of variance of distribution by using stats.hypsecant.var() method.
Syntax : stats.hypsecant.var(beta)
Return : Return the value of variance of distribution.
Example #1 :
In this example we can see that by using stats.hypsecant.var() method, we are able to get the value of variance of distribution by using this method.
# import hypsecant
from scipy.stats import hypsecant
beta = 10
# Using stats.hypsecant.var() method
gfg = hypsecant.var(beta)
print(gfg)
2.4674011002723395Example #2 :
# import hypsecant
from scipy.stats import hypsecant
beta = 30
# Using stats.hypsecant.var() method
gfg = hypsecant.var(beta)
print(gfg)
Output :
2.4674011002723395