Evaluate the probability mass function of a Poisson distribution
Arguments
- d
A
Poisson
object created by a call toPoisson()
.- x
A vector of elements whose probabilities you would like to determine given the distribution
d
.- drop
logical. Should the result be simplified to a vector if possible?
- elementwise
logical. Should each distribution in
d
be evaluated at all elements ofx
(elementwise = FALSE
, yielding a matrix)? Or, ifd
andx
have the same length, should the evaluation be done element by element (elementwise = TRUE
, yielding a vector)? The default ofNULL
means thatelementwise = TRUE
is used if the lengths match and otherwiseelementwise = FALSE
is used.- ...
Arguments to be passed to
dpois
. Unevaluated arguments will generate a warning to catch mispellings or other possible errors.