When a single criterion is well ordered, the rank function returns the obvious thing:
rank(c(2,4,1,3,5))
[1] 2 4 1 3 5
When a single criterion has ties, the rank function (by default) assigns average ranks to the ties:
rank(c(2,4,1,1,5))
[1] 3.0 4.0 1.5 1.5 5.0
The rank function doesn't let you sort on multiple criteria, so you have to use something else. One way to do it is by using match and order. For a single criterion without ties the results are the same:
rank(c(2,4,1,3,5))
[1] 2 4 1 3 5
match(1:5, order(c(2,4,1,3,5)))
[1] 2 4 1 3 5
For a single criterion with ties, however, the results differ:
rank(c(2,4,1,4,5))
[1] 2.0 3.5 1.0 3.5 5.0
match(1:5, order(c(2,4,1,4,5)))
[1] 2 3 1 4 5
The ties are broken in such a way that the tied elements have their original order preserved rather than being assigned equal ranks. This feature generalizes, obviously, when you sort on multiple criteria:
match(1:5, order(c(2,4,1,4,5),c(10,11,12,11,13)))
[1] 2 3 1 4 5
Finally, the question: Is there a simple, or built-in, way of computing rank using multiple criteria that preserves ties? I've written a function to do it, but it's ugly and seems ridiculously complicated for such a basic functionality...
2.0 3.5 1.0 3.5 5.0is the desired result. – Matthew Lundberg Dec 31 '12 at 16:46