arank {mimager} | R Documentation |
Determines the rank of values within each matrix of a three-dimensional array.
arank(x, na.last = TRUE, ties.method = "first")
x |
a three-dimensional |
na.last |
for controlling the treatment of |
ties.method |
a character string specifying how ties are treated, see ‘Details’; can be abbreviated. |
an array
with the same dimensions as x
Other array.transformations: arle
# microarray visualization if (require(affydata, quietly = TRUE)) { data("Dilution", package = "affydata") x <- arank(marray(Dilution, transpose = TRUE)) }