Description Usage Arguments Details Value See Also Examples
Calculates the rank of the elements for each row (column) of a matrix-like object.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | rowRanks(x, rows = NULL, cols = NULL, ties.method = c("max", "average"), ...)
## S4 method for signature 'matrix_OR_array_OR_table_OR_numeric'
rowRanks(x, rows = NULL,
cols = NULL, ties.method = c("max", "average", "first", "last", "random",
"max", "min", "dense"), dim. = dim(x), ...)
## S4 method for signature 'ANY'
rowRanks(x, rows = NULL, cols = NULL, ties.method = c("max", "average"), ...)
colRanks(x, rows = NULL, cols = NULL, ties.method = c("max", "average"), ...)
## S4 method for signature 'matrix_OR_array_OR_table_OR_numeric'
colRanks(x, rows = NULL,
cols = NULL, ties.method = c("max", "average", "first", "last", "random",
"max", "min", "dense"), dim. = dim(x), preserveShape = FALSE, ...)
## S4 method for signature 'ANY'
colRanks(x, rows = NULL, cols = NULL, ties.method = c("max", "average"), ...)
|
x |
An NxK matrix-like object. |
rows, cols |
A |
ties.method |
A character string specifying how ties are treated. Note that the default specifies fewer options than the original matrixStats package. |
... |
Additional arguments passed to specific methods. |
dim. |
An |
preserveShape |
If |
The S4 methods for x
of type matrix
,
array
, or numeric
call
matrixStats::rowRanks
/ matrixStats::colRanks
.
The matrixStats::rowRanks()
function can handle a lot of different
values for the ties.method
argument. Users of the generic function
should however only rely on max
and average
because the other ones
are not guaranteed to be implemented:
max
for values with identical values the maximum rank is returned
average
for values with identical values the average of the
ranks they cover is returned. Note, that in this case the return
value is of type numeric
.
a matrix of type integer
is returned unless
ties.method = "average"
. Ithas dimensions' NxJ
(KxJ
)
matrix
, where N (K) is the number of rows (columns) of the
input x.
matrixStats::rowRanks()
and
matrixStats::colRanks()
which are used
when the input is a matrix
or numeric
vector.
base::rank
1 2 3 4 5 6 7 8 9 10 |
Loading required package: matrixStats
Attaching package: ‘MatrixGenerics’
The following objects are masked from ‘package:matrixStats’:
colAlls, colAnyNAs, colAnys, colAvgsPerRowSet, colCollapse,
colCounts, colCummaxs, colCummins, colCumprods, colCumsums,
colDiffs, colIQRDiffs, colIQRs, colLogSumExps, colMadDiffs,
colMads, colMaxs, colMeans2, colMedians, colMins, colOrderStats,
colProds, colQuantiles, colRanges, colRanks, colSdDiffs, colSds,
colSums2, colTabulates, colVarDiffs, colVars, colWeightedMads,
colWeightedMeans, colWeightedMedians, colWeightedSds,
colWeightedVars, rowAlls, rowAnyNAs, rowAnys, rowAvgsPerColSet,
rowCollapse, rowCounts, rowCummaxs, rowCummins, rowCumprods,
rowCumsums, rowDiffs, rowIQRDiffs, rowIQRs, rowLogSumExps,
rowMadDiffs, rowMads, rowMaxs, rowMeans2, rowMedians, rowMins,
rowOrderStats, rowProds, rowQuantiles, rowRanges, rowRanks,
rowSdDiffs, rowSds, rowSums2, rowTabulates, rowVarDiffs, rowVars,
rowWeightedMads, rowWeightedMeans, rowWeightedMedians,
rowWeightedSds, rowWeightedVars
[,1] [,2] [,3]
[1,] -1.0652962 -0.4208877 1.11048067
[2,] NA 1.2359814 -0.05959464
[3,] 0.3360884 1.1579619 Inf
[4,] 0.0000000 0.6629415 -0.70493784
[5,] 0.7666901 -1.6795836 0.81742136
[,1] [,2] [,3]
[1,] 1 2 3
[2,] NA 2 1
[3,] 1 2 3
[4,] 2 3 1
[5,] 2 1 3
[,1] [,2] [,3] [,4] [,5]
[1,] 1 NA 3 2 4
[2,] 2 5 4 3 1
[3,] 4 2 5 1 3
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.