如何在格子中使用index.cond?

时间:2015-07-27 06:16:31

标签: r lattice

我需要了解如何在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)),但它没有给我想要的结果。

1 个答案:

答案 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)))

Imgur