Lattice 中 facet_wrap 的等价物是什么
What is the equivalent of facet_wrap in Lattice
假设我们有这样的数据:
dta <- data.frame(
group = rep(letters[1:8], each=1000),
x = runif(8000), y=runif(8000)
)
我想为每个组制作一个包含 y ~ x 的格子图。但是,第一行是 a-d 组,第二行是 e-h 组。即,我想做相当于
qplot(x=x, y=y, data=dta) + facet_wrap(~ group, nrow=2)
但在莱迪思。做这个的最好方式是什么?
library(lattice)
xyplot(y ~ x | group, dta, layout=c(4,2), as.table = TRUE)
正如@BenBarnes 所建议的,as.table = TRUE
保持构面的顺序。
假设我们有这样的数据:
dta <- data.frame(
group = rep(letters[1:8], each=1000),
x = runif(8000), y=runif(8000)
)
我想为每个组制作一个包含 y ~ x 的格子图。但是,第一行是 a-d 组,第二行是 e-h 组。即,我想做相当于
qplot(x=x, y=y, data=dta) + facet_wrap(~ group, nrow=2)
但在莱迪思。做这个的最好方式是什么?
library(lattice)
xyplot(y ~ x | group, dta, layout=c(4,2), as.table = TRUE)
正如@BenBarnes 所建议的,as.table = TRUE
保持构面的顺序。