Suppose I have a data frame that I have ordered according to the Value column and now looks something like this:
Name Value
A 2
B 2
C 5
D 5
E 10
F 12
I am writing a function where one argument is a rank (e.g. rank=2) and I want the output to be the corresponding name (e.g. C & D). Any ties should be ranked equally.
I would really appreciate any guidance as I've tried multiple ways of accomplishing this and keep getting errors of some sort.
We can convert the
Value
asfactor
and then convert it intonumeric
to get equal ranks for same numbersIf we need the output as
character
we can wrap it inas.character