a = c(1,2,3)
a
[1] 1 2 3

rev(a)
[1] 3 2 1

PS: "a" in your example is not a list; i.e class(a)


>From: "Omar Lakkis" <[EMAIL PROTECTED]>
>To: r-help@stat.math.ethz.ch
>Subject: [R] shift / rota
>Date: Thu, 9 Mar 2006 15:51:51 -0500
>
>How to do a shift/rotate os a list?
>if
>a = c(1,2,3)
>what is the best way to make a equal
>c(3,1,2)
>
>______________________________________________
>R-help@stat.math.ethz.ch mailing list
>https://stat.ethz.ch/mailman/listinfo/r-help
>PLEASE do read the posting guide! 
>http://www.R-project.org/posting-guide.html

______________________________________________
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

Reply via email to