From a Pubmed search for articles in the last 9 months.
\[ P(Outcome = x|\lambda) = \frac{\lambda^xe^{-\lambda}}{x!} \]
\[\lambda = \text{Controls the rate of events}\]
# Probability 2 events per period time with lamda = 3 dpois(2,lambda = 3) # Probability 2 or fewer events per period time with lamda = 3 ppois(2,3) # Pseudo-random draw of the number of events when lambda = 3 rpois(1,3)
## [1] 0.2240418 ## [1] 0.4231901 ## [1] 5