Processing math: 100%
SciPy

This is documentation for an old release of SciPy (version 0.19.0). Search for this page in the documentation of the latest stable release (version 1.15.1).

Poisson Distribution

The Poisson random variable counts the number of successes in n independent Bernoulli trials in the limit as n and p0 where the probability of success in each trial is p and np=λ0 is a constant. It can be used to approximate the Binomial random variable or in it’s own right to count the number of events that occur in the interval [0,t] for a process satisfying certain “sparsity “constraints. The functions are

p(k;λ)=eλλkk!k0,F(x;λ)=xn=0eλλnn!=1Γ(x+1)λtxetdt,μ=λμ2=λγ1=1λγ2=1λ.
M(t)=exp[λ(et1)].

Implementation: scipy.stats.poisson