search for: lengthdf

Displaying 1 result from an estimated 1 matches for "lengthdf".

Did you mean: lengthd
2008 Jul 01
2
Graph Order in xyplot
...raphs continue sequentially left to right to the top of the page. I would like to have the 2 at the top and have the graphs shown in descending order (i.e. have the entire graph read like a book) I tried the following but it didn't seem to work. lengthd <-sort(SLI$length, decreasing =TRUE) lengthdf <- factor(SLI$lengthd) Then I plotted the graph again: xyplot(SLI$velocity ~ SLI$width | SLI$lengthdf, layout = c(2,7), xlab = "Width (cm)", ylab = "Velocity (m/s^2)", col = "black") This simply gave me the same graph and now I am a little lost. Is there an easier...