This question relates to: r - reorder second vector according to first. The solution there does not solve the problem when vectors don't start from 1 and have class double
.
Given the following two vectors:
a <- c(5.1, 7.2, 4.3, 8.4)
b <- c(4.3, 7.2, 8.4, 5.1)
a third vector c
needs be created that would give the order in which vector b
needs be reordered for it to be in the same order as a
. In this case:
c <- c(4, 2, 1, 3)
such that:
> b[c] == a
[1] TRUE TRUE TRUE TRUE