Nothing
betaparametw <-
function(xn,a,b){
n=length(xn)
w<-rep(0,n)
W<-rep(0,n)
for(i in seq(n)){
w[i]<-(a+b)*xn[i]/(a+b+xn[i])
}
for(i in seq(n)){
if(!is.na(sum(w))){
W[i]<-w[i]/sum(w)
}
}
return(W)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.