Skip to contents

Poisson Cumulative Distribution Function

Usage

prob_pois(x, lambda = 1)

Arguments

x

A numeric vector of quantiles.

lambda

A non-negative numeric vector of means.

Value

An numeric vector of the corresponding probabilities.

Examples

prob_pois(c(1, 3, 4), 3)
#> [1] 0.1991483 0.6472319 0.8152632