Nothing
RangeRank2 <-
function (z,N){
# order row, set max and min, set bins range as (max-min)/N, put value k/N in bin k, reorder row as initial
row <-dim(z)[1];
col<-dim(z)[2];
for(i in 1:row) {
r <- z[i,];
w<-r[order(r)];
maxx<-max(w);
minn<-min(w);
bin<-(maxx-minn)/N;
k<-1;
j<-1;
for(k in 1:N){
while(w[j] <= (minn+k*bin) && j <= col){
w[j] <-k/N;
j<-j+1;
}
}
r[order(r)]<-w;
z[i,]<-r;
}
return(z)
}
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.