Skip to content
Related Articles
Open in App
Not now

Related Articles

Python | Scipy stats.invgamma.rvs() method

Improve Article
Save Article
  • Last Updated : 10 Feb, 2020
Improve Article
Save Article

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

My Personal Notes arrow_drop_up
Related Articles

Start Your Coding Journey Now!