fn interp_rbinom(
args: &[RValue],
named: &[(String, RValue)],
context: &BuiltinContext<'_>,
) -> Result<RValue, RError>Expand description
Random binomial deviates.
Generates n random values from a binomial distribution.
@param n number of observations @param size number of trials (default 1) @param prob probability of success on each trial (default 0.5) @return integer vector of length n