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
