Re: [R] boxplot: reverse y-axis order

2010-11-22 Thread S Ellison
A simple alternative is to use "at" to contrl plot locations: boxplot( ..., at=rev(1:nlevels(depthM))) which just rearranges where they are plotted. Example: set.seed(1023) x <- gl(5, 5) y<-rnorm(25) boxplot(y~x, horizontal=TRUE) boxplot(y~x, at=rev(1:nlevels(x)), , horizontal=TRUE) Steve E

Re: [R] boxplot: reverse y-axis order

2010-11-21 Thread Uwe Ligges
On 21.11.2010 20:30, emorway wrote: Hello, Searching this forum has enabled me to get pretty far in what I'm trying to do. However, there is one more manipulation I would like to make and I haven't found a solution. Using the data and code below, I generate the plot produced by the last com

[R] boxplot: reverse y-axis order

2010-11-21 Thread emorway
Hello, Searching this forum has enabled me to get pretty far in what I'm trying to do. However, there is one more manipulation I would like to make and I haven't found a solution. Using the data and code below, I generate the plot produced by the last command. If possible I would like to reve