
Last chance! 50% off unlimited learning
Sale ends in
Transform the three parameters of the hypergeometric distribution function to the probability parameter of the “corresponding” binomial distribution.
hyper2binomP(x, m, n, k)
a number, the binomial probability.
see dhyper
.
See those in phyperBinMolenaar
.
hyper2binomP(3,4,5,6) # 0.38856
## The function is simply defined as
function (x, m, n, k) {
N <- m + n
p <- m/N
N.n <- N - (k - 1)/2
(m - x/2)/N.n - k * (x - k * p - 1/2)/(6 * N.n^2)
}
Run the code above in your browser using DataLab