Rev 77691 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/stats/man/Poisson.Rd% Part of the R package, https://www.R-project.org% Copyright 1995-2020 R Core Team% Distributed under GPL 2 or later\name{Poisson}\alias{Poisson}\alias{dpois}\alias{ppois}\alias{qpois}\alias{rpois}\title{The Poisson Distribution}\description{Density, distribution function, quantile function and randomgeneration for the Poisson distribution with parameter \code{lambda}.}\usage{dpois(x, lambda, log = FALSE)ppois(q, lambda, lower.tail = TRUE, log.p = FALSE)qpois(p, lambda, lower.tail = TRUE, log.p = FALSE)rpois(n, lambda)}\arguments{\item{x}{vector of (non-negative integer) quantiles.}\item{q}{vector of quantiles.}\item{p}{vector of probabilities.}\item{n}{number of random values to return.}\item{lambda}{vector of (non-negative) means.}\item{log, log.p}{logical; if TRUE, probabilities p are given as log(p).}\item{lower.tail}{logical; if TRUE (default), probabilities are\eqn{P[X \le x]}, otherwise, \eqn{P[X > x]}.}}\value{\code{dpois} gives the (log) density,\code{ppois} gives the (log) distribution function,\code{qpois} gives the quantile function, and\code{rpois} generates random deviates.Invalid \code{lambda} will result in return value \code{NaN}, with a warning.The length of the result is determined by \code{n} for\code{rpois}, and is the maximum of the lengths of thenumerical arguments for the other functions.The numerical arguments other than \code{n} are recycled to thelength of the result. Only the first elements of the logicalarguments are used.\code{rpois} returns a vector of type \link{integer} unless generatedvalues exceed the maximum representable integer when \code{\link{double}}values are returned since R version 4.0.0.}\details{The Poisson distribution has density%-- please leave the linebreaking for the next two ! --\deqn{p(x) = \frac{\lambda^x e^{-\lambda}}{x!}}{p(x) = \lambda^x exp(-\lambda)/x!}for \eqn{x = 0, 1, 2, \ldots} .The mean and variance are \eqn{E(X) = Var(X) = \lambda}.Note that \eqn{\lambda = 0} is really a limit case (setting\eqn{0^0 = 1}) resulting in a point mass at \eqn{0}, see also the example.If an element of \code{x} is not integer, the result of \code{dpois}is zero, with a warning.\eqn{p(x)} is computed using Loader's algorithm, see the reference in\code{\link{dbinom}}.The quantile is right continuous: \code{qpois(p, lambda)} is the smallestinteger \eqn{x} such that \eqn{P(X \le x) \ge p}.Setting \code{lower.tail = FALSE} allows to get much more preciseresults when the default, \code{lower.tail = TRUE} would return 1, seethe example below.}\source{\code{dpois} uses C code contributed by Catherine Loader(see \code{\link{dbinom}}).\code{ppois} uses \code{pgamma}.\code{qpois} uses the Cornish--Fisher Expansion to include a skewnesscorrection to a normal approximation, followed by a search.\code{rpois} usesAhrens, J. H. and Dieter, U. (1982).Computer generation of Poisson deviates from modified normal distributions.\emph{ACM Transactions on Mathematical Software}, \bold{8}, 163--179.}\seealso{\link{Distributions} for other standard distributions, including\code{\link{dbinom}} for the binomial and \code{\link{dnbinom}} forthe negative binomial distribution.\code{\link{poisson.test}}.}\examples{require(graphics)-log(dpois(0:7, lambda = 1) * gamma(1+ 0:7)) # == 1Ni <- rpois(50, lambda = 4); table(factor(Ni, 0:max(Ni)))1 - ppois(10*(15:25), lambda = 100) # becomes 0 (cancellation)ppois(10*(15:25), lambda = 100, lower.tail = FALSE) # no cancellationpar(mfrow = c(2, 1))x <- seq(-0.01, 5, 0.01)plot(x, ppois(x, 1), type = "s", ylab = "F(x)", main = "Poisson(1) CDF")plot(x, pbinom(x, 100, 0.01), type = "s", ylab = "F(x)",main = "Binomial(100, 0.01) CDF")## The (limit) case lambda = 0 :stopifnot(identical(dpois(0,0), 1),identical(ppois(0,0), 1),identical(qpois(1,0), 0))}\keyword{distribution}