The poisson probability mass function, according to https://en.wikipedia.org/wiki/Poisson_distribution#Probability_mass_function, has a lambda parameter. However, there's no reference to that in the fastmath https://generateme.github.io/fastmath/1.5/fastmath.random.html#var-distribution. > :poisson (:epsilon :max-iterations :p) Is there another way to specify lambda?
Usually epsilon is the inverse of lambda
@pavlos epsilon here is the accuracy. I have to check in the source code of Poisson in Apache Commons Math which is the source of implementation.
p
is lambda
Apache Commons Math has sometimes strange parameter names.
wait, p is supposed to be the poisson mean
is that the same as lambda?
lambda in poisson is both: mean and variance.
It's a property of this distribution.
Oh right, "expected value" is synonymous to the mean. My statistics is extremely rusty, sorry.
No problem :)
thanks a lot 🙂