R/rowWilcoxon.R

Defines functions rowWilcoxon

Documented in rowWilcoxon

rowWilcoxon <- function(X, cl, rand=NA){
	cat("Currently under testing!","\n\n")
	if(any(!cl%in%c(0,1)))
		stop("cl must consist of zeros and ones.")
	if(all(cl==0))
		stop("None of the class labels is equal to one.")
	if(any(cl==0)){
		out<-rowRanksWilc(X,cl)
		return(rowSums(out))
	}
	if(any(X==0)){
		if(!is.na(rand))
			set.seed(rand)
		warning("There are ",sum(X==0)," observations/pairs having a value/difference of zero.",
			"\n","These values/differences are randomly set to either 1e-06 or -1e-06.",
			call.=FALSE)
		X[X==0]<-sample(c(1e-06,-1e-06),sum(X==0),replace=TRUE)
	}
	out <- rowRanksWilc(abs(X), cl)
	rowSums(out*(X>0))
}

Try the siggenes package in your browser

Any scripts or data that you put into this service are public.

siggenes documentation built on Nov. 8, 2020, 6:26 p.m.