Learn R Programming

algebraic.dist (version 0.9.1)

cdf.poisson_dist: Cumulative distribution function for a Poisson distribution.

Description

Returns a function that evaluates the Poisson CDF at given points.

Usage

# S3 method for poisson_dist
cdf(x, ...)

Value

A function function(q, log.p = FALSE, ...) returning the CDF (or log-CDF) at q.

Arguments

x

A poisson_dist object.

...

Additional arguments (not used).

Examples

Run this code
x <- poisson_dist(5)
F <- cdf(x)
F(5)
F(10)

Run the code above in your browser using DataLab