Re: [R] Reversing order of vector

2011-03-29 Thread Philipp Pagel
On Tue, Mar 29, 2011 at 12:20:50AM -0700, Vincy Pyne wrote: > > vect1 = as.character(c("ABC", "XYZ", "LMN", "DEF")) as.character is unnecessary, here. > > vect1 > [1] "ABC" "XYZ" "LMN" "DEF" > > I want to reverse the order of this vector as > > vect2 = c("DEF", "LMN", "XYZ", "ABC") vect2 <- r

Re: [R] Reversing order of vector

2011-03-29 Thread Joshua Wiley
Hi Vincy, You can use the function rev(). > rev(vect1) [1] "DEF" "LMN" "XYZ" "ABC" Also note that a simple google search for R and reverse would have lead you to this function. HTH, Josh On Tue, Mar 29, 2011 at 12:20 AM, Vincy Pyne wrote: > Dear R helpers > > Suppose I have a vector as > > v

Re: [R] Reversing order of vector

2011-03-29 Thread Kenn Konstabel
On Tue, Mar 29, 2011 at 10:20 AM, Vincy Pyne wrote: > Dear R helpers > > Suppose I have a vector as > > vect1 = as.character(c("ABC", "XYZ", "LMN", "DEF")) > >> vect1 > [1] "ABC" "XYZ" "LMN" "DEF" > > I want to reverse the order of this vector as > > vect2 = c("DEF", "LMN", "XYZ", "ABC") rev(vect

[R] Reversing order of vector

2011-03-29 Thread Vincy Pyne
Dear R helpers Suppose I have a vector as vect1 = as.character(c("ABC", "XYZ", "LMN", "DEF")) > vect1 [1] "ABC" "XYZ" "LMN" "DEF" I want to reverse the order of this vector as vect2 = c("DEF", "LMN", "XYZ", "ABC") Kindly guide Regards Vincy [[alternative HTML version deleted]]