Curriculum
Course: NumPy
Login

Curriculum

NumPy

Text lesson

Poisson Distribution

Poisson Distribution

Poisson Distribution is a discrete distribution used to estimate how often an event occurs within a specified time frame. For example, if someone eats twice a day, what is the probability they will eat three times?

It has two parameters:

  • lam: The rate or expected number of occurrences (e.g., 2 in the example).
  • size: The shape of the resulting array.

Example

Generate a random 1×10 Poisson distribution with a rate of 2:

from numpy import random

x = random.poisson(lam=2, size=10)

print(x)

Visualization of Poisson Distribution

Example

from numpy import random
import matplotlib.pyplot as plt
import seaborn as sns

sns.distplot(random.poisson(lam=2, size=1000), kde=False)

plt.show()

Result

poisson1