Poisson                 package:base                 R Documentation

_T_h_e _P_o_i_s_s_o_n _D_i_s_t_r_i_b_u_t_i_o_n

_D_e_s_c_r_i_p_t_i_o_n:

     Density, distribution function, quantile function and random
     generation for the Poisson distribution with parameter `lambda'.

_U_s_a_g_e:

     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)

_A_r_g_u_m_e_n_t_s:

       x: vector of (non-negative integer) quantiles.

       q: vector of quantiles.

       p: vector of probabilities.

       n: number of random values to return.

  lambda: vector of positive means.

log, log.p: logical; if TRUE, probabilities p are given as log(p).

lower.tail: logical; if TRUE (default), probabilities are P[X <= x],
          otherwise, P[X > x].

_D_e_t_a_i_l_s:

     The Poisson distribution has density

                   p(x) = lambda^x exp(-lambda)/x!

     for x = 0, 1, 2, ....

     If an element of `x' is not integer, the result of `dpois' is
     zero, with a warning.

     The quantile is left continuous: `qgeom(q, prob)' is the largest
     integer x such that P(X <= x) < q.

     Setting `lower.tail = FALSE' allows to get much more precise
     results when the default, `lower.tail = TRUE' would return 1, see
     the example below.

_V_a_l_u_e:

     `dpois' gives the (log) density, `ppois' gives the (log)
     distribution function, `qpois' gives the quantile function, and
     `rpois' generates random deviates.

_S_e_e _A_l_s_o:

     `dbinom' for the binomial and `dnbinom' for the negative binomial
     distribution.

_E_x_a_m_p_l_e_s:

     -log(dpois(0:7, lambda=1) * gamma(1+ 0:7)) # == 1
     Ni <- rpois(50, lam= 4); table(factor(Ni, 0:max(Ni)))

     1 - ppois(10*(15:25), lambda=100)               # becomes 0 (cancellation)
         ppois(10*(15:25), lambda=100, lower=FALSE)  # no cancellation

     par(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")

