Suppose I have a vector of integers such as:
> x
[1] 1 1 1 4 4 13 13 14
I am looking for an efficient way in R to rescale the vector to integers 1 to the max of the unique number of elements. Therefore the resulting vector would be:
1 1 1 2 2 3 3 4
Seems like a simple problem but I'm having trouble finding an efficient way to do it. In practice this vector is large (around 500).