poison distribution

how i can use poison distribution i see no package for that anyone can guide?

Hi there! You can get access to it via the stats package. See an example below:

library(stats)

range <- 0:20

#create plot
plot(range, dpois(range, lambda=5), type='h')

Created on 2021-08-01 by the reprex package (v2.0.0)

Have a look at dpois for more details.

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.