Displaying 1 result from an estimated 1 matches for "csort".
Did you mean:
sort
2011 Aug 23
1
Help: Sort components of a vector with indices tracked in R
Dear All,
I would like to know how to sort a vector of numeric values such that we know the original index of each ordered component. Say, we have
c <- c(1,4,3,2)
csort <- sort(c,descreasing=FALSE)
With a few components of c, we can manually find out:
csort[1] = 1 = c[1], ie, the original index of csort[1] is 1,
csort[2] =2 =c[4], ie, the original index of csort[2] is 4.
When length(c) is very large, manual checking is infeasible.
We can set up a for loop t...