Open In App

Python | Scipy stats.hypsecant.ppf() method

Improve
Improve
Like Article
Like
Save
Share
Report

With the help of stats.hypsecant.ppf() method, we can get the value of percentage point function which is inverse( cdf ) by using stats.hypsecant.ppf() method.

Syntax : stats.hypsecant.ppf(x, beta)
Return : Return the value of percentage point function.

Example #1 :
In this example we can see that by using stats.hypsecant.ppf() method, we are able to get the value of percentage point function by using this method.




# import hypsecant
from scipy.stats import hypsecant
beta = 1
  
# Using stats.hypsecant.ppf() method
gfg = hypsecant.ppf(0.3, beta)
  
print(gfg)


Output :

0.3257245223731834

Example #2 :




# import hypsecant
from scipy.stats import hypsecant
beta = 4
  
# Using stats.hypsecant.ppf() method
gfg = hypsecant.ppf(0.9, beta)
  
print(gfg)


Output :

5.842730034701113


Last Updated : 10 Feb, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads