A function to compute empirical row quantiles.
This function computes the requested quantile for each row of a matrix,
or of an ExpressionSet
.
rowQ(imat, which) rowMax(imat) rowMin(imat)
imat |
Either a matrix or an |
which |
An integer indicating which order statistic should be returned. |
rowMax
and rowMin
simply call rowQ
with the appropriate argument set.
The argument which
takes values between 1, for the minimum per row,
and ncol(imat)
, for the maximum per row.
A vector of length equal to the number of rows of the input matrix containing the requested quantiles.
R. Gentleman
rowMedians
.
rowMeans()
in colSums
().
data(sample.ExpressionSet) rowMin(sample.ExpressionSet) rowQ(sample.ExpressionSet, 4)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.