rnbinomMV {sSeq} | R Documentation |
This function is based on the re-parameterized Negative Binomial distribution to generate random observations.
rnbinomMV(n, mu, v)
n |
The number of values that will be randomly generated. |
mu |
The expectation of the Negative Binomial distribution. |
v |
The variance of the Negative Binomial distribution. |
x <- rnbinomMV(50, 10, 15) hist(x)