Skip to content
Prev 171996 / 398503 Next

levelplot help needed

To reorder the y-labels, simply reorder the factor levels:

df <- data.frame(x_label = factor(x_label),
                 y_label = factor(y_label, rev(y_label)),
                 values = as.vector(my.data))

Not sure about putting the strips at the bottom. A quick scan of
?xyplot and ?strip.default suggests that this is not possible, but I'm
sure Deepayan will correct me if I'm wrong (he often does).

--sundar
On Fri, Feb 27, 2009 at 5:51 AM, Antje <niederlein-rstat at yahoo.de> wrote: