Open In App

Python | Scipy stats.hypsecant.var() method

Last Updated : 10 Feb, 2020
Comments
Improve
Suggest changes
Like Article
Like
Report
With the help of 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. Python3 1=1
# import hypsecant
from scipy.stats import hypsecant
beta = 10

# Using stats.hypsecant.var() method
gfg = hypsecant.var(beta)

print(gfg)
Output :
2.4674011002723395
Example #2 : Python3 1=1
# import hypsecant
from scipy.stats import hypsecant
beta = 30

# Using stats.hypsecant.var() method
gfg = hypsecant.var(beta)

print(gfg)
Output :
2.4674011002723395

Practice Tags :

Similar Reads