Multinom {stats} | R Documentation |
The Multinomial Distribution
Description
Generate multinomially distributed random number vectors and compute multinomial probabilities.
Usage
rmultinom(n, size, prob)
dmultinom(x, size = NULL, prob, log = FALSE)
Arguments
x |
vector of length |
n |
number of random vectors to draw. |
size |
integer, say |
prob |
numeric non-negative vector of length |
log |
logical; if TRUE, log probabilities are computed. |
Details
If x
is a -component vector,
dmultinom(x, prob)
is the probability
where is the ‘multinomial coefficient’
and
.
By definition, each component is binomially distributed as
Bin(size, prob[j])
for .
The rmultinom()
algorithm draws binomials from
sequentially, where
(N :=
size
),
(
is
prob
scaled to sum 1),
and for , recursively,
and
.
Value
For rmultinom()
,
an integer matrix where each column is a
random vector generated according to the desired multinomial law, and
hence summing to
size
. Whereas the transposed result
would seem more natural at first, the returned matrix is more
efficient because of columnwise storage.
Note
dmultinom
is currently not vectorized at all and has
no C interface (API); this may be amended in the future.
See Also
Distributions for standard distributions, including
dbinom
which is a special case conceptually.
Examples
rmultinom(10, size = 12, prob = c(0.1,0.2,0.8))
pr <- c(1,3,6,10) # normalization not necessary for generation
rmultinom(10, 20, prob = pr)
## all possible outcomes of Multinom(N = 3, K = 3)
X <- t(as.matrix(expand.grid(0:3, 0:3))); X <- X[, colSums(X) <= 3]
X <- rbind(X, 3:3 - colSums(X)); dimnames(X) <- list(letters[1:3], NULL)
X
round(apply(X, 2, function(x) dmultinom(x, prob = c(1,2,5))), 3)