点阵Y轴,其中一个因素的关系=“自由”,而另一个因素的关系=“相同”

时间:2019-01-02 06:27:29

标签: r lattice

使用以下示例数据,我想创建一个绘图,其中在同一relation="same"变量内Y轴比例为h,而对于不同的{{1 }}变量。因此,对于每一行绘图,我将具有固定的Y轴。然后,两个顶部的图将具有Y轴(3,16),底部的两个图将具有Y轴(1、8)。我不想对这些值进行硬编码。

relation="free"

enter image description here

g

enter image description here

library(lattice)
v=c(1:3,2:4)
rbind(
  data.frame(g=1L, h=1L, i=seq_along(v), v=1*v),
  data.frame(g=2L, h=1L, i=seq_along(v), v=2*v),
  data.frame(g=1L, h=2L, i=seq_along(v), v=3*v),
  data.frame(g=2L, h=2L, i=seq_along(v), v=4*v)
) -> df
xyplot(v ~ i | g + h, df, type="l")

enter image description here

0 个答案:

没有答案