The density function dbern()
, distribution function pbern()
, and quantile
function qbern()
for a Bernoulli distribution, with success probability
prob
. These are equivalent to dbinom(p, 1, prob)
, pbinom(p, 1, prob)
and qbinom(p, 1, prob)
.
Usage
qbern(p, prob, lower.tail = TRUE, log.p = FALSE)
pbern(q, prob, lower.tail = TRUE, log.p = FALSE)
dbern(x, prob, log = FALSE)
Arguments
- p
vector of probabilities
- prob
probability of success
- lower.tail, log.p, log
see stats::Binomial
- x, q
vector of quantiles