| poisson_dist | R Documentation |
Creates an S3 object representing a Poisson distribution with rate
parameter \lambda. The PMF is
P(X = k) = \lambda^k e^{-\lambda} / k! for k = 0, 1, 2, \ldots.
poisson_dist(lambda)
lambda |
Rate parameter (mean), must be a positive scalar. |
A poisson_dist object with classes
c("poisson_dist", "univariate_dist", "discrete_dist", "dist").
x <- poisson_dist(lambda = 5)
mean(x)
vcov(x)
format(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.