Last active
October 2, 2025 06:27
-
-
Save abikoushi/3252bd702e9ff56c4b800057ec8cd0af to your computer and use it in GitHub Desktop.
Multivariate Wallenius’ Non-Central Hypergeometric distribution in R
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # https://en.wikipedia.org/wiki/Wallenius%27_noncentral_hypergeometric_distribution#Multivariate_distribution | |
| # https://markheckmann.github.io/notes/wallenius-distribution.html | |
| library(dplyr) | |
| library(tibble) | |
| library(BiasedUrn) | |
| set.seed(1234); R = rexp(10) | |
| ressim = t(replicate(1e5L,sort(sample.int(10, size = 3, prob = R)))) | |
| pmf = data.frame(ressim) %>% | |
| group_by_all() %>% | |
| tally() %>% | |
| ungroup() %>% | |
| mutate(p = n/sum(n)) | |
| Xs = integer(length(R)) | |
| Xs[unlist(pmf[2,1:3])] = 1L | |
| p = dMWNCHypergeo(x = Xs, m = rep(1, length(R)), n=3, odds=R) | |
| print(p) | |
| #[1] 0.03290516 | |
| print(pmf[2,]$p) | |
| #[1] 0.03297 | |
| Xs = integer(length(R)) | |
| Xs[unlist(pmf[5,1:3])] = 1L | |
| p = dMWNCHypergeo(x = Xs, m = rep(1, length(R)), n=3, odds=R) | |
| print(p) | |
| #[1] 0.0128722 | |
| pmf[5,]$p | |
| #[1] 0.01293 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment