Nothing
cutoffs = function(y){
p<-ncol(y)
n<-nrow(y)
k<-unique(sort(unlist(y)))
n.levels<-length(k)
q<-matrix(nrow=p,ncol=n.levels)
for(i in 1:p){
X=factor(y[,i],levels=k)
No<-tabulate(X, nbins=n.levels)
q[i,]<-qnorm(cumsum(No)/n)
}
q[ ,n.levels] <- Inf
q<-cbind(-Inf,q)
return(q)
}
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.