Nothing
alpha.fun<-function(r,k,q)
{
c<-qchisq(q,k)
sig<-pchisq(c,k+2)+(c/k)*(1-q)
c<-sqrt(c)
eta<-NULL
eta[r<=c]<-(r[r^2<=c^2])^2/(k*sig)
eta[r>c]<-c^2/( (k+2)*sig )
eta <- mean(eta)
alpha<-NULL
alpha[r<=c]<-(r[r<=c])^2/(eta*sig)
alpha[r>c]<-c^2/(eta*sig)
alpha
}
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.