I'd like to rank some data
If I used a rank function with ties, the same ranking is assigned and a gap appears in the sequence for each duplicate ranking.
example :
Value | Ranking
1 1
1 1
1 1
1 1
1 1
2 6
EDIT : I'd like to know if it's possible have these two versions :
Value | Ranking
1 5
1 5
1 5
1 5
1 5
2 6
Value | Ranking
1 3
1 3
1 3
1 3
1 3
2 6
I replace 1 by 3 because 3 is the median value of 1-2-3-4-5 (5 ties values)