powered by
Bernoulli Distribution
dbern(x, prob, log = FALSE)pbern(q, prob, lower.tail = TRUE, log = FALSE)qbern(p, prob, lower.tail = TRUE, log = FALSE)rbern(n, prob)
pbern(q, prob, lower.tail = TRUE, log = FALSE)
qbern(p, prob, lower.tail = TRUE, log = FALSE)
rbern(n, prob)
An numeric vector of the random samples.
A vector of 0s and 1s.
A numeric vector of values between 0 and 1 of the probability of success.
A flag specifying whether to return the log-transformed value.
A vector of quantiles.
A flag specifying whether to return the lower or upper tail of the distribution.
A vector of probabilities.
A non-negative whole number of the number of random samples to generate.
dbern(1, 0.5) pbern(0.75, 0.5) qbern(0.1, 0.5) rbern(1, 0.5)
Run the code above in your browser using DataLab