With the help of
Python3 1=1
Output :
Python3 1=1
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)
1.8920923678338413Example #2 :
# import invgamma
from scipy.stats import invgamma
a = 4
# Using stats.invgamma.rvs() method
gfg = invgamma.rvs(a)
print(gfg)
Output :
0.3174183513521846