Open In App

numpy.random.geometric() in Python

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

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

geometric distribution

Syntax : numpy.random.geometric(p, size=None)

Return : Return the random samples of numpy array.

Example #1 :

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

Python3




# import numpy and geometric
import numpy as np
import matplotlib.pyplot as plt
  
# Using geometric() method
gfg = np.random.geometric(0.65, 1000)
  
count, bins, ignored = plt.hist(gfg, 40, density = True)
plt.show()


Output :

Example #2 :

Python3




# import numpy and geometric
import numpy as np
import matplotlib.pyplot as plt
  
# Using geometric() method
gfg = np.random.geometric(0.85, 1000)
  
count, bins, ignored = plt.hist(gfg, 10, density = True)
plt.show()


Output :



Last Updated : 15 Jul, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads