Thursday, September 25, 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
32319 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6680 POSTS0 COMMENTS
Nicole Veronica
11854 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11910 POSTS0 COMMENTS
Shaida Kate Naidoo
6794 POSTS0 COMMENTS
Ted Musemwa
7070 POSTS0 COMMENTS
Thapelo Manthata
6753 POSTS0 COMMENTS
Umr Jansen
6761 POSTS0 COMMENTS