R/rgbinom.R

Defines functions rgbinom

Documented in rgbinom

rgbinom <-
function(N,size,prob){
z<-runif(N,0,1)
x<-qgbinom(z,size,prob)
return(x)
}

Try the GenBinomApps package in your browser

Any scripts or data that you put into this service are public.

GenBinomApps documentation built on May 29, 2024, 9:35 a.m.