Binomial Random Samples

ran_binom(n = 1, size = 1, prob = 0.5)

Arguments

n

A non-negative whole number of the number of random samples to generate.

size

A non-negative whole numeric vector of the number of trials.

prob

A numeric vector of values between 0 and 1 of the probability of success.

Value

A numeric vector of the random samples.

Examples

ran_binom(10)
#>  [1] 1 1 1 0 1 0 0 1 0 0