-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
Description
Family: Poisson
Naming: Poisson (Poisson distribution).
Task
Implement the Poisson family as a ParametricFamily, add all parameterizations and analytical characteristics, and register the family in the registry.
Base parameterization
- Base parameter:
λ > 0(intensity / rate).
Support: k in {0, 1, 2, …}.
Other parameterizations and relations
- Log-rate
(η):- Parameter:
η in ℝ. - Relations to base:
λ = exp(η)η = log(λ).
- Parameter:
All characteristics should be defined in terms of λ.
Analytical characteristics (in terms of λ)
-
pmf(k)for integerk >= 0:pmf(k) = exp(-λ) * λ^k / k!.
-
cdf(k):cdf(k) = sum_{j=0}^k pmf(j).
-
ppf(u)for0 < u < 1:ppf(u)is the smallest integerk >= 0such thatcdf(k) >= u.
-
cf(t):cf(t) = exp(λ * (exp(i * t) - 1)).
-
mean:mean = λ.
-
var:var = λ.
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
No status