You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Creates a stream of random numbers that fit a poisson distribution. Takes 2 arguments, the first is the count of numbers to create and the second is the mean you would like to come close to.
rpois(count, mean)
rpois(10,3)
[1] 5 4 4 2 0 3 6 2 3 3
The text was updated successfully, but these errors were encountered:
Creates a stream of random numbers that fit a poisson distribution. Takes 2 arguments, the first is the count of numbers to create and the second is the mean you would like to come close to.
rpois(count, mean)
The text was updated successfully, but these errors were encountered: