[R] Reverse order of x-axis

Rui Barradas ruipbarradas at sapo.pt
Sun Jul 29 22:39:31 CEST 2012


Hello,

Just reverse the xlim values, it defaults to c(min, max), use c(max, min).

x <- 1:10
plot(x)
plot(x, xlim=c(10, 1))

Hope this helps,

Rui Barradas

Em 29-07-2012 18:23, sappy escreveu:
> Hello,
>
> does anybody know, how to reverse the elements of the x-axis. At now my
> x-axis for example goes from 0, 0.5, 1, 1.5, ... to 99.5, 100.0
> Is there a way to change the x-axis, like this: 100.0, 99.5, 99.0, ..., 0.5,
> 0. The 100.0 should start at left x-axis and the 0 shold be on the right.
>
> Greeting
>
>
>
>
> --
> View this message in context: http://r.789695.n4.nabble.com/Reverse-order-of-x-axis-tp4638275.html
> Sent from the R help mailing list archive at Nabble.com.
>
> ______________________________________________
> R-help at 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.



More information about the R-help mailing list