Re: [R] variable ordering

2012-02-16 Thread arunkumar1111
Thanks it worked - Thanks in Advance Arun -- View this message in context: http://r.789695.n4.nabble.com/variable-ordering-tp4393109p4393197.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org mailing list

[R] variable ordering

2012-02-15 Thread arunkumar1111
Hi, My input is x=c(D,A,B) Y=c(A,B,C,D) varorder=which(Y %in% X) I'm getting result as 1 2 4 But i need the result to be 4 1 2 can any one help - Thanks in Advance Arun -- View this message in context: http://r.789695.n4.nabble.com/variable-ordering-tp4393109p4393109.html Sent

Re: [R] variable ordering

2012-02-15 Thread Peter Langfelder
On Wed, Feb 15, 2012 at 10:22 PM, arunkumar akpbond...@gmail.com wrote: Hi, My input is x=c(D,A,B) Y=c(A,B,C,D) varorder=which(Y %in% X) I'm getting result as  1 2 4 But i need the result to be 4 1 2 Here's a hint: lookup the function match. Peter