我需要了解如何在index.cond
中使用lattice
。我正在调整我的图表,这个因素称为灌溉源,有6个等级,即
levels(irr_atlas2$irr_source)
# [1] "Govt. Canals" "Other Sources" "Other Wells" "Private Canals" "Tanks" "Tubewells"
现在我想改变面板的顺序,例如首先绘制与Tubewells相对应的面板,然后是其他Wells,Tanks,Govt。运河,私人运河和其他来源。如何使用index.cond
执行此操作?我尝试使用index.cond = list( c(6,3,5,1,4,2))
,但它没有给我想要的结果。
答案 0 :(得分:1)
你快到了。正如有人在评论中所建议的那样,格子从下往上订购面板。要获得您想要的内容,请使用as.table = TRUE
或反转index.cond
中的排序。
以下是一个例子:
dd <- data.frame(
x = runif(120),
ind = gl(6, 1, labels = c("Govt. Canals", "Other Sources", "Other Wells",
"Private Canals", "Tanks", "Tubewells"))
)
library(lattice)
densityplot(~ x | ind, data = dd, as.table = TRUE,
index.cond = list(c(6, 3, 5, 1, 4, 2)))