R/suma2Venn.R

"suma2Venn" <- function (x, size = 30, cexil = 0.9, cexsn = 1, zcolor = heat.colors(ncol(x)),...) 
{
 G <- ncol(x)
 L <- vector("list", G )
 names(L) <- colnames(x)
 for (i in 1:G)
	{
	y <- as.character(x[,i])
	y <- y[y!=" "]
	L[[i]]<-y
	}

     venn(L, size = size, cexil = cexil, cexsn = cexsn, zcolor = zcolor, ...)

}

Try the maSigPro package in your browser

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

maSigPro documentation built on Nov. 8, 2020, 6:51 p.m.