Beta-binomial distribution
betabinom.Rd
Density and random generation for the beta-binomial distribution.
Arguments
- x
vector of non-negative counts.
- size
vector of total counts (number of trials). Needs to be >=
x
.- shape1
positive shape parameter 1 of the Beta prior.
- shape2
positive shape parameter 2 of the Beta prior.
- log
logical; if
TRUE
, densities are returned on the log scale.- n
number of random values to return (for
rbetabinom
).
Examples
set.seed(123)
x <- rbetabinom(1, 10, 2, 5)
d <- dbetabinom(x, 10, 2, 5)