I am trying to understand what rbinom function does.

Here is some sample code. Are both the invocations of bfunc effectively
doing the same or I am missing the point?

Thanks,
Pieter

bfunc <- function(n1,p1,sims) {
c<-rbinom(sims,n1,p1)
c
}

a=c()
b=c()
p1=.5
for (i in 1:10000){
a[i]=bfunc(30,p1,1)
}
b=bfunc(30,p1,10000)

______________________________________________
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to