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 fromscipy.stats importinvgamma a =1 Â# Using stats.invgamma.rvs() method gfg =invgamma.rvs(a)  Âprint(gfg)  | 
Output :
1.8920923678338413
Example #2 :
| # import invgamma fromscipy.stats importinvgamma a =4 Â# Using stats.invgamma.rvs() method gfg =invgamma.rvs(a)  Âprint(gfg)  | 
Output :
0.3174183513521846
 
				 
					


