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
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
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
3 matches
Mail list logo