random module is used to generate random numbers in Python. Not actually random, rather this is used to generate pseudo-random numbers. That implies that these randomly generated numbers can be determined.
random.gammavariate()
gammavariate() is an inbuilt method of the
random module. It is used to return a random floating point number with
gamma distribution.
Syntax : random.gammavariate(alpha, beta)
Parameters :
alpha : greater than 0
beta : greater than 0
Returns : a random gamma distribution floating number
Example 1:
Output :
4.647425239687329
Example 2: We can generate the number multiple times and plot a graph to observe the gamma distribution.
Output :
👁 Image
Example 3: We can create a histogram to observe the density of the gamma distribution.