0
0
SciPydata~5 mins

Poisson distribution in SciPy - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is the Poisson distribution used for?
The Poisson distribution models the number of times an event happens in a fixed interval of time or space, when events occur independently and at a constant average rate.
Click to reveal answer
beginner
What parameter does the Poisson distribution use?
It uses a single parameter called lambda (λ), which represents the average number of events in the interval.
Click to reveal answer
intermediate
How do you calculate the probability of exactly k events in Poisson distribution?
The probability is given by P(k) = (λ^k * e^(-λ)) / k!, where k is the number of events, λ is the average rate, and e is Euler's number.
Click to reveal answer
beginner
In Python's scipy library, which function generates Poisson probabilities?
The function is scipy.stats.poisson.pmf(k, mu), where k is the number of events and mu is the average rate λ.
Click to reveal answer
beginner
What real-life example fits the Poisson distribution?
Counting the number of emails you receive in an hour, assuming emails come independently and at a steady average rate.
Click to reveal answer
What does the parameter λ represent in a Poisson distribution?
AThe variance of the events
BThe average number of events in the interval
CThe total number of events observed
DThe time between events
Which scipy function calculates the probability mass function for Poisson?
Ascipy.stats.poisson.pmf
Bscipy.stats.poisson.cdf
Cscipy.stats.norm.pdf
Dscipy.stats.binom.pmf
If λ = 3, what is the probability of 0 events occurring?
A3^0
B0
Ce^(-3)
D1
Poisson distribution assumes events occur:
AOnly once
BIn clusters
CWith increasing frequency over time
DIndependently and at a constant average rate
Which of these is NOT a typical use of Poisson distribution?
AHeight of people in a group
BNumber of cars passing a checkpoint
CNumber of decay events from a radioactive source
DNumber of phone calls received per hour
Explain the Poisson distribution and when it is used.
Think about counting rare events over time or space.
You got /4 concepts.
    Describe how to calculate the probability of k events using the Poisson formula.
    Remember the role of e and factorial in the formula.
    You got /4 concepts.