Nothing
rowRanksWilc <- function(X, cl){
if(length(cl)!=ncol(X))
stop("The length of cl must be equal to the number of columns of X.")
ids <- which(cl == 1)
Xr <- matrix(0, nrow(X), length(ids))
for(i in 1:length(ids))
Xr[, i] <- rowSums(X <= X[, ids[i]])
Xr
}
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.