cdf

open override fun cdf(k: Int): Double(source)

Returns the cumulative distribution function value at k for this Poisson distribution.

Gives the probability of observing k or fewer events. Uses the regularized upper incomplete gamma function for numerical stability rather than summing individual probability masses.

Return

the probability of k or fewer events, in the range [0, 1].

Parameters

k

the number of events at which to evaluate the cumulative probability.