rankTrans {scDblFinder} | R Documentation |
A dense rank transformation that preserves 0 and rank step size in the presence of many ties.
rankTrans(x)
x |
A matrix, with samples/cells as columns and genes/features as rows. |
rank-transformed x.
m <- t(sapply( seq(from=0, to=5, length.out=30), FUN=function(x) rpois(30,x) ) ) m2 <- rankTrans(m)