I have a vector of integers, for example, v <- c(1,5,1,2,2,4,7,5,7)
. If I sort(unique(v))
, the values 3 and 6 would be missing in the sequence. How can I transform v
into a vector where sort(unique(v))
is an actual sequence of integers? This is, transforming v
into c(1,4,1,2,2,3,5,3,5)
(in general, of course).
Asked
Active
Viewed 53 times
1

Trilobite
- 37
- 4