Probability function, distribution function, quantile function and random generation for the Bell distribution with parameter theta.
Source:R/belldist.R
Belldist.Rd
Probability function, distribution function, quantile function and random generation for the Bell distribution with parameter theta.
Usage
dbell(x, theta, log = FALSE)
pbell(q, theta, lower.tail = TRUE, log.p = FALSE)
qbell(p, theta, log.p = FALSE)
rbell(n, theta)
Arguments
- x
vector of (non-negative integer) quantiles.
- theta
parameter of the Bell distribution (theta > 0).
- log, log.p
logical; if TRUE, probabilities p are given as log(p).
- q
vector of quantiles.
- lower.tail
logical; if TRUE (default), probabilities are \(P[X \le x]\); otherwise, \(P[X > x]\).
- p
vector of probabilities.
- n
number of random values to return.