dbern | R Documentation |
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)
x |
A vector of 0s and 1s. |
prob |
A numeric vector of values between 0 and 1 of the probability of success. |
log |
A flag specifying whether to return the log-transformed value. |
q |
A vector of quantiles. |
lower.tail |
A flag specifying whether to return the lower or upper tail of the distribution. |
p |
A vector of probabilities. |
n |
A non-negative whole number of the number of random samples to generate. |
An numeric vector of the random samples.
dbern(1, 0.5)
pbern(0.75, 0.5)
qbern(0.1, 0.5)
rbern(1, 0.5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.