The Poisson Distribution is a discrete probability distribution often used in statistical modeling. It is expressed as:
\[ p(x) = \frac{e^{-\lambda}\lambda^x}{x!} \]
where \(\lambda\) is the rate of occurrence.
# Defining the name of the distribution distribution_name <- "Poisson Distribution" distribution_name
## [1] "Poisson Distribution"