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 and plots according to the alphabetical order
of the rownames of foo.  Is there a way to plot the matrix in the current
order of the rownames?

Thanks,
Andrew

        [[alternative HTML version deleted]]

______________________________________________
R-help@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.

Reply via email to