Thursday, September 4, 2025
HomeLanguagesnumpy.random.exponential() in Python

numpy.random.exponential() in Python

With the help of numpy.random.exponential() method, we can get the random samples from exponential distribution and returns the numpy array of random samples by using this method.

exponential distribution

Syntax : numpy.random.exponential(scale=1.0, size=None)

Return : Return the random samples of numpy array.

Example #1 :

In this example we can see that by using numpy.random.exponential() method, we are able to get the random samples of exponential distribution and return the samples of numpy array.

Python3




# import exponential
import numpy as np
import matplotlib.pyplot as plt
  
# Using exponential() method
gfg = np.random.exponential(3.45, 10000)
  
count, bins, ignored = plt.hist(gfg, 14, density = True)
plt.show()


Output :

Example #2 :

Python3




# import exponential
import numpy as np
import matplotlib.pyplot as plt
  
# Using exponential() method
gfg = np.random.exponential(101.123, 10000)
gfg1 = np.random.exponential(gfg, 10000)
  
count, bins, ignored = plt.hist(gfg1, 14, density = True)
plt.show()


Output :

RELATED ARTICLES

Most Popular

Dominic
32261 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6626 POSTS0 COMMENTS
Nicole Veronica
11795 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11855 POSTS0 COMMENTS
Shaida Kate Naidoo
6747 POSTS0 COMMENTS
Ted Musemwa
7023 POSTS0 COMMENTS
Thapelo Manthata
6695 POSTS0 COMMENTS
Umr Jansen
6714 POSTS0 COMMENTS