Nothing
alpha=function(X){
# Cronbach's alpha
J=ncol(X);
varX=var(X)
if(sum(varX) > 0 & length(varX) > 1) J/(J-1)* sum(varX - diag(diag(varX)))/sum(varX) else NA
}
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.