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 <- rev(vect1)) cu Philipp -- Dr. Philipp Pagel Lehrstuhl für Genomorientierte Bioinformatik Technische Universität München Wissenschaftszentrum Weihenstephan Maximus-von-Imhof-Forum 3 85354 Freising, Germany http://webclu.bio.wzw.tum.de/~pagel/ ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.