Open In App

Python | Scipy stats.hypsecant.var() method

Last Updated : 10 Feb, 2020
Improve
Improve
Like Article
Like
Save
Share
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.




# 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 :




# import hypsecant
from scipy.stats import hypsecant
beta = 30
  
# Using stats.hypsecant.var() method
gfg = hypsecant.var(beta)
  
print(gfg)


Output :

2.4674011002723395


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads