R xyplot 使用 cut 设置构面,如何控制顺序?

R xyplot set facets using cut, how to control order?

当小平面基于切割时,如何控制 R 晶格 xyplot 的顺序?我希望它们按顺序排列,从高到低,但我不直接进入关卡,因为剪辑中断可能会改变。

df=get(data(iris))
xyplot(Sepal.Length ~ Petal.Length | cut(Sepal.Width, breaks=4), data=df)

真正的答案是“不要使用格子”...同时:

xyplot(Sepal.Length ~ Petal.Length | cut(Sepal.Width, breaks=4), 
        data=iris, as.table = TRUE)