답변:
여기 하나의 라이너가 있습니다 ...
y[sort(order(y)[x])]
이것은 다음과 같이 분류됩니다.
order(y) #We want to sort by y, so order() gives us the sorting order
order(y)[x] #looks up the sorting order for each x
sort(order(y)[x]) #sorts by that order
y[sort(order(y)[x])] #converts orders back to numbers from orders
x
및 에 대한 많은 간단한 변형에 대해 실패합니다 y
. x <- c(1,4,2); y <- c(1,2,4)
예를 들어.
x
정렬 된 요소 로 변환 할 수 있습니다 .
x.factor <- factor(x, levels = y, ordered=TRUE)
sort(x)
sort(x.factor)
분명히 숫자를 요인으로 변경하면 코드 다운 스트림이 x
. 그러나 다음에 무슨 일이 일어날 지에 대한 맥락을 알려주지 않았기 때문에 나는 이것을 옵션으로 제안 할 것이라고 생각했습니다.
x
정렬 벡터 에 없는 값이있을 때도 작동합니다 y
.x <- c(2, 2, 3, 4, 1, 4, 4, 3, 3, 6); y <- c(4, 2, 1, 3); as.numeric(as.character(sort(factor(x, unique(c(y, x))))))
숫자 나 문자에 관계없이 "y"로 주문해야하는 경우 :
x[order(ordered(x, levels = y))]
4 4 4 2 2 1 3 3 3
단계별 :
a <- ordered(x, levels = y) # Create ordered factor from "x" upon order in "y".
[1] 2 2 3 4 1 4 4 3 3
Levels: 4 < 2 < 1 < 3
b <- order(a) # Define "x" order that match to order in "y".
[1] 4 6 7 1 2 5 3 8 9
x[b] # Reorder "x" according to order in "y".
[1] 4 4 4 2 2 1 3 3 3