Python | Scipy stats.invgamma.rvs() method
With the help of stats.invgamma.rvs()
method, we can generate the random variate from inverted gamma generalized normal distribution function by using stats.invgamma.rvs()
method.
Syntax :
stats.invgamma.rvs(a)
Return : Return the value of random variate.
Example #1 :
In this example we can see that by using stats.invgamma.rvs()
method, we are able to get the random variate of inverted gamma generalized normal distribution by using this method.
# import invgamma from scipy.stats import invgamma a = 1 # Using stats.invgamma.rvs() method gfg = invgamma.rvs(a) print (gfg) |
Output :
1.8920923678338413
Example #2 :
# import invgamma from scipy.stats import invgamma a = 4 # Using stats.invgamma.rvs() method gfg = invgamma.rvs(a) print (gfg) |
Output :
0.3174183513521846
Please Login to comment...