Re: [R] stripchart and ordering of plot

2009-05-22 Thread Andrew Yee
; To: r-h...@stat.math.ethz.ch > > Subject: [R] stripchart and ordering of plot > > > > Take for example the following stripchart that's created: > > > > b <- 1:5 > > a <- 11:15 > > e <- 21:25 > > f <- -11:-15 > > > > foo &

[R] stripchart and ordering of plot

2009-05-22 Thread Andrew Yee
Take for example the following stripchart that's created: b <- 1:5 a <- 11:15 e <- 21:25 f <- -11:-15 foo <- rbind(b,a,e,f) stripchart(foo ~ rownames(foo)) In this case, I would like the bottom part of the plot to be the f vector, followed by the e vector, etc. However, R reorders the matrix a