找到 R 中泊松分布的概率

Find a probability of Poisson distribution in R

有人可以帮助我如何从泊松方程(在 R 中编程)计算概率 p?我知道有 ppois 功能,但我不确定我是否能够以某种方式在这里使用它...... 等式:

也许你可以试试下面的uniroot + ppois来解决p

> (p <- uniroot(function(p) ppois(5, 650 * p) - 0.5, c(0, 1), tol = 1e-10)$root)
[1] 0.008723325

你可以验证

> ppois(5, 650 * p)
[1] 0.5

> sum(dpois(0:5, 650*p))
[1] 0.5