Hi, I want to reorder the colors given by rainbow(7) so that the last half move to the first 4.
For example: > ci=rainbow(7) > ci [1] "#FF0000FF" "#FFDB00FF" "#49FF00FF" "#00FF92FF" "#0092FFFF" "#4900FFFF" [7] "#FF00DBFF" I would like "#FF0000FF" "#FFDB00FF" "#49FF00FF" to be at the end of ci, and the rest to be at the beginning. How can I do that? ______________________________________________ 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.