rbern {causact} | R Documentation |
The Bernoulli Distribution
Description
Density, distribution function, quantile function and random generation for the benoulli distribution with parameter prob
.
Usage
rbern(n, prob)
Arguments
n |
number of observations. If |
prob |
probability of success of each trial |
Value
A vector of 0's and 1's representing failure and success.
Examples
#Return a random result of a Bernoulli trial given `prob`.
rbern(n =1, prob = 0.5)
[Package causact version 0.5.5 Index]