Python random.gauss()

Python random.gauss()

The random module is used to generate random numbers in Python. These numbers are not actually random, but rather pseudo-random. This means that these randomly generated numbers can be determined.

random.gauss()

gauss() is a built-in method of the random module. It returns a random floating-point number with a Gaussian distribution.

Syntax: random.gauss(mu, sigma)

Parameters:

mu: mean

igma: standard deviation

Returns: A random Gaussian-distributed floating-point number

Example 1:

# import the random module
import random
  
# determining the values of the parameters
mu = 100
sigma = 50
  
# using the gauss() method
print(random.gauss(mu, sigma))

Output:

127.80261974806497

Example 2: We can generate numbers multiple times and plot a graph to observe the Gaussian distribution.

# import the required libraries
import random
import matplotlib.pyplot as plt
    
# store the random numbers in a
# list
nums = []
mu = 100
sigma=50
    
for i in range(100):
Temp = random.gauss(mu, sigma)
nums.append(temp)
        
# plotting a graph 
plt.plot(nums) 
plt.show()

Output:

Python random.gauss

Example 3: We can create a histogram to visualize the density of a Gaussian distribution.

# import the required libraries
import random
import matplotlib.pyplot as plt
    
# store the random numbers in a list
nums = []
mu = 100
sigma=50
    
for i in range(10000):
Temp = random.gauss(mu, sigma)
nums.append(temp)
        
# plotting a graph
plt.hist(nums, bins = 200)
plt.show()

Output:

Python random.gauss

Leave a Reply

Your email address will not be published. Required fields are marked *